/*********** CSS RESET **********/


* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  margin: 0;
  -webkit-text-size-adjust: none;
}

ol, ul {
  list-style: none;
}

a img {
  border: none;
}

button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="file"] > button::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  margin: 0;
  border: 0;
  padding: 0;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  border-radius: 0;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}


script {
  display: none !important;
}



/*** Custom Checkbox ***/

.custom-checkbox [type="checkbox"]:not(:checked),
.custom-checkbox [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}

  .custom-checkbox [type="checkbox"]:not(:checked) ~ label,
  .custom-checkbox [type="checkbox"]:checked ~ label {
    position: relative;
    padding-left: 1.95em;
    cursor: pointer;
    white-space: pre-line;
  }

    .custom-checkbox [type="checkbox"]:not(:checked) ~ label:before,
    .custom-checkbox [type="checkbox"]:checked ~ label:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 20px;
      height: 20px;
      border: 1px solid #B0B9C7;
      background: #fff;
      border-radius: 2px;
      box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
    }

    .custom-checkbox [type="checkbox"]:checked ~ label:before {
      border-color: #B0B9C7;
    }

    .custom-checkbox [type="checkbox"]:not(:checked) ~ label:after,
    .custom-checkbox [type="checkbox"]:checked ~ label:after {
      content: '\e916';
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: bold;
      font-variant: normal;
      -webkit-font-smoothing: antialiased;
      position: absolute;
      left: .30em;
      font-size: 13px;
      line-height: 22px;
      color: var(--theme-color);
      transition: all .2s;
    }

    .custom-checkbox [type="checkbox"]:not(:checked) ~ label:after {
      opacity: 0;
      transform: scale(0);
    }

    .custom-checkbox [type="checkbox"]:checked ~ label:after {
      opacity: 1;
      transform: scale(1);
    }

.custom-checkbox [type="checkbox"]:disabled:not(:checked) ~ label:before,
.custom-checkbox [type="checkbox"]:disabled:checked ~ label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #d9d9d9;
}

.custom-checkbox [type="checkbox"]:disabled:checked ~ label:after {
  color: #999;
}

.custom-checkbox [type="checkbox"]:disabled ~ label {
  color: #aaa;
}

.custom-checkbox [type="checkbox"]:checked:focus ~ label:before,
.custom-checkbox [type="checkbox"]:not(:checked):focus ~ label:before {
  border: 1px solid #3E72F9;
}

.custom-checkbox label:hover {
  color: var(--theme-color);
}

  .custom-checkbox label:hover:before {
    border: 1px solid #3E72F9 !important;
  }

.custom-checkbox.hide-label [type="checkbox"]:not(:checked) ~ label,
.custom-checkbox.hide-label [type="checkbox"]:checked ~ label {
  text-indent: -9000px;
}

  .custom-checkbox.hide-label [type="checkbox"]:not(:checked) ~ label:after,
  .custom-checkbox.hide-label [type="checkbox"]:checked ~ label:after {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  .custom-checkbox.hide-label [type="checkbox"]:checked ~ label:after {
    text-indent: initial;
  }

/*** Custom Radio Buttons ***/

.custom-radio {
  display: block;
  position: relative;
  padding-left: 35px;
  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;
  }

  .custom-radio .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 100px;
    border: 1px solid #B0B9C7;
  }

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-radio input:checked ~ .checkmark:after {
  display: block;
}

.custom-radio .checkmark:after {
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--theme-color);
}



/*********** GLOBAL STYLES **********/



body {
  max-width: 100%;
  overflow-x: hidden;
  background-color: #fff;
  font: normal 14px Lato, Helvetica, sans-serif;
  color: #2B2E43;
}

h1, h2, h3, h4, h5, h6 {
  color: #2B2E43;
}

a {
  color: inherit;
  cursor: pointer;
}

a img {
  opacity: 0.99; /*firefox scale bug fix*/
}

table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 3px;
  overflow: hidden;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea, select {
  height: 50px; /*safari padding fix*/
  padding: 8px;
  vertical-align: middle;
  background-color: #fff;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.05em;
  border: none;
  border-bottom: 1px solid #CFD2D7;
}



input, textarea, select, button {
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: #777;
}

textarea {
  min-height: 150px;
}

select {
  min-width: 50px;
  height: 32px; /*safari padding fix*/
  padding: 6px;
}

  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  input[type="password"]:focus,
  textarea:focus,
  select:focus {
    border-color: var(--theme-color);
    color: #2B2E43;
    position: relative;
    z-index: 1;
    outline: none;
    border-bottom: 1px solid #CFD2D7;
  }

input[type="checkbox"],
input[type="radio"],
input[type="checkbox"] + *,
input[type="radio"] + * {
  vertical-align: middle;
}

input[type="button"], input[type="submit"],
button, .button-1, .button-2 {
  cursor: pointer;
}

form label {
  line-height: 50px;
}

form label + * {
  vertical-align: middle;
  flex: 80%;
}

.master-wrapper-content,
.center-1 .page.home-page {
  position: relative;
  z-index: 0;
  width: 100%;
  margin: 0 auto;
}

.master-column-wrapper {
  position: relative;
  z-index: 0;
}

.master-column-wrapper:after {
  content: "";
  display: block;
  clear: both;
}

.center-1 {
  margin: 0 0 100px;
}

  .header-lower,
  .column-wrapper,
  .center-1 .page,
  .center-1 .order-progress,
  .home-page .topic-block,
  .home-page-category-grid,
  .home-page-product-grid,
  .latest-news-container,
  .latest-blog-container,
  .news-list-homepage,
  .home-page-polls,
  .footer .topic-block .topic-body-inner,
  .footer-lower,
  .shipping-types-wrapper,
  .homepage-banner {
    width: 90%;
    margin: 0 auto;
  }

.center-2, .side-2 {
  margin: 0 0 50px;
}

.side-2:after {
  content: "";
  display: block;
  clear: both;
}

.page {
  min-height: 200px;
  text-align: center;
}

.page-title {
  display: none;
  min-height: 50px;
  margin: 0 0 25px;
  border-bottom: 1px solid #ddd;
  padding: 6px 10px;
}

.page-title h1 {
  font-size: 30px;
  font-weight: normal;
}

.page:after,
.page-title:after,
.page-body:after {
  content: "";
  display: block;
  clear: both;
}

.center-1 .page-title,
.center-1 .title {
  text-align: center;
}

.buttons {
  margin: 0 0 30px;
  text-align: center;
}

.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 {
  margin: 12px 0;
  padding: 0 0 0 36px;
  list-style: decimal;
}

.category-description p,
.manufacturer-description p,
.full-description p,
.topic-block p,
.topic-page p {
  margin: 10px 0;
  text-align: justify;
  clear: both;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
  color: #2B2E43;
}

.flyout-cart {
  display: none;
}

.home-page-product-grid,
.category-grid.home-page-category-grid,
.news-list-homepage {
  display: none;
}


/*********** GLOBAL FORMS ***********/



.fieldset, .section {
  position: relative;
  margin: 0 0 40px;
}

  .fieldset .title,
  .section .title {
    margin: 5% 5% 0 5%;
    padding-bottom: 12px;
    font-family: Philosopher;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 20px;
    text-align: left;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--theme-color);
    border-bottom: 1px solid var(--theme-color);
  }

.fieldset .title strong,
.section .title strong {
  font-weight: bold;
}

.form-fields {
  position: relative;
  padding: 4% 5% 0;
}

.inputs {
  position: relative;
  margin: 0 0 15px;
  text-align: left;
  white-space: nowrap; /*fix for 'required' elements*/
  font-size: 0;
  margin-bottom: 20px!important;
}

.inputs:after {
  content: "";
  display: block;
  clear: both;
}

  .inputs.newsletter {
    display: flex;
    flex: 50%;
  }

  .inputs.newsletter label {
    margin-right: 20px;
  }

  .inputs label {
    display: block;
    width: 100%;
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #525661;
    flex: 20%;
  }

  .inputs input[type="text"],
  .inputs input[type="email"],
  .inputs input[type="tel"],
  .inputs input[type="password"],
  .inputs select, .inputs textarea {
    width: 100%;
    background-color: #fff;
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.05em;
    border: none;
    border-bottom: 1px solid #CFD2D7;
    flex: 80%;
  }

.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;
  text-align: center;
}

.inputs.reversed * {
  display: inline-flex;
  width: auto;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #2B2E43;
}

.required {
  margin: 0 -8px 0 3px; /*siblings offset*/
  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;
}

.field-validation-valid,
.username-available-status {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #4cb17c;
}

.captcha-box {
  text-align: center;
  line-height: 0; /*firefox line-height bug fix*/
}

.captcha-box > div {
  display: inline-block;
  max-width: 100%;
}

.captcha-box input {
  height: auto;
}


/*********** GLOBAL TABLES ***********/



.table-wrapper {
  overflow-x: auto;
}

.data-table .hidden-row {
  height: 1px;
  border: none;
}

.data-table tr.hidden-row th {
  padding: 0;
  border-top: none;
}

.data-table tr.hidden-row th > span {
  height: 1px;
  width: 1px;
  position: absolute;
  overflow: hidden;
  top: -10px;
}

.cart thead,
.data-table thead,
.forum-table thead {
  border-radius: 3px 3px 0px 0px;
}

.cart th,
.data-table th,
.forum-table th {
  border-width: 1px 1px 0;
  border-style: solid;
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  padding: 14px 20px;
  white-space: nowrap;
  font-family: Philosopher;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  text-align: justify;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #FFF;
}

.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 transparent #E1E3EB;
  background-color: #fff;
  padding: 20px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
  color: #2B2E43;
}

.forum-table td {
  min-width: 90px;
  padding: 10px;
}

.cart label {
  display: none;
}

.cart a,
.data-table a,
.forum-table a {
  font-weight: normal;
  color: #2B2E43;
}

/*.cart a:hover,
.cart a:focus,
.data-table a:hover,
.data-table a:focus,
.forum-table a:hover,
.forum-table a:focus {
  text-decoration: underline;
}*/

.cart .product,
.data-table .product,
.data-table .message,
.data-table .info,
.data-table .name {
  min-width: 180px;
  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: #2B2E43;
}

.data-table .product em {
  text-decoration: none;
}

  .cart .product a:hover,
  .cart .product a:focus,
  .data-table .product a:hover,
  .data-table .product a:focus,
  .data-table .info a:hover,
  .data-table .info a:focus {
    color: var(--theme-color);
    text-decoration: none;
  }

.cart .product .attributes {
  color: #62656B;
}

.cart .product .edit-item {
  margin: 10px 0 0;
}

  .cart .product .edit-item a {
    font-weight: normal;
    color: #2883EC;
  }

.cart .product .edit-item a:hover,
.cart .product .edit-item a:focus {
  text-decoration: underline;
}

.cart .remove-from-cart,
.cart .add-to-cart,
.data-table .select-boxes,
.data-table .order {
  text-align: center;
}

  .cart input[name="removefromcart"] {
    display: none;
  }

  .cart .remove-from-cart .remove-btn,
  .cart .jsmartable-subcol .remove-btn {
    border: none;
    background: #FFF;
    font-size: 20px;
    color: #FEB0B0;
  }

.cart td.unit-price,
.data-table td.unit-price {
  white-space: nowrap;
}

.cart td.quantity input {
  width: 50px;
  height: 50px;
  text-align: center;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  border-radius: 3px;
}

.cart td.subtotal,
.data-table td.total {
  white-space: nowrap;
  color: #444;
}

.cart td.subtotal .discount, .cart td.subtotal .discount-additional-info {
  font-style: italic;
  color: var(--theme-color);
}

.jsmartable-subcol {
  background-color: #FFF !important;
  border: none !important;
  padding: 10px 0 !important;
}

.data-table em a {
  font-weight: bold;
  color: #444;
}

.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;
}

.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: #444;
}

.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;
  /*override jQuery UI styles, do not delete doubled properties*/
  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 #E1E3EB;
  overflow: hidden;
  background-color: #FFF;
  padding: 10px 15px;
  /*override jQuery UI styles, do not delete doubled properties*/
  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;
    /*override jQuery UI styles, do not delete doubled properties*/
    margin: 0 !important;
    font-family: Philosopher;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--theme-color);
    background: #FFFFFF;
  }

.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;
  /*override jQuery UI styles, do not delete doubled properties*/
  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;
  /*override jQuery UI styles, do not delete doubled properties*/
  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;
    border: none;
    color: #2B2E43;
  }

  .ui-dialog-content .back-in-stock-subscription-page .button-1 {
    min-width: 160px;
    border: none;
    background: var(--theme-color);
    border-radius: 5px;
    padding: 10px 30px;
    text-align: center;
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
  }

.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(--theme-color);
  padding: 8px 12px;
  font-size: 14px;
  color: #fff;
}

.eu-cookie-bar-notification button:hover,
.eu-cookie-bar-notification button:focus {
  background-color: var(--theme-color);
}

.eu-cookie-bar-notification a {
  display: block;
  color: var(--theme-color);
}

.eu-cookie-bar-notification a:hover,
.eu-cookie-bar-notification a:focus {
  text-decoration: underline;
}


/*********** HEADER ***********/



.admin-header-links {
  text-align: center;
  display: inline-block;
  flex: auto;
}

.admin-header-links * {
  display: inline-block;
  margin: 0 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.admin-header-links .impersonate {
  display: inline-block;
}

.admin-header-links .impersonate a {
  background-color: #555;
  padding: 0 15px;
}

.admin-header-links .impersonate a:hover,
.admin-header-links .impersonate a:focus {
  background-color: #666;
}

.header-banner {
  z-index: 1;
  font-family: Khand;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.05em;
  color: #2B2E43;
  background: #ECEEF4;
  display: block;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
}

  .header-banner .header-banner-close {
    display: inline-block;
    float: right;
    padding-right: 10px;
  }

.header-upper {
  position: relative;
  z-index: 1;
  font-family: Khand;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFF;
  background: var(--theme-color);
  display: block;
  align-items: center;
  text-align: center;
  padding: 5px !important;
}

  .header-upper .welcome-text {
    display: none;
    flex: auto;
    text-align: center;
  }

.header-lower {
  position: relative;
  text-align: center;
  z-index: 10;
  padding: 20px 0 32px;
  align-content: center;
  display: flex;
  flex-wrap: wrap;
}

.header-selectors-wrapper {
  display: inline-block;
  text-align: center;
  flex: auto;
}

  .header-selectors-wrapper > div {
    display: inline-block;
    min-width: 100px;
    vertical-align: middle;
  }

  .header-selectors-wrapper select {
    width: 100%;
    padding: 4px;
    font-family: Khand;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    color: #FFF;
    background: var(--theme-color);
  }

.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 {
  position: relative;
  text-align: right;
  flex: auto;
}

.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-family: Khand;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #2B2E43;
    vertical-align: middle;
  }

    .header-links a:hover,
    .header-links a:focus {
      color: var(--theme-color);
    }

  .header-links .dropdown {
    position: relative;
  }

  .header-links .dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
  }

    .header-links .dropdown-menu:before {
      content: "";
      display: block;
      position: absolute;
      border: 15px solid transparent;
      border-bottom-color: var(--theme-color);
      bottom: 100%;
      left: 20%;
    }

  .header-links .signin-toggle:hover + .dropdown-menu {
    display: block;
  }

  .header-links .signin-toggle + .dropdown-menu:hover {
    display: block;
  }

    .header-links .dropdown-menu li {
      display: block;
    }

    .header-links .wishlist-label i,
    .header-links .cart-label i,
    .header-links .signin-toggle i {
      font-size: 28px;
      line-height: 45px;
      margin-right: 8px;
    }

#topcartlink {
  display: block;
  width: 70%;
  max-width: 400px;
  margin: 10px auto 0;
  padding: 0 20px;
}

.icon-mobile-nave-icon {
  text-align: left;
  font-size: 30px;
  width: 30px;
  flex: auto;
}

.header-logo {
  text-align: center;
  vertical-align: middle;
  font-size: 0;
  flex: auto;
}

.header-logo a {
  display: inline-block;
  max-width: 100%;
  line-height: 0; /*firefox line-height bug fix*/
}

  .header-logo a img {
    max-width: 100%;
    max-height: 30px;
    opacity: 1;
  }

.search-box {
  border: 1px solid #D8DAE4;
  padding: 5px 0;
  margin-top: 20px;
  width: 100%;
}

.search-box form:after {
  content: "";
  display: block;
  clear: both;
}

.search-box input.search-box-text {
  float: left;
  width: 80%;
  height: 36px;
  text-align: right;
  border: none;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #AAACB8;
}

  .search-box input.search-box-text:focus {
    border-bottom: 1px solid #CFD2D7;
  }

.search-box .search-box-button {
  float: left;
  height: 36px;
  border: none;
  background-color: #fff;
  padding: 0 15px;
  text-align: center;
  color: #2B2E43;
  font-size: 28px;
  text-transform: uppercase;
  width: 20%;
}

/*.search-box .search-box-button:hover,
.search-box .search-box-button:focus {
  background-color: var(--theme-color);
}*/

.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: 285px !important;
  border: 1px solid #ddd;
  border-top: none;
  overflow: hidden;
  background-color: #fff;
  text-align: left;
  /*override jQuery UI styles, do not delete doubled properties*/
  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;
  /*override jQuery UI styles, do not delete doubled properties*/
  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:focus,
.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;
}


/******* FOOTER *******/

.footer {
  text-align: center;
}

  .footer .topic-block {
    margin: 0;
  }

  .footer .topic-block .section-header {
    display: flex;
    justify-content: center;
    font-family: Philosopher;
    font-style: normal;
    font-size: 26px;
    line-height: 45px;
    align-items: center;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 40px;
  }

    .footer .topic-block .section-header strong {
      color: var(--theme-color);
      font-weight: bold;
      margin: 0 10px;
    }

    .footer .topic-block .topic-body-outer:before {
      content: "";
      background: #15223B;
      left: 0;
      height: 50%;
      width: 100%;
      margin-top: 10%;
      position: absolute;
      pointer-events: none;
      z-index: -10;
    }

    .footer .topic-block .topic-body-inner {
      margin: 0 auto 50px !important;
      overflow: hidden;
      border-radius: 0 0 50px 50px;
    }

    .footer .topic-block .topic-body-inner iframe {
      margin-bottom: -7px;
    }

.newsletter .title {
  font-family: Philosopher;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  display: inline-block;
  align-items: center;
  text-transform: capitalize;
  color: #FFFFFF;
  vertical-align: middle;
  padding: 10px;
}

.newsletter-subscribe {
  display: inline-block;
  vertical-align: middle;
}

.follow-us-newsletter {
  background: var(--theme-color) url('../images/footer_pattern.png');
  position: relative;
  padding: 50px 0;
}

.footer-upper {
  width: 100%;
  margin: auto;
  overflow: hidden;
  padding: 40px 0;
  font-size: 0;
  background-color: #15223B;
  border-radius: 0px 0px 0px 100px;
}

.footer-block {
  width: 95%;
  margin: 1px auto;
  text-align: left;
  font-size: 14px; /*reset zeroing*/
}

  .footer-block .title {
    font-family: Philosopher;
    margin: 0 0 1px;
    background: #15223B url('../images/toggle-white.png') right center no-repeat;
    padding: 10px 15px;
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
  }

  .footer-block .title strong {
    font-weight: bold;
    color: #fff;
  }

.footer-block .list {
  display: none;
  margin: 0 0 20px;
  padding: 10px 15px;
}

  .footer-block .list li {
    display: flex;
  }

  .footer-block .list a,
  .footer-block .list span {
    font-family: Lato;
    font-size: 16px;
    display: block;
    padding: 10px 15px;
    line-height: 20px;
    color: #fff;
  }

  .footer-block .list i {
    line-height: 20px;
    padding: 10px 15px 10px 0;
  }

  .footer-block .list i:before {
    color: #fff;
  }

  .footer-block .list a:hover,
  .footer-block .list a:focus {
    color: #B0B9C7;
  }

.follow-us {
  margin: 10px 0 0;
  text-align: center;
}

.follow-us .title {
  margin: 0 0 10px;
  background: none;
  color: #444;
  cursor: auto;
}

.follow-us .social ul {
  font-size: 0;
}

.follow-us .social li {
  display: inline-block;
  margin: 0 5px;
}

.follow-us .social a {
  display: block;
  width: 38px;
  
  font-size: 0;
}

.follow-us .social a i {
  font-size: 20px;
}

.follow-us .social .facebook a {
  background-position: 0 0;
}

.follow-us .social .twitter a {
  background-position: -38px 0;
}

.follow-us .social .rss a {
  background-position: -76px 0;
}

.follow-us .social .youtube a {
  background-position: -114px 0;
}

.follow-us .social .google-plus a {
  background-position: -152px 0;
}

.newsletter-email {
  display: inline-block;
  overflow: hidden;
  border-radius: 100px;
  background-color: #fff;
}

  .newsletter-email input[type="email"] {
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 18px;
    text-transform: capitalize;
    float: left;
    width: 200px;
    height: 43px;
    margin: 0 -1px 0 0;
    border: none;
  }

.newsletter-subscribe-button {
  float: left;
  height: 43px;
  border: 3px solid #fff;
  border-radius: 100px;
  background-color: var(--theme-color);
  padding: 8px;
  text-align: center;
  color: #fff;
  font-size: 0;
}

  .newsletter-subscribe-button i:before {
    color: #fff;
    font-size: 20px;
  }

  .newsletter-subscribe-button:hover,
  .newsletter-subscribe-button:focus {
    background-color: var(--theme-color);
  }

.newsletter-email .options {
  clear: both;
  padding: 10px 0 0;
}

.newsletter-validation,
.newsletter-result {
  width: 100%;
  overflow: hidden;
  line-height: 28px;
  padding: 0px 10px;
  color: #ffffff;
}

.footer-store-logo {
  float: left;
  width: 100%;
  font-family: Philosopher;
  font-size: 40px;
  color: #fff;
  text-transform: uppercase;
  padding-top: 50px;
  border-top: 1px solid #494D68;
}

.footer-lower {
  font-family: Khand;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #494D68;
  overflow: hidden;
  padding: 20px 0 15px;
  font-size: 12px;
}
.seo-text  {
    display: block;
}
.footer-tax-shipping a {
  font-weight: bold;
  color: var(--theme-color);
}

.footer-tax-shipping a:hover,
.footer-tax-shipping a:focus {
  text-decoration: underline;
}

.footer-powered-by {
  color:#2B2E43; 
  margin: 10px 0 20px;
}

  .footer-powered-by a {
    font-weight: bold;
    color: #2B2E43;
  }

.footer-powered-by a:hover,
.footer-powered-by a:focus {
  text-decoration: underline;
}

.theme-selector {
  margin: 10px 0 0;
}

.theme-selector select {
  width: 170px;
}

.footer-payment-method a img{
    max-width:100%;

}
/*********** SIDE COLUMN ***********/
.block {
  min-height: 50px;
  margin: auto;
  text-align: left;
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
  border-radius: 3px;
}

  .block .title {
    position: relative;
    margin: 0 0 10px;
    padding: 12px 15px;
    background: #FFFFFF;
    box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
    border-radius: 3px;
    cursor: pointer;
    font-family: Philosopher;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--theme-color);
  }

  .block .title strong {
    max-width: 90%;
    display: inline-block;
  }

    .block .title i {
      font-size: 11px;
      font-weight: normal;
      line-height: 18px;
      float: right;
    }

.block .listbox {
  display: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 15px;
}

  .block.block-account-navigation .list li {
    padding: 4px;
  }

    .block.block-account-navigation .list li i {
      font-size: 11px;
      font-weight: normal;
      line-height: 27px;
      float: right;
    }

  .block .list a {
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 27px;
    text-transform: capitalize;
    color: #2B2E43;
  }

  .block .list .active > a {
    color: var(--theme-color);
  }

  .block .list a:hover,
  .block .list a:focus {
    color: var(--theme-color);
  }

.block a.product-picture {
  display: none;
}

.block a.product-picture:before {
  display: none;
}

  .block .sublist {
    margin: 5px 0 5px 15px;
  }

.block .sublist a {
  font-size: 14px;
}

.block .view-all {
  margin: 10px 0 0;
}

  .block .view-all a {
    display: inline-block;
    padding: 10px 0;
    font-size: 16px;
    color: var(--theme-color);
  }

.block .view-all a:hover,
.block .view-all a:focus {
  text-decoration: underline;
}

.block .tags {
  margin: 5px 0 10px;
}

.block .tags ul {
  font-size: 0;
}

  .block .tags li,
  .product-tags-all-page li {
    display: inline-block;
    position: relative;
    margin-right: 10px;
    overflow: hidden;
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 16px !important;
  }

    .block .tags li a,
    .product-tags-all-page li a {
      float: left;
      line-height: 27px;
      text-transform: capitalize;
      color: #2B2E43;
    }

  .block .tags li a:hover,
  .block .tags li a:focus,
  .product-tags-all-page li a:hover,
  .product-tags-all-page li a:focus {
    color: var(--theme-color);
  }

.poll strong {
  display: block;
  margin: 10px 0;
  margin: 10px 0;
  padding: 12px;
  font-family: Philosopher;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--theme-color);
  background: #FFFFFF;
  border: 1px solid #E7EBF0;
  box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
  border-radius: 3px;
}

.poll-options,
.poll-results {
  margin: 10px 0 15px;
  overflow: hidden;
  font-size: 15px;
  color: #444;
}

.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,
.poll-total-votes {
  text-align: center !important;
}

  .poll .buttons button {
    min-width: 160px;
    border: none;
    background: var(--theme-color);
    border-radius: 5px;
    padding: 10px 30px;
    text-align: center;
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
  }

/*.poll .buttons button:hover,
.poll .buttons button:focus {
  background-color: #bbb;
}*/

.poll-total-votes {
  display: block;
  margin: 10px 0 0;
  font-weight: bold;
  font-style: italic;
  color: #444;
}

.home-page-polls {
  text-align: center;
}

  .home-page-polls .title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px;
    padding: 0 0 15px;
    font-family: Philosopher;
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    line-height: 45px;
    text-align: center !important;
    text-transform: uppercase;
    color: var(--theme-color);
  }

    .home-page-polls .title strong {
      font-weight: bold;
      margin: 0 10px;
    }

.home-page-polls li {
  display: inline-block;
  margin: 10px;
}


/********** CATEGORY PAGE **********/

.breadcrumb {
  margin: 0 0 50px;
  background-color: #fff;
  padding: 5px 10px;
  font-family: Philosopher;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  color: #878893;
  text-align: center;
}

  .breadcrumb .breadcrumb-pagename {
    font-family: Philosopher;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 27px;
    letter-spacing: 0.03em;
    text-transform: capitalize;
    color: var(--theme-color);
    margin-bottom: 5px;
  }

.breadcrumb ul {
  font-size: 0;
}

.breadcrumb li {
  display: inline-block;
}

.breadcrumb li * {
  display: inline-block;
  margin: 0 5px;
  font-size: 16px; /*reset zeroing*/
  line-height: 18px;
}

  .breadcrumb li .current-item {
    color: var(--theme-color);
  }

  .breadcrumb li h1 {
    color: var(--theme-color);
  }

.breadcrumb strong {
  font-weight: normal;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  color: #2B2E43;
}

.category-description,
.manufacturer-description,
.vendor-description {
  margin: 0 0 25px;
  padding: 10px;
  line-height: 22px;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.contact-vendor {
  margin: 0 0 30px;
}

.contact-vendor .button-2 {
  border: none;
  background-color: var(--theme-color);
  padding: 10px 15px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}

.contact-vendor .button-2:hover,
.contact-vendor .button-2:focus {
  background-color: var(--theme-color);
}

.product-selectors {
  margin: 0 0 20px;
  text-align: left;
}

.product-selectors:first-child {
  border-top: none;
}

.product-selectors:after {
  content: "";
  display: block;
  clear: both;
}

.product-selectors > div {
  display: inline-block;
  margin: 5px;
}

  .product-selectors span {
    vertical-align: middle;
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #62656B;
  }

  .product-selectors select {
    margin-right: 8px;
    background: #FFFFFF;
    border: 1px solid #DDE0E6;
    box-sizing: border-box;
    box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
    border-radius: 5px;
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    height: 40px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #62656B;
  }

  .product-selectors .product-viewmode {
    display: inline-block;
    float: right;
    font-size: 0;
    background: #FFFFFF;
    border: 1px solid #E1E3EB;
    box-sizing: border-box;
    box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
    border-radius: 5px;
  }

    .product-selectors .product-viewmode span {
      display: none;
    }

    .product-selectors .product-viewmode a {
      display: inline-block;
      width: 20px;
      height: 20px;
      margin: 10px;
      background-position: center;
      background-repeat: no-repeat;
      color: #C9CAD1;
    }

      .product-selectors .product-viewmode a.selected {
        color: var(--theme-color);
      }

  .product-selectors .product-viewmode i {
    font-size: 20px;
  }

.product-filter + .product-filter {
  margin-top: 20px;
}

.product-filter .filter-title {
  margin: 0 0 10px;
  padding: 12px 15px;
  background: #FFFFFF;
  box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.5);
  border-radius: 3px;
  font-family: Philosopher;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--theme-color);
  cursor: pointer;
}

  .product-filter .filter-title strong {
    font-weight: bold;
  }

.product-filter .filter-title i {
  font-size: 11px;
  font-weight: normal;
  line-height: 20px;
  float: right;
}

.product-filter .filter-content {
  padding: 10px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  text-transform: capitalize;
  color: #2B2E43;
}

.product-filter .group {
  font-size: 14px;
}

.product-filter .group + .group {
  margin-top: 16px;
}

  .product-filter .group .name {
    padding-bottom: 10px;
    font-family: Philosopher;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 17px;
    text-transform: uppercase;
    color: #2B2E43;
  }

.product-filter .group .item {
  display: flex;
  align-items: center;
}

.product-filter .group .item.color-item input[type="checkbox"] {
  display: none;
}

.product-filter .group .item + .item {
  padding-top: 8px;
}

  .product-filter .group .item label {
    cursor: pointer;
    display: flex;
    flex-grow: 1;
    margin-bottom: 6px;
  }

.price-range-filter .selected-price-range {
  padding: 10px 0;
}

.price-range-filter .selected-price-range .to {
  float: right;
}

  .price-range-filter .selected-price-range .from,
  .price-range-filter .selected-price-range .to {
    display: inline-block;
    height: 30px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
    border-radius: 3px;
    width: 48%;
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #2B2E43;
  }

.price-range-filter .selected-price-range.manually {
  display: flex;
}

.price-range-filter .selected-price-range.manually .from {
  margin-right: 8px;
}

  .price-range-filter .selected-price-range.manually .from,
  .price-range-filter .selected-price-range.manually .to {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
    border-radius: 3px;
    width: 50%;
  }

.price-range-filter .ui-slider .ui-slider-handle {
  border-radius: 100px;
  border: 2px solid #fff;
  height: 20px;
  width: 20px;
  background-color: var(--theme-color);
  top: -8px;
}

.price-range-filter .ui-widget.ui-widget-content {
  border: none;
  background: #E5E5E5;
  height: 4px;
  margin: 5px 10px;
}

.price-range-filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0;
  background-color: var(--theme-color);
}

.price-range-filter .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 4px;
}

.product-filter .attribute-squares {
  font-size: inherit;
  padding-left: 0 !important;
}

  .product-filter .attribute-squares:before,
  .product-filter .attribute-squares:after {
    display: none;
  }

  .product-filter .attribute-squares .attribute-square {
    width: 20px !important;
    height: 20px !important;
    margin-right: 8px;
  }

.product-filter [type="checkbox"]:checked ~ .attribute-squares .attribute-square:before {
  content: '\e916';
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  -webkit-font-smoothing: antialiased;
  font-size: 13px;
  line-height: 22px;
  transform: translate(-50%, -50%);
  color: #fff;
  margin-left: 3px;
}

.item-grid:after {
  content: "";
  display: block;
  clear: both;
}

.item-box {
  position: relative;
  width: 100%;
  float: left;
  margin: 0 1% 25px;
  text-align: left;
  background: #FFFFFF;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  /*overflow: hidden;*/
}

.also-purchased-products-grid .item-box,
.related-products-grid .item-box,
.sub-category-grid .item-box {
  width: 100% !important;
}

.owl-carousel .owl-nav {
  position: absolute;
  width: 100%;
}

.sub-category-grid .owl-carousel .owl-nav {
  top: calc(50% - 50px);
}

  .sub-category-grid .owl-carousel .owl-nav button.owl-prev,
  .sub-category-grid .owl-carousel .owl-nav button.owl-next {
    background: #FFFFFF;
    color: var(--theme-color) !important;
    width: 40px;
    height: 40px;
  }

  .sub-category-grid .owl-carousel .owl-nav button.owl-prev {
    left: 15px;
  }

  .sub-category-grid .owl-carousel .owl-nav button.owl-next {
    right: 15px;
  }

  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next {
    font-size: 13px;
    line-height: 13px;
    position: absolute;
    margin: 0;
    border-radius: 100px;
    width: 50px;
    height: 50px;
    border: 1px solid #E2E4ED;
    background: #FFFFFF;
    color: var(--theme-color) !important;
    box-shadow: 0px 1px 2px rgba(0 ,0 ,0 ,0.20);
  }

  .owl-carousel .owl-nav button.owl-prev {
    left: calc(100% - 110px);
  }

  .owl-carousel .owl-nav button.owl-next {
    right: 0;
  }

    .owl-carousel .owl-nav button.owl-prev:hover,
    .owl-carousel .owl-nav button.owl-next:hover {
      background: var(--theme-color) !important;
      color: #FFFFFF !important;
    }

.item-box .picture {
  z-index: 1;
  background-color: #fff;
}

.item-box .picture a {
  display: block;
  position: relative;
}

.item-box .picture a:focus {
  opacity: 0.85;
}

.item-box .picture a:before {
  content: "";
  display: block;
  padding-top: 125%;
}

  .item-box .picture a img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
  }

.item-box .sub-category-item .picture a:before {
  display: unset;
}

.item-box .sub-category-item .picture a img {
  position: relative;
}

.item-box:hover .picture a img {
  opacity: 0.85;
}

.item-box .details {
  padding: 10px;
  min-height: 130px;
}

  .item-box .product-title {
    font-family: Philosopher;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 20px;
    text-transform: capitalize;
    color: #2B2E43;
    margin-bottom: 10px;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

.item-box .product-title a {
  display: block;
}

/*.item-box .product-title a:hover,
.item-box .product-title a:focus {
  color: var(--theme-color);
}*/

.item-box .sku {
  margin: 0 0 15px;
}

.item-box .product-rating-box {
  display: none;
  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-bottom: 10px;
  overflow: hidden;
}

  .item-box .old-price {
    margin: 0 5px 0 0;
    font-family: Philosopher;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    color: #aaa;
    text-decoration: line-through;
  }

  .item-box .actual-price {
    margin: 0 5px 0 0;
    font-family: Philosopher;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 20px;
    text-transform: capitalize;
    color: var(--theme-color);
  }

.item-box .tax-shipping-info a {
  color: var(--theme-color);
}

.item-box .tax-shipping-info a:hover,
.item-box .tax-shipping-info a:focus {
  text-decoration: underline;
}


  .item-box .attributes {
    margin: 0;
  }

  .item-box .attribute-squares label {
    line-height: 20px;
  }

  .item-box .attribute-squares .attribute-square {
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
    box-shadow: none;
    border-radius: 100px;
    cursor: pointer;
  }

  .item-box .attribute-squares .attribute-square:before {
    display: none;
  }

.item-box .buttons {
  margin: 0;
  font-size: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  width: auto;
  text-align: center;
  opacity: 0;
  z-index:9999;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}

.item-box:hover .buttons {
  opacity: 1;
  transition: 0.3s;
}

.item-box button {
  display: block;
  height: 40px;
  border: none;
  vertical-align: middle;
}

.item-box .product-box-add-to-cart-button {
  width: 40px;
  background-color: #FFF;
  text-align: center;
  font-size: 0;
  color: #2B2E43;
  text-transform: uppercase;
}

  .item-box .product-box-add-to-cart-button i{
      font-size: 24px;
  }

/*.item-box .product-box-add-to-cart-button:hover,
.item-box .product-box-add-to-cart-button:focus {
  background-color: var(--theme-color);
}*/

.item-box .add-to-compare-list-button,
.item-box .add-to-wishlist-button {
  width: 40px;
  background-color: #FFF;
  font-size: 0;
  color: #2B2E43;
}


  .item-box .add-to-compare-list-button i,
  .item-box .add-to-wishlist-button i {
    font-size: 24px;
  }

.sub-category-grid,
.manufacturer-grid,
.vendor-grid {
  margin: 0 0 20px;
}

  .home-page-category-grid .title,
  .sub-category-grid .title {
    text-align: center;
    font-weight: normal;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: Philosopher;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 20px;
    text-transform: capitalize;
    color: #2B2E43;
    margin-bottom: 10px;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

.home-page-category-grid .title a,
.sub-category-grid .title a {
  display: block;
  padding: 10px;
}

.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%;
}

.products-container {
  position: relative;
}

.products-container .ajax-products-busy {
  display: none;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #ffffffab url(../images/loading.gif) center no-repeat;
}

.product-grid,
.product-list {
  margin: 0 auto 50px;
}

.product-grid .title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 30px;
  padding: 0 0 15px;
  font-family: Philosopher;
  font-style: normal;
  font-weight: bold;
  font-size: 26px;
  line-height: 45px;
  text-align: center !important;
  text-transform: uppercase;
  color: var(--theme-color);
}

    .product-grid .title strong {
      font-weight: bold;
      margin: 0 10px;
    }

  .product-list .item-box {
    float: none;
    width: auto;
    margin: 0 5px 20px;
  }

    .product-list .item-box .product-item:after {
      content: "";
      display: block;
      clear: both;
    }

    .product-list .item-box .picture {
      float: left;
      width: 30%;
      min-height: 235px;
    }

      .product-list .item-box .picture a {
        height: 100%;
        min-height: 235px;
      }

    .product-list .item-box:hover .picture a img,
    .product-list .item-box:focus .picture a img {
      opacity: 1;
    }

    .product-list .item-box .picture:hover a img,
    .product-list .item-box .picture:focus a img {
      opacity: 0.85;
    }

    .product-list .item-box .picture + .details {
      margin-left: 30%;
      min-height: 235px;
    }

    .product-list .item-box .product-rating-box {
      display: block;
    }

    .product-list .item-box .description {
      display: block;
      margin: 0 0 10px;
      line-height: 22px;
      height: 65px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
    }

    .product-list .item-box .prices {
      height: auto;
    }

    .product-list .item-box .buttons {
      opacity: 1;
      position: relative;
      margin: 0 0 10px 10px;
      text-align: left;
      box-shadow: none;
    }

    .product-list .item-box button {
      display: inline-block;
      margin: 2px;
      background-color: var(--theme-color);
      color: #FFF;
    }

    .product-list .item-box .add-to-compare-list-button,
    .product-list .item-box .add-to-wishlist-button {
      width: 42px;
      display: inline-block;
    }

.manufacturer-grid .title {
  margin: 0 0 15px;
  text-align: center;
  font-size: 16px;
}

.manufacturer-grid .title a:hover,
.manufacturer-grid .title a:focus {
  color: var(--theme-color);
}

.manufacturer-grid .picture a img {
  object-fit: contain;
}

.vendor-grid .title {
  margin: 0 0 15px;
  text-align: center;
  font-size: 16px;
}

.vendor-grid .title a:hover,
.vendor-grid .title a:focus {
  color: var(--theme-color);
}

.vendor-grid .picture {
  border: 1px solid #ddd;
}

.pager {
  margin: 0 0 20px;
}

.pager ul {
  text-align: center;
  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 #D3D8E0;
      box-shadow: 1px 2px 3px 1px rgba(214, 218, 222, 0.55);
      border-radius: 3px;
      padding: 8px;
      text-align: center;
      cursor: pointer;
      font-family: Lato;
      font-size: 17px;
      line-height: 20px;
      text-transform: uppercase;
      color: #B0B9C7;
    }

    .pager li span {
      border-color: transparent;
      background-color: var(--theme-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,
.pager li a:focus {
  border-color: transparent;
  background-color: #ddd;
}


/********** PRODUCT PAGE **********/


.product-details-page {
  padding: 20px 0 0;
}

.product-essential {
  margin: 0 0 40px;
  padding: 0 0 10px;
}

.product-essential:after {
  content: "";
  display: block;
  clear: both;
}

.gallery {
  margin: 0 auto 50px;
  position: relative;
}

.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: 0;
}

  .gallery .picture img,
  .gallery .picture-thumbs img,
  .variant-picture img {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }

.gallery .picture-thumbs {
  overflow: hidden;
  font-size: 0;
  text-align: center;
}

.gallery .picture-thumbs .thumb-item {
  display: inline-block;
  position: relative;
  max-width: 100px;
  max-height: 100px;
  margin: 0 5px 10px;
  overflow: hidden;
  cursor: pointer;
}

.product-details-picture {
  margin: 0 auto 50px;
  position: relative;
}

.overview {
  position: relative;
  margin: 0 0 50px;
  padding: 0 25px;
  background-color: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

  .overview .label {
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    text-align: justify;
    letter-spacing: 0.03em;
    text-transform: capitalize;
    color: #2B2E43;
  }

.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: 25px 0;
    padding-bottom: 10px;
    font-family: Philosopher;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: var(--theme-color);
  }

    .overview .product-name h1 {
      font-size: 20px;
      font-weight: bold;
      color: var(--theme-color);
    }

  .overview .short-description {
    margin: 0 0 25px;
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #2B2E43;
  }

.product-reviews-overview {
  margin: 0 0 25px;
}

.product-no-reviews,
.product-review-links {
  display: inline-block;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #2883EC;
}

.product-review-box {
  display: inline-block;
  margin-right: 12px;
}

.product-review-box .rating {
  width: 95px;
  height: 14px;
  background: url('../images/rating1.png') repeat-x;
}

.product-review-box .rating div {
  height: 14px;
  background: url('../images/rating2.png') repeat-x;
  font-size:0;
}

.product-review-links a:hover,
.product-review-links a:focus {
  color: var(--theme-color);
}

.overview .value,
.variant-overview .value {
  color: #444;
}

  .overview .value a,
  .variant-overview .value a {
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    text-transform: capitalize;
    color: #2B2E43;
  }

.overview .value a:hover,
.overview .value a:focus,
.variant-overview .value a:hover,
.variant-overview .value a:focus {
  text-decoration: underline;
}

.overview-buttons {
  margin: 0 0 25px;
  font-size: 0;
}

  .overview-buttons div {
     display: inline-block; 
     width: auto; 
     margin: 0 10px 0 0;
  }

.overview .button-2,
.variant-overview .button-2 {
  display: block;
  width: 100%;
  border: none;
  background-color: #fff;
  border: 1px solid #E4E7F0;
  border-radius: 5px;
  padding: 11px;
  text-align: left;
  font-size: 0; /*reset zeroing*/
  color: #B8BCC7;
}

.overview .button-2 i,
.variant-overview .button-2 i {
    font-size: 20px;
}

  .overview .button-2:hover,
  .overview .button-2:focus,
  .variant-overview .button-2:hover,
  .variant-overview .button-2:focus {
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
  }

.overview .download-sample-button,
.variant-overview .download-sample-button {
  background-image: url('../images/download-button.png');
  background-position: center;
  background-repeat: no-repeat;
}

.overview .manufacturers {
  margin: 0 0 20px;
}

.overview .availability,
.variant-overview .availability {
  margin: 0 0 20px;
  overflow: hidden;
}

.overview .availability .back-in-stock-subscription,
.variant-overview .availability .back-in-stock-subscription {
  display: inline-block;
  margin-top: 10px;
}

.overview .additional-details,
.variant-overview .additional-details {
  margin: 0 0 20px;
}

.overview .additional-details div,
.variant-overview .additional-details div {
  margin: 0 0 8px;
}

.overview .delivery,
.variant-overview .delivery {
  overflow: hidden;
}

.overview .free-shipping,
.variant-overview .free-shipping {
  display: inline-block;
  margin: 10px 0;
  background: url('../images/shipping.png') left center no-repeat;
  padding: 2px 0 2px 28px;
  font-weight: bold;
  color: #444;
}

.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;
  font-family: Lato;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #2B2E43;
}

.overview .download-sample,
.variant-overview .download-sample {
  display: inline-block;
  margin: 0 0 25px;
}

.overview .prices,
.variant-overview .prices {
  margin-bottom: 20px;
  padding-top: 25px;
  overflow: hidden;
  border-top: 1px solid #E1E3EB;
}

/*.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 {
  display: inline-block;
  margin-right: 10px;
  font-family: Philosopher;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 22px;
  text-align: justify;
  letter-spacing: 0.03em;
  text-decoration-line: line-through;
  text-transform: capitalize;
  color: #B8BECE;
}

.overview .product-price,
.variant-overview .product-price {
  display: inline-block;
  font-family: Philosopher;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 26px;
  text-align: justify;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  color: var(--theme-color);
}

.overview .tax-shipping-info a,
.variant-overview .tax-shipping-info a {
  color: var(--theme-color);
}

.overview .tax-shipping-info a:hover,
.overview .tax-shipping-info a:focus,
.variant-overview .tax-shipping-info a:hover,
.variant-overview .tax-shipping-info a:focus {
  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: #444;
}

.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: #444;
}

.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;
  padding-bottom: 30px;
  border-bottom: 1px solid #E1E3EB;
}

.overview .add-to-cart-panel,
.variant-overview .add-to-cart-panel {
  display: inline-block;
  position: relative;
}

.overview .add-to-cart-panel > *,
.variant-overview .add-to-cart-panel > * {
  float: left;
}

.overview .qty-label,
.variant-overview .qty-label {
  display: none !important;
}

.overview .qty-input,
.variant-overview .qty-input {
  width: 96px;
  height: 45px;
  padding: 0 12px;
  text-align: center;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
  text-transform: capitalize;
  color: #969EB6;
  background: #FFFFFF;
  border: 1px solid #D2D2DC;
  box-sizing: border-box;
  border-radius: 5px;
  margin: 0 7px 10px 0;

}

.overview .qty-dropdown,
.variant-overview .qty-dropdown {
  height: 43px;
  padding: 0 12px;
  font-size: 15px;
  color: #444;
}

.overview .add-to-cart-button,
.variant-overview .add-to-cart-button {
  height: 45px;
  border: none;
  background-color: var(--theme-color);
  padding: 0 15px;
  font-family: Khand;
  font-style: normal;
  font-weight: 600;
  font-size: 23px;
  line-height: 45px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  border-radius: 5px;
}

  .overview .add-to-cart-button:hover,
  .overview .add-to-cart-button:focus,
  .variant-overview .add-to-cart-button:hover,
  .variant-overview .add-to-cart-button:focus {
    background-color: var(--theme-color);
  }

.overview .add-to-cart-button i,
.variant-overview .add-to-cart-button i {
  margin-right: 14px;
}

.product-share-button {
  display: inline-block;
  overflow: hidden;
}

.product-collateral {
  margin: 0 0 75px;
}

  .product-collateral .title,
  .full-description .title {
    margin: 0 0 10px;
    padding: 12px;
    font-family: Philosopher;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--theme-color);
    background: #FFFFFF;
    border: 1px solid #E7EBF0;
    box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
    border-radius: 3px;
    cursor: pointer;
  }

    .product-collateral .title strong {
      font-weight: bold;
    }

    .product-collateral .title i,
    .full-description .title i {
      font-size: 11px;
      font-weight: normal;
      line-height: 18px;
      float: right;
    }

    .product-collateral .contentbox,
    .full-description .contentbox {
      display: none;
      margin: 25px 0;
    }

.product-variant-line {
  margin: 0 0 30px;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.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-family: Philosopher;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    text-align: justify;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: var(--theme-color);
  }

.variant-overview .variant-description {
  margin: 0 0 15px;
  line-height: 22px;
}

.variant-overview .add-to-wishlist {
  margin: 0 0 25px;
  text-align: left;
}

.variant-overview .add-to-wishlist-button {
  display: inline-block;
  width: auto;
}

.variant-overview .add-to-cart {
  margin: 0 0 10px;
}

.product-specs-box {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: justify;
  color: #2B2E43;
}

.product-specs-box td {
  border: 1px solid #ddd;
  padding: 10px;
}

.product-specs-box td.spec-group-name {
  border: 0;
  padding-top: 20px;
  font-size: 16px;
  color: #444;
}

.product-tags-list {
  font-size: 0;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  /* font-size: 14px; */
  line-height: 20px;
  text-align: justify;
  color: #2B2E43;
}

.product-tags-list li {
  display: inline-block;
  font-size: 14px; /*reset zeroing*/
}

.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,
.product-tags-list a:focus {
  color: #444;
}

.attributes {
  margin: 20px 0;
}

.attributes dl {
  overflow: hidden;
  padding: 0 2px; /* fix for Chrome in Mac, the checkboxes get cut off */
}

  .attributes dt,
  .attribute-label {
    display: block;
    margin: 0 0 5px;
    white-space: nowrap;
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.03em;
    text-transform: capitalize;
    color: #2B2E43;
  }

.attributes dd,
.attribute-data {
  margin: 0 0 10px;
}

.attributes li {
  margin: 8px 0 12px;
  display: inline-block;
}

.attributes select {
  width: auto;
  min-width: 100px;
  max-width: 100%;
}

  .attributes .option-list input[type="checkbox"],
  .attributes .option-list input[type="radio"] {
    display: none;
  }

    .attributes .option-list input[type="checkbox"] ~ label,
    .attributes .option-list input[type="radio"] ~ label {
      background: #FFFFFF;
      border: 1px solid #D9DEE4;
      border-radius: 5px;
      font-size: 12px;
      line-height: 40px;
      height: 40px;
      display: inline-block;
      font-family: 'Lato';
      font-weight: bold;
      color: #A9A9AE;
      text-align: center;
      margin-right: 10px;
      padding: 0px 10px;
    }

    .attributes .option-list input[type="checkbox"]:checked ~ label,
    .attributes .option-list input[type="radio"]:checked ~ label {
      color: var(--theme-color);
      border: 1px solid var(--theme-color);
      box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.75);
    }

.attributes .datepicker {
  width: 280px;
  text-align: center;
  color: #444;
}

.attributes .qty-box input {
  width: 48px;
  height: 32px;
  text-align: center;
}

.attributes .option-list:not(.attribute-squares) .disabled {
  opacity: .5;
}

.attributes .attribute-squares .disabled .attribute-square {
  cursor: default;
  opacity: .25;
}

.attributes .attribute-squares .disabled .attribute-square-container {
  background: linear-gradient(to top left, rgba(0,0,0,0) 0%, rgba(0,0,0,0) calc(50% - 1.5px), #e91e63 50%, rgba(0,0,0,0) calc(50% + 1.5px), rgba(0,0,0,0) 100%), linear-gradient(to top right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) calc(50% - 1.5px), #e91e63 50%, rgba(0,0,0,0) calc(50% + 1.5px), rgba(0,0,0,0) 100%);
}

.attributes .attribute-squares .tooltip-container .not-available-text {
  font-size: 12px;
}

.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 select option.disabled,
.attributes select option:disabled {
  color: #cecece;
}

.ui-datepicker {
  width: 280px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  text-align: center;
  /*override jQuery UI styles, do not delete doubled properties*/
  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(--theme-color);
  color: #fff;
  /*override jQuery UI styles, do not delete doubled properties*/
  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;
  /*override jQuery UI styles, do not delete doubled properties*/
  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 {
  /*override jQuery UI styles, do not delete doubled properties*/
  display: none !important;
}

.ui-datepicker-title {
  position: relative;
  z-index: 0;
  line-height: 32px;
  font-weight: bold;
  text-transform: uppercase;
  /*override jQuery UI styles, do not delete doubled properties*/
  line-height: 32px !important;
}

.ui-datepicker-calendar {
  /*override jQuery UI styles, do not delete doubled properties*/
  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;
  /*override jQuery UI styles, do not delete doubled properties*/
  padding: 0;
}

.ui-datepicker-calendar th span,
.ui-datepicker-calendar td a {
  display: block;
  min-height: 32px;
  line-height: 32px;
  color: #444;
}

.ui-datepicker-calendar td a {
  /*override jQuery UI styles, do not delete doubled properties*/
  border: none !important;
  background: none !important;
  padding: 0;
  text-align: center;
  color: #444 !important;
}

.ui-datepicker-calendar .ui-state-active {
  outline: 2px solid var(--theme-color);
  font-weight: bold;
  color: var(--theme-color);
  /*override jQuery UI styles, do not delete doubled properties*/
  color: #4ab2f1 !important;
}

.attribute-squares {
  font-size: 0;
  display: inline-block;
}

.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: inline-block !important;
    width: 35px !important;
    height: 35px !important;
    box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
    border-radius: 5px;
    cursor: pointer;
  }

/*.attribute-squares .selected-value .attribute-square-container {
  background-color: var(--theme-color);
}*/

  .attribute-squares.color-squares .selected-value .attribute-square::before {
    content: '\e916';
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 35px;
    transform: translate(-50%, -50%);
    color: #fff;
  }

.attribute-squares li input {
  display: none;
}

.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,
.attribute-squares li:focus .tooltip-container {
  visibility: visible;
  margin-left: -83px;
  margin-top: 5px;
  z-index: 999;
}

.item-box .attribute-squares li:hover .tooltip-container,
.item-box .attribute-squares li:focus .tooltip-container {
  visibility: hidden;
}

.product-list .item-box .attribute-squares li:hover .tooltip-container,
.product-list .item-box .attribute-squares li:focus .tooltip-container {
  visibility: visible !important;
}


.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: #444;
}

.giftcard input,
.giftcard textarea {
  width: 350px;
  max-width: 100%;
}

.giftcard textarea {
  height: 150px;
}


/********** PRODUCT REVIEWS **********/



.product-reviews-page h1 a {
  color: var(--theme-color);
}

.product-reviews-page h1 a:before,
.product-reviews-page h1 a:after {
  content: "''";
}

.product-reviews-page .title {
  margin: 20px 0;
  color: #2B2E43;
  font-family: Lato;
  font-style: normal;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 0.05em;
}

.product-reviews-page .title strong {
  font-weight: bold;
}

.write-review {
  margin: 0 0 60px;
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.write-review .fieldset {
  margin: 0 0 30px;
}

.tooltip {
  position: initial;
  display: inline-block;
  border-bottom: 1px dotted black;
  color: #444;
}

.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,
.tooltip:focus .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: block;
    margin: 0 0 5px;
    font-size: 14px;
    color: #2B2E43;
    line-height: 19px;
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #525661;
  }

.write-review .rating-wrapper {
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.write-review .review-rating div.first {
  color: #e4444c;
}

.write-review .review-rating div.rating-options {
  padding-top: 2px;
}

.write-review .review-rating div.rating-options input {
  vertical-align: baseline;
}

.write-review .review-rating div.last {
  color: #4cb17c;
}

.write-review .captcha-box {
  margin: 15px 0 0;
}

.write-review .button-1 {
  min-width: 160px;
  border: none;
  background: var(--theme-color);
  border-radius: 5px;
  padding: 10px 30px;
  text-align: center;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
}
/*
.write-review .button-1:hover,
.write-review .button-1:focus {
  background-color: var(--theme-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;
  background: #FFFFFF;
  border: 1px solid #E5E7F0;
  box-sizing: border-box;
  box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
  border-radius: 3px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: #000;
  text-align: left;
}

  .product-review-item .review-item-head {
    overflow: hidden;
    padding: 10px 20px 0;
  }

  .product-review-item .review-title {
    line-height: 20px;
    font-size: 16px;
    color: #2B2E43;
    font-weight: bold;
    text-transform: capitalize;
  }

.product-review-item .product-review-box {
  margin: 3px 0 0;
}

.product-review-item .review-content {
  padding: 20px;
}

  .product-review-item .review-text {
    line-height: 22px;
    color: #2B2E43;
  }

.product-review-item .avatar {
  margin: 0 0 10px;
}

.product-review-item .reply {
  margin: 15px 0;
  border-top: 1px solid #ddd;
}

.product-review-item .reply-header {
  margin: 15px 0;
  font-weight: bold;
}

.product-review-item .reply-text {
  line-height: 22px;
}

.product-review-item .review-info {
  margin: 0 0 5px;
}

  .product-review-item .review-info .date {
    display: block;
    color: #B0B9C7;
  }

.product-review-item .review-info label {
  font-weight: normal;
  line-height: 22px;
}

  .product-review-item .review-info label + * {
    line-height: 22px;
  }

  .product-review-item .review-info a,
  .product-review-helpfulness .vote {
    display: inline-block;
    padding: 0 5px;
    color: #2883EC;
    cursor: pointer;
    line-height: 22px;
  }

.product-review-helpfulness .question {
  margin: 0 5px 0 0;
  font-style: italic;
}

.product-review-helpfulness .result {
  margin: 0 0 0 10px;
}

.product-review-item .review-type-rating-ext {
  overflow: hidden;
  margin: 0 0 20px;
}


/********** WISHLIST & COMPARE LIST **********/



.wishlist-page .page-title {
  margin: 0 0 -1px;
}

.wishlist-content {
  margin: 0 0 20px;
}

.wishlist-content .message-error {
  margin: 20px 0;
}

  .wishlist-content .table-wrapper,
  .order-summary-content .table-wrapper,
  .order-details-page .table-wrapper {
    margin: 0 auto 15px auto !important;
    background: #FFFFFF;
    border: 1px solid #E5E7F0;
    box-sizing: border-box;
    box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
    border-radius: 3px;
  }

.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,
.wishlist-content .tax-shipping-info a:focus {
  text-decoration: underline;
}

.wishlist-content .buttons {
  text-align: center !important;
}

  .wishlist-content .button-2 {
    display: block;
    width: 250px;
    margin: 0 auto 10px;
    height: 45px;
    border: none;
    text-align: center;
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
    padding: 12px;
    color: #fff;
    border-radius: 5px;
  }

  .wishlist-content .update-wishlist-button,
  .wishlist-content .wishlist-add-to-cart-button {
    background-color: var(--theme-color);
  }

    .wishlist-content .update-wishlist-button:hover,
    .wishlist-content .update-wishlist-button:focus,
    .wishlist-content .wishlist-add-to-cart-button:hover,
    .wishlist-content .wishlist-add-to-cart-button:focus {
      background-color: var(--theme-color);
    }

  .wishlist-content .email-a-friend-wishlist-button {
    background-color: #525661;
  }

    .wishlist-content .email-a-friend-wishlist-button:hover,
    .wishlist-content .email-a-friend-wishlist-button:focus {
      background-color: #15223B;
    }

.wishlist-page .share-info {
  text-align: center;
}

  .wishlist-page .share-info span {
    display: block;
    margin: 0 0 5px;
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #62656B;
  }

  .wishlist-page .share-info a {
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 50px;
    letter-spacing: 0.05em;
    color: #525661;
  }

  .wishlist-page .share-info a:hover,
  .wishlist-page .share-info a:focus {
    color: var(--theme-color);
  }

.wishlist-page .no-data {
  margin: 25px 0 0;
}

.compare-products-page {
  position: relative;
  overflow: hidden;
}

  .compare-products-page .buttons {
    text-align: center;
  }

  .compare-products-page .clear-list {
    display: inline-block;
    margin: 0 0 20px;
    min-width: 160px;
    border: none;
    background: var(--theme-color);
    border-radius: 5px;
    padding: 10px 30px;
    text-align: center;
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF
  }

/*.compare-products-page .clear-list:hover,
.compare-products-page .clear-list:focus {
  background-color: var(--theme-color);
}*/

.compare-products-page .table-wrapper {
  margin: 0 0 30px;
  padding: 0 0 1px; /*IE mobile table border fix*/
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.compare-products-table td {
  min-width: 150px;
  border-bottom: 1px solid #E1E3EB;
  background-color: #fff;
  padding: 20px;
  text-align: left;
  vertical-align: top;
  color: #2B2E43;
}

.compare-products-table td:first-child {
  min-width: 0;
}

.compare-products-table td label {
  font-weight: normal;
  color: #777;
}

.compare-products-table .specification-group td {
  border: 0;
  padding: 20px 10px 10px 10px;
}

.compare-products-table .specification-group td label {
  font-size: 16px;
  color: #444;
}

.compare-products-table .remove-button {
  display: inline-block;
  border: none;
  font-size: 14px;
  color: #2B2E43;
  background-color: #FFFFFF;
}

  .compare-products-table .remove-button i {
    font-size: 16px;
    color: #FEB0B0;
    margin-right: 10px;
  }

.compare-products-table .remove-button:hover,
.compare-products-table .remove-button:focus {
  color: var(--theme-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,
.compare-products-table .product-name td a:focus {
  color: var(--theme-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 {
  margin: 0 0 25px;
}

.topic-block-title {
  margin: 0 0 25px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 12px;
  font-family: Philosopher;
  font-style: normal;
  text-align: left;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--theme-color);
}

  .topic-block-title h2 {
    font-weight: bold;
    font-size: 18px;
    line-height: 20px;
    color: var(--theme-color);
  }

.topic-block-body {
  text-align: justify;
  line-height: 24px;
  font-size: 16px;
}

.topic-page {
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

  .topic-page .page-body {
    text-align: center;
    line-height: 22px;
    margin: 55px;
  }

.topic-page .page-body p {
  text-align: center !important;
}

.topic-block a,
.topic-page a {
  text-decoration: underline;
}

.topic-block strong,
.topic-page strong {
  color: #444;
}

.home-page .topic-block {
  margin: 50px auto !important;
  padding: 20px;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0,  0.10);
  border-radius: 3px;
}

.homepage-banner {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
  border-top-left-radius: 50px;
  overflow: hidden;
}

.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: #444;
}

.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 button[type="submit"] {
  float: left;
  width: auto;
  min-width: 86px;
  height: 40px;
  border: none;
  background-color: var(--theme-color);
  padding: 0 15px;
  color: #fff;
  text-transform: uppercase;
}

.enter-password-form button[type="submit"]:hover,
.enter-password-form button[type="submit"]:focus {
  background-color: var(--theme-color);
}


/*********** CONTACT & EMAIL A FRIEND & APPLY FOR VENDOR ACCOUNT ***********/


.contact-page,
.email-a-friend-page,
.apply-vendor-page,
.not-found-page {
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.contact-page .page-title,
.email-a-friend-page .page-title,
.apply-vendor-page .page-title {
  margin: 0 0 -1px;
}

  .contact-page .topic-block p,
  .apply-vendor-page .topic-block p,
  .not-found-page .topic-block p {
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.05em;
  }

.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: 160px;
    border: none;
    background: var(--theme-color);
    border-radius: 5px;
    padding: 10px 30px;
    text-align: center;
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
  }

  .contact-page .topic-block,
  .email-a-friend-page .title,
  .apply-vendor-page .topic-block,
  .not-found-page .topic-block {
    margin: 25px;
  }

  .email-a-friend-page .title h2 {
    font-family: Philosopher;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: var(--theme-color);
  }

.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(--theme-color);
  cursor: pointer;
}

/********** REGISTRATION, LOGIN, ACCOUNT PAGES  **********/

.registration-form,
.registration-result-page .page-body {
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E5E7F0;
  box-sizing: border-box;
  box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
  border-radius: 3px;
}

.registration-page .registration-form {
  width: 95%;
}

.registration-page .regi-img,
.account-page .regi-img {
  line-height: 50px;
  font-size: 20px;
  flex: 5%;
  color: #525661;
}

.registration-page .label-with-icon,
.account-page .label-with-icon {
  flex: 15%;
  font-weight: normal;
}

/*.registration-page .inputs {
    display: flex;
}*/

.gender {
  display: inline-block;
  flex: 80%;
}

.gender span {
  display: inline-block;
}

.gender span > * {
  display: inline !important;
  margin: 0 5px;
  line-height: 32px;
  text-transform: capitalize;
  font-weight: normal;
}

.date-of-birth .date-picker-wrapper {
  display: flex;
  flex: 80%
}

.date-of-birth select {
  width: 33.33%; /*always single line*/
  color: #525661;
  text-transform: uppercase;
}

.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,
#check-availability-button:focus {
  background-color: #999;
}

.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(--theme-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,
.email-revalidation-page .button-1,
.account-activation-page .button-1,
.account-page .button-1,
.return-request-page .button-1 {
  min-width: 160px;
  border: none;
  background: var(--theme-color);
  border-radius: 5px;
  padding: 10px 30px;
  text-align: center;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
}

  .registration-page .button-1:hover,
  .registration-page .button-1:focus,
  .registration-result-page .button-1:hover,
  .registration-result-page .button-1:focus,
  .login-page .button-1:hover,
  .login-page .button-1:focus,
  .password-recovery-page .button-1:hover,
  .password-recovery-page .button-1:focus,
  .email-revalidation-page .button-1:hover,
  .email-revalidation-page .button-1:focus,
  .account-activation-page .button-1:hover,
  .account-activation-page .button-1:focus,
  .account-page .button-1:hover,
  .account-page .button-1:focus,
  .return-request-page .button-1:hover,
  .return-request-page .button-1:focus {
    background-color: var(--theme-color);
  }

.return-request-page h1 a {
  color: var(--theme-color);
}

.return-request-page .return-request-file {
  font-size: 14px;
}

.return-request-page .return-request-file .uploadedfileinput {
  display: inline-block;
  vertical-align: middle;
}

.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;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #000000;
  text-align: center;
}

.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;
}

.login-page .customer-blocks {
  margin: 0 auto 30px;
  width: 95%;
}

.login-page .title {
  font-family: Philosopher;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  text-align: left;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--theme-color);
  margin: 15px 0 0;
  padding: 0;
  border-bottom: none;
}

.login-page .title strong {
  font-weight: bold;
}

.login-page .new-wrapper {
  margin: 0 0 50px;
  background: #FFFFFF;
  border: 1px solid #E5E7F0;
  box-sizing: border-box;
  box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
  border-radius: 3px;
  padding: 30px 30px 0 30px;
}

  .login-page .new-wrapper .text {
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #000000;
    padding: 30px 0;
    text-align: left;
  }

.login-page .new-wrapper .topic-block {
  margin: 0;
}

.login-page .new-wrapper .topic-block-body strong {
  color: #444;
}

/*.login-page .new-wrapper .button-1 {
  margin: 0 0 5px;
}*/

.login-page .returning-wrapper {
  margin: 0;
  background: #FFFFFF;
  border: 1px solid #E5E7F0;
  box-sizing: border-box;
  box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
  border-radius: 3px;
  padding: 30px 30px 0 30px;
}

.login-page .returning-wrapper .form-fields {
  overflow: hidden;
  padding: 30px 0 0;
}

  .login-page .returning-wrapper input[type="email"],
  .password-recovery-page input[type="email"] {
    border-radius: 3px 3px 0px 0px;
    background: #fff url(../images/login-email.png) left no-repeat;
    background-position: 15px;
    padding-left: 45px;
  }

  .login-page .returning-wrapper input[type="password"] {
    border-radius: 0px 0px 3px 3px;
    background: #fff url('../images/login-pass.png') left no-repeat;
    background-position: 15px;
    padding-left: 45px;
  }

  .login-page .returning-wrapper .inputs {
    margin: 0;
  }

    .login-page .returning-wrapper .inputs.reversed {
      display: block;
      white-space: normal;
      text-align: left;
      margin-top: 30px;
      margin-bottom: 10px;
    }

  .login-page .returning-wrapper .inputs.reversed * {
    display: inline-block;
    width: auto;
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #B0B9C7;
  }

.login-page .returning-wrapper .inputs.reversed a:hover,
.login-page .returning-wrapper .inputs.reversed a:focus {
  color: var(--theme-color);
}

.login-page .captcha-box {
  margin: -15px 0 20px;
}

.login-page .returning-wrapper .inputs.reversed .forgot-password {
  float: right;
}

.login-page .returning-wrapper .inputs.reversed .forgot-password a {
  color: #3E72F9;
}

.login-page .returning-wrapper .buttons {
  background-color: #fff;
}

.external-authentication {
  margin: 0 0 50px;
  overflow: hidden;
  text-align: center;
}

.external-authentication .title {
  margin: 0 0 15px;
  font-size: 20px;
  color: #444;
}

.external-authentication .buttons {
  margin: 0 0 30px;
  border-top: 1px solid #e6e6e6;
  padding: 30px;
}

.external-auth-errors {
  color: #e4444c;
}

.external-auth-association {
  color: #444;
}

.external-auth-association a {
  color: var(--theme-color);
}

.external-auth-association a:hover,
.external-auth-association a:focus {
  text-decoration: underline;
}

.login-page .topic-block {
  display: none;
}

.password-recovery-page .result {
  margin: 0 0 5px;
  font-weight: bold;
  color: #444;
}

.password-recovery-page .tooltip {
  margin: 30px 85px 25px 85px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #000000;
  padding: 30px 0;
  text-align: center;
  border: none;
}

.password-recovery-page .buttons,
.registration-result-page .buttons {
  margin: 40px 0;
  text-align: center !important;
}

.add-more-external-records {
  text-align: center;
}

.add-more-external-records a {
  color: var(--theme-color);
}

.add-more-external-records a:hover,
.add-more-external-records a:focus {
  text-decoration: underline;
}

.account-page {

}

.account-page .buttons {
  text-align: center;
}

.account-page .description {
  margin: 0 0 25px;
  padding: 0 10px;
}

.account-page .table-wrapper {
  margin: 0 0 30px;
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.gdpr-tools-page .result {
  margin: 20px 0;
  font-size: 13px;
  color: #e4434b;
}

.gdpr-tools-page .buttons {
  margin-top: 20px;
}

.order-list-page .title {
  margin: 0 0 10px;
  padding: 20px 20px 0 20px;
  border: none;
  font-family: Lato;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 26px;
  color: #2B2E43;
}

.address-list-page .info,
.order-list-page .info {
  margin: 0 0 10px;
  padding: 20px;
  font-family: Lato;
  font-size: 15px;
  line-height: 26px;
  color: #2B2E43;
}

.address-list-page .info .name,
.order-list-page .info .name {
  font-size: 16px;
  font-weight: bold;
}

  .address-list-page .info label,
  .order-list-page .info label {
    line-height: 26px;
  }

.address-list-page .buttons,
.order-list-page .buttons {
  text-align: left;
  padding: 0 10px;
}


.address-list-page .button-2,
.order-list-page .button-2 {
  display: inline-block;
  margin: 0 0 0 10px;
  border: none;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 20px;
  border-radius: 3px;
  padding: 12px 12px 12px 40px;
  color: #fff;
  background-color: var(--theme-color);
}

.order-list-page .button-2 {
  padding: 12px !important;
}

.address-list-page .address-list .address-item,
.order-list-page .order-list .order-item {
  background: #FFFFFF;
  border: 1px solid #E5E7F0;
  box-sizing: border-box;
  box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
  border-radius: 3px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: #000;
  text-align: left;
}

.edit-address-button {
  background: url('../images/edit-icon.png') no-repeat;
  background-position: left 12px center;
}

.button-2.delete-address-button {
  background: #525661 url('../images/remove-icon.png') no-repeat;
  background-position: left 12px center;
}

.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;
}

.account-page .no-data {
  padding: 5%;
  margin-bottom: 30px;
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.10);
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.05em;
  color: #2B2E43;
  text-align: center;
}

.address-list-page .add-button {
  margin: 0 0 20px;
  text-align: center;
}

.address-edit-page .page-body {
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E5E7F0;
  box-sizing: border-box;
  box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
  border-radius: 3px;
}

.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;
  padding: 40px 55px;
}

.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: #444;
}

.return-request-list-page label {
  margin: 0 5px 0 0;
}

.return-request-list-page a {
  color: var(--theme-color);
}

.return-request-list-page a:hover,
.return-request-list-page a:focus {
  text-decoration: underline;
}

.return-request-list-page .comments div {
  margin: 10px 0 0;
  font-size: 15px;
  font-style: italic;
  color: #444;
}

.downloadable-products-page table td {
  color: #444;
}

.reward-points-overview {
  margin: 0 0 25px;
}

.reward-points-history .title {
  margin: 20px 0;
}

.reward-points-history table td {
  color: #2B2E43;
}

  .reward-points-history table td:last-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,
.avatar-page .button-2:focus {
  background-color: #999;
}

.avatar-page .info {
  color: #444;
}

.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,
.vendorinfo-page .button-2:focus {
  background-color: #999;
}

.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 auto 50px !important;
  text-align: center;
}

  .order-progress ul {
    font-family: Khand;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .order-progress li {
    display: inline-block;
    margin: 10px 0.5%;
    border: 1px solid #E1E3EB;
    box-sizing: border-box;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
    border-radius: 3px;
    padding: 25px 10px 10px 10px;
    min-width: calc(94%/6);
  }

    .order-progress li.active-step {
      background: var(--theme-color);
    }

.order-progress a {
  display: block;
  min-width: 70px;
}

  .order-progress a i {
    display: block;
    font-size: 22px;
    margin-bottom: 24px;
  }

/*.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;
  color: #FFFFFF;
}

  .order-progress li.inactive-step a {
    cursor: default;
    color: #B0B9C7;
  }

.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,
.shopping-cart-page .checkout-attributes a:focus {
  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,
.shopping-cart-page .tax-shipping-info a:focus {
  text-decoration: underline;
}

.shopping-cart-page .common-buttons {
  margin: 0 0 40px;
  font-size: 0;
  text-align: center;
}

  .shopping-cart-page .common-buttons button {
    min-width: 240px;
    margin: 5px auto;
    border: none;
    background-color: var(--theme-color);
    text-align: center;
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
    padding: 12px;
    color: #fff;
    border-radius: 5px;
  }

    .shopping-cart-page .common-buttons button:hover,
    .shopping-cart-page .common-buttons button:focus {
      background-color: #68035A;
    }

.shopping-cart-page .common-buttons button:last-child {
  background-color: var(--theme-color);
}

.shopping-cart-page .common-buttons button:last-child:hover,
.shopping-cart-page .common-buttons button:last-child:focus {
  background-color: var(--theme-color);
}

.shopping-cart-page .common-buttons .estimate-shipping-button {
  display: inline-block;
  min-width: 240px;
  margin: 5px;
  border: none;
  text-align: center;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 20px;
  padding: 12px;
  color: #fff;
  border-radius: 5px;
  background-color: #525661;
}

  .shopping-cart-page .common-buttons .estimate-shipping-button:hover,
  .shopping-cart-page .common-buttons .estimate-shipping-button:focus {
    background-color: #15223B;
  }

.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;
    background: #FFFFFF;
    border: 1px solid #DDE0E6;
    box-sizing: border-box;
    box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
    border-radius: 5px;
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    text-align: justify;
    color: #2B2E43;
    border-radius: 3px;
  }

.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; /*reset zeroing*/
}

.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: #444;
}

.selected-checkout-attributes br {
  content: "";
  display: block;
  margin: 3px;
}

.cart-footer {
  margin: 0 0 50px;
  background-color: var(--theme-color);
  box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
  border-radius: 3px;
}

.cart-footer:after {
  content: "";
  display: block;
  clear: both;
}

  .cart-footer .totals {
    float: right;
    width: 100%;
    background-color: var(--theme-color);
    padding: 30px;
    color: #FFF;
    border-radius: 35px 35px 3px 3px;
    font-family: Khand;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
  }

  .cart-footer .totals label {
    line-height: 24px;
  }

.cart-footer .total-info {
  margin: 0 0 20px;
}

.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(--theme-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;
}

.terms-of-service label {
  cursor: pointer;
}

.terms-of-service a {
  margin: 0 0 0 3px;
}

.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;
  padding: 0 15px;
  font-family: Khand;
  font-style: normal;
  font-weight: 600;
  font-size: 23px;
  line-height: 45px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--theme-color);
  background-color: #FFFFFF;
  border-radius: 5px;
}

/*.cart-footer .checkout-button:hover,
.cart-footer .checkout-button:focus {
  background-color: var(--theme-color);
}*/

.cart-footer .addon-buttons {
  margin: 20px 0 0;
  padding: 0 10px;
}

.cart-collaterals {
  float: right;
  width: 100%;
  max-width: 100%;
  margin: 0 auto -35px;
}

  .cart-collaterals > div {
    padding: 0 0 85px;
  }

  .cart-collaterals .title-top {
    font-family: Khand;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 23px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
  }

  .cart-collaterals .deals {
    float: right;
    width: 100%;
    background-color: #15223B;
    border-radius: 3px;
  }

  .cart-collaterals .button-2 {
    display: inline-block;
    border: none;
    background-color: var(--theme-color);
    padding: 10px 15px;
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    text-transform: capitalize;
    color: #FFFFFF;
    border-radius: 0px 3px 3px 0px;
  }

/*.cart-collaterals .button-2:hover,
.cart-collaterals .button-2:focus {
  background-color: #999;
}*/

  .cart-collaterals .title {
    margin: 0 0 5px;
    color: #FFF;
    font-family: Khand;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
  }

.cart-collaterals .title strong {
  font-weight: normal;
}

.cart-collaterals .hint {
  margin: 0 0 10px;
}

.cart-collaterals .deals > div {
  margin: 30px;
}

.cart-collaterals .coupon-code {
  overflow: hidden;
}

  .cart-collaterals .coupon-code input[type="text"] {
    float: left;
    width: 60%;
    height: 36px; /*safari padding fix*/
    margin: 0 -1px 0 0;
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #B1B4BD;
    border-radius: 3px 0 0 3px;
  }

.cart-collaterals .coupon-code button[type="submit"] {
  float: left;
  width: 40%;
  height: 36px; /*safari padding fix*/
  padding: 0;
}

.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: 15px;
  height: 15px;
  border: 1px solid #999;
  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: #444;
}

.shopping-cart-page .no-data {
  padding: 5%;
  margin-bottom: 30px;
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.10);
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.05em;
  color: #2B2E43;
  text-align: center;
}


/*** 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(--theme-color);
  color: #99a1a7;
  border: 1px solid #adb8c0;
  border-color: var(--theme-color);
}

.apply-shipping-button {
  border: none;
  padding: 8px 25px;
  background-color: var(--theme-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;
}


/*** PRODUCT ESTIMATE SHIPPING ***/


.product-estimate-shipping {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 20px;
  background: #FFFFFF;
  border: 1px solid #DEDEE7;
  border-radius: 5px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  text-align: justify;
  color: #2B2E43;
}

.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;
}


/********** CHECKOUT **********/

.checkout-page .page-body,
.order-details-page .page-body {
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.10);
  border-radius: 3px;
  padding: 3%;
}

.checkout-page .section {
  margin: 0 0 30px;
}

.checkout-page .section.order-summary {
  margin: 100px 0 30px;
}

  .checkout-page .title {
    margin: 20px 0;
  }

.checkout-page .order-completed .title {
  text-align: center;
}

.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(--theme-color);
  border-radius: 5px;
  padding: 10px 30px;
  text-align: center;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
}

/*.checkout-page .button-1:hover,
.checkout-page .button-1:focus {
  background-color: var(--theme-color);
}*/

.checkout-page .address-item {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 40px;
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

  .checkout-page .address-item ul {
    margin: 0 0 15px;
    background-color: #FFFFFF;
    padding: 20px;
  }

  .checkout-page .address-item ul * {
    font-family: Lato;
    font-size: 16px;
    line-height: 26px;
    color: #2B2E43;
  }

  .checkout-page .address-item .select-button {
    text-align: center;
    padding: 12px;
    border-top: 1px solid #E1E3EB;
  }

/*.checkout-page .address-item li {
  padding: 5px 0;
}*/

.checkout-page .address-item li.name {
  font-size: 16px;
  font-weight: bold;
}

.enter-address .message-error {
  margin: 20px 0;
}

.enter-address .edit-address {
  margin: 0 0 30px;
  padding: 30px 15px;
}

.checkout-page .ship-to-same-address {
  padding: 10px;
  text-align: center;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #2B2E43;
}

.checkout-page .ship-to-same-address .selector {
  margin: 0 0 5px;
  font-weight: bold;
  color: #444;
}

.checkout-page .pickup-in-store {
  text-align: center;
}

.checkout-page .pickup-in-store .selector {
  margin: 0 0 5px;
  font-weight: bold;
  color: #444;
}

.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;
}

.checkout-page .edit-address-button {
  float: right; 
  margin: 20px 10px 10px 12px;
  display: none;
}

.checkout-page .delete-address-button {
  float: right; 
  margin: 20px 0 10px 0;
  display: none;
}

.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; /*reset zeroing*/
    background: #FFFFFF;
    border: 1px solid #E1E3EB;
    box-sizing: border-box;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    padding: 10px;
    text-align: left;
  }

    .shipping-method .method-list li label,
    .payment-method .method-list li label {
      font-size: 0.98em;
      font-weight: normal;
      color: #0A0636;
      padding-left: 4px;
      line-height: 20px;
      vertical-align: top;
    }

.shipping-method .method-name {
  padding: 10px;
}

.shipping-method .method-description {
  padding: 0 14px 10px;
}

.payment-method .payment-radio,
.shipping-method .shippingoption-radio {
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  cursor: pointer;
  background: #FFFFFF;
  border: 1px solid #96A5B1;
  border-radius: 100px;
  position: relative;
}

.shipping-method input[type="radio"] {
  display: none;
}

.payment-method input[radio]:checked ~ .payment-radio::before,
.payment-method .selected-value .payment-radio::before,
.shipping-method .selected-value .shippingoption-radio::before,
.checkout-page.shipping-method-page .shipping-method .selected-value .shippingoption-radio::before {
  content: '\e916';
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  font-size: 11px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--theme-color);
}

.payment-method li.selected-value,
.shipping-method .method-list li.selected-value,
.checkout-page.shipping-method-page .shipping-method .method-list li.selected-value {
  background: var(--theme-color);
  border-radius: 3px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

  .shipping-method .method-list li.selected-value label {
    color: #ffffff;
  }

.shipping-method .buttons,
.payment-method .buttons,
.payment-info .buttons,
.confirm-order .buttons,
.order-completed .buttons {
  text-align: center !important;
}

.payment-method .use-reward-points {
  margin: 0 0 30px;
  text-align: center;
  color: #444;
}

.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 {
  width: 200px;
  display: inline-block;
  margin: 0 0 0 10px;
  text-align: left;
  vertical-align: middle;
}

.payment-info .info {
  padding: 30px 15px;
  color: #444;
}

.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; /*reset zeroing*/
}

.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;
  font-size: 15px;
  line-height: 25px;
  padding: 20px;
  color: #2B2E43;
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

/*.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: #2B2E43;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.05em;
}

.order-completed .details div {
  margin: 5px 0;
}

.order-completed .details strong {
  font-weight: normal;
  text-transform: uppercase;
}

  .order-completed .details a {
    color: #2883EC;
  }

.order-completed .details a:hover,
.order-completed .details a:focus {
  text-decoration: underline;
}

.opc {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #2B2E43;
}

  .opc .step-title {
    margin: 0 0 1px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #E7EBF0;
    box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
    border-radius: 3px;
    padding: 0 15px;
  }

  .opc .allow .step-title {
    cursor: pointer;
  }

  .opc .step-title .number,
  .opc .step-title .title {
    float: left;
    min-height: 40px;
    font-family: Philosopher;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 45px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--theme-color);
    margin: 0;
  }

  .opc .step-title i {
    color: var(--theme-color);
    font-size: 11px;
    font-weight: normal;
    line-height: 45px;
    float: right;
  }

.opc .allow .step-title .number,
.opc .allow .step-title .title {
  cursor: pointer;
}

.opc .step-title .number {
  width: 42px;
  text-align: center;
}

.opc .step {
  margin: 10px 0;
  padding: 30px 15px;
  text-align: center;
}

.opc .section {
  margin: 0 0 30px;
}

.opc .section > label {
  display: block;
  margin: 0 0 10px;
}

  .opc input[type="text"] {
    max-width: 100%;
  }

  .opc select {
    max-width: 100%;
    background: #FFFFFF;
    border: 1px solid #DDE0E6;
    box-sizing: border-box;
    box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
    border-radius: 5px;
  }

.opc .buttons {
  margin-bottom: 0;
  text-align: center !important;
}

  .opc .back-link {
    margin: 0 15px 10px;
    display: inline-block;
  }

.opc .back-link small {
  display: none;
}

    .opc .back-link a {
      display: inline-block;
      color: #2B2E43;
    }

      .opc .back-link a:hover,
      .opc .back-link a:focus {
        color: var(--theme-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;
  border-bottom: 1px solid #ddd;
  padding: 0 0 10px;
}

.order-details-page .page-title a {
  display: inline-block;
  min-width: 180px;
  margin: 5px 0;
  border: none;
  background-color: #aaa;
  background-image: none;
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}

.order-details-page .page-title a:hover,
.order-details-page .page-title a:focus {
  background-color: #999;
}

.order-details-page .page-title a.print-order-button {
  background-color: var(--theme-color);
}

.order-details-page .page-title a.print-order-button:hover,
.order-details-page .page-title a.print-order-button:focus {
  background-color: var(--theme-color);
}

.order-details-page .order-overview {
  margin: 0 0 50px;
  line-height: 26px;
  text-align: center;
  font-size: 16px;
  color: #444;
}

.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(--theme-color);
}

.order-details-page .repost .button-2 {
  display: inline-block;
  margin: 10px 0;
  border: none;
  background-color: var(--theme-color);
  padding: 10px 15px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
}

.order-details-page .repost .button-2:hover,
.order-details-page .repost .button-2:focus {
  background-color: var(--theme-color);
}

.order-details-page .download a {
  font-weight: normal;
  color: var(--theme-color);
}

.order-details-page .download a:hover,
.order-details-page .download a:focus {
  text-decoration: underline;
}

.order-details-page .data-table label {
  display: none;
}

.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(--theme-color);
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

.user-agreement-page .button-1:hover,
.user-agreement-page .button-1:focus {
  background-color: var(--theme-color);
}

.order-details-page .tax-shipping-info {
  margin: 30px 0;
}

.order-details-page .tax-shipping-info a {
  color: var(--theme-color);
}

.order-details-page .tax-shipping-info a:hover,
.order-details-page .tax-shipping-info a:focus {
  text-decoration: underline;
}

.order-details-page .section .title {
  margin: 5% 0 0 0 !important;
}

.order-details-page .actions {
  padding: 30px 0;
  font-size: 0;
  text-align: center;
}

  .order-details-page .actions button {
    display: inline-block;
    min-width: 160px;
    border: none;
    padding: 0 15px;
    font-family: Khand;
    font-style: normal;
    font-weight: 600;
    font-size: 23px;
    line-height: 45px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--theme-color);
    background-color: #FFFFFF;
    border-radius: 5px;
  }

.order-details-page .buttons {
  text-align: center !important;
}

.order-details-page .print-order-button,
.order-details-page .pdf-invoice-button, .cancel-order-button {
  display: inline-block;
  min-width: 180px;
  margin: 5px;
  border: none;
  background-color: var(--theme-color);
  text-align: center;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 20px;
  padding: 12px;
  color: #fff;
  border-radius: 5px;
}

.order-details-page .totals.section {
  width: 370px;
  padding: 0 10px;
  max-width: 100%;
  margin: 0 0 50px;
  background-color: var(--theme-color);
  box-shadow: 0px 3px 8px rgba(214, 218, 222, 0.55);
  border-radius: 3px;
}

.order-details-page .total-info {
  width: 100%;
  background-color: var(--theme-color);
  padding: 30px;
  color: #FFF;
  border-radius: 35px 35px 3px 3px;
  font-family: Khand;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
}


/****** SEARCH & SITEMAP ******/


.search-page .page-title {
  margin: 0 0 -1px;
}

.search-input {
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.search-input .fieldset {
  margin: 0 0 30px;
}

.search-input input + label {
  display: inline;
  margin: 0 0 0 5px;
}

.search-input .inputs.reversed {
  margin: 30px 0;
  text-align: left;
}

.advanced-search {
  margin: 30px 0 0;
}

.advanced-search .price-range {
  display: inline-block;
}

.advanced-search .price-range input {
  width: 80px;
  margin: 3px;
}

.search-input .button-1 {
  min-width: 160px;
  border: none;
  background: var(--theme-color);
  border-radius: 5px;
  padding: 10px 30px;
  text-align: center;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF
}

/*.search-input .button-1:hover,
.search-input .button-1:focus {
  background-color: var(--theme-color);
}*/

.search-page .product-selectors {
  margin: 30px 0;
}

.search-results {
  margin: 30px 0 0;
}

.search-results .warning {
  margin: 10px 0;
  color: #e4434b;
}

.sitemap-page .page-body {
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.sitemap-page .description {
  padding: 5%;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 0.05em;
  text-align: center;
  color: #2B2E43;
}

.sitemap-page .entity {
  margin: 30px 55px;
}

.sitemap-page .entity-title {
  margin: 0 0 15px;
  padding-bottom: 12px;
  font-family: Philosopher;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  text-align: left;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--theme-color);
  border-bottom: 1px solid var(--theme-color);
}

  .sitemap-page .entity-title h2 {
    font-weight: bold;
    font-size: 18px;
    color: var(--theme-color);
  }

.sitemap-page .entity-body {
  padding: 30px 0;
  text-align: left;
}

.sitemap-page .entity ul {
  font-size: 0;
}

.sitemap-page .entity li {
  display: inline-block;
  position: relative;
  margin: 0 8px;
  line-height: 50px;
  font-size: 14px; /*reset zeroing*/
}

  .sitemap-page .entity li:after {
    content: "-";
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    vertical-align: middle;
    margin-left: 18px;
  }

  .sitemap-page .entity li:last-child:after {
    display: none;
  }

.sitemap-page .entity a {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #2B2E43;
}

  .sitemap-page .entity a:hover,
  .sitemap-page .entity a:focus {
    color: var(--theme-color);
  }

.sitemap-page .entity a:empty {
  display: none;
}


/****** BLOG & NEWS ******/



.block-blog-archive .number {
  display: block;
  color: #444;
  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;
}

.news-items .news-item {
  margin: 0 0 30px;
}

.blog-page .post,
.latest-blog-container .blog-item,
.news-list-page .news-item,
.latest-news-container .news-item,
.news-list-homepage .news-item {
  display: inline-block;
  margin: 0 1% 30px;
  vertical-align: top;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.10);
  border-radius:  3px;
}

.blog-page .post .blog-img,
.news-list-page .news-item .news-img {
  width: 100%;
}

.latest-blog-container .blog-item {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.blog-page .post:after {
  content: "";
  display: block;
  clear: both;
}

.post-title {
  display: inline-block;
  margin: 15px;
  font-family: Philosopher;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 27px;
  text-transform: capitalize;
  color: #2B2E43;
  height: 55px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-title {
  display: inline-block;
  margin: 15px;
  font-weight: bold;
  font-family: Philosopher;
  font-style: normal;
  font-size: 24px;
  line-height: 34px;
  text-transform: uppercase;
  color: var(--theme-color);
  height: 65px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/*  .post-title:hover,
  .post-title:focus,
  .news-title:hover,
  .news-title:focus {
    color: var(--theme-color);
  }*/

.post-date {
  display: block;
  margin: 10px 15px;
  font-family: Khand;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #2B2E43;
}

.news-date {
  display: block;
  font-family: Khand;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #9497A8;
  margin: 10px 15px 0;
}

.post-body,
.news-body {
  display: block;
  margin: 20px 15px;
  font-family: Khand;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  text-align: justify;
  color: #000000;
  height: 110px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.blogpost-page .blog-img,
.news-item-page .news-img {
  width: 100%;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  margin-bottom: -5px;
}

.blogpost-page .post-body,
.news-item-page .news-body {
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  height: unset;
  overflow: unset;
  display: block;
  padding: 25px;
  margin: 0 0 20px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #2B2E43;
}

  .blogpost-page .post-body .post-title,
  .blogpost-page .post-body .post-date,
  .news-item-page .news-body .news-title,
  .news-item-page .news-body .news-date {
    height: unset;
    overflow: unset;
    display: block;
    margin: 0 0 15px;
    padding: 0;
  }

.blog-page .tags,
.blogpost-page .tags {
  margin: 0 0 15px;
  padding: 0 10px;
  height: 40px;
  overflow: hidden;
}

  .blog-page .tags label,
  .blogpost-page .tags label {
    display: inline-block;
    margin: 0 3px 3px 0;
    font-weight: bold;
    color: #2B2E43;
  }

  .blog-page .tags ul,
  .blogpost-page .tags ul {
    display: block;
  }

.blog-page .tags li,
.blogpost-page .tags li {
  display: inline-block;
  font-size: 14px; /*reset zeroing*/
}

.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(--theme-color);
}

.blog-page .tags a:hover,
.blog-page .tags a:focus,
.blogpost-page .tags a:hover,
.blogpost-page .tags a:focus {
  text-decoration: underline;
}

.blog-posts .buttons .read-comments {
  display: block;
  margin: 0 0 15px;
  font-weight: bold;
  color: #444;
}

.blog-posts .buttons .read-comments:hover,
.blog-posts .buttons .read-comments:focus {
  color: var(--theme-color);
}

.latest-blog-container .blog-box-info .blog-link,
.blog-posts .buttons .read-more,
.news-items .buttons .read-more {
  display: inline-block;
  border: none;
  background: var(--theme-color);
  border-radius: 5px;
  font-family: Khand;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #FFFFFF;
  padding: 5px 16px;
}

/*.blog-posts .buttons .read-more:hover,
.blog-posts .buttons .read-more:focus,
.news-items .buttons .read-more:hover,
.news-items .buttons .read-more:focus {
  background-color: var(--theme-color);
}*/

.new-comment {
  margin: 50px 0 60px;
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

  .new-comment .title {
    margin: 25px 25px 0;
  }

.new-comment .notifications {
  margin: 0 0 10px;
}

.new-comment .result {
  color: #690;
}

  .new-comment .form-fields {
    margin: 0 0 20px;
    padding: 15px 25px 0;
  }

  .new-comment .button-1 {
    min-width: 160px;
    border: none;
    background: var(--theme-color);
    border-radius: 5px;
    padding: 10px 30px;
    text-align: center;
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
  }

/*.new-comment .button-1:hover,
.new-comment .button-1:focus {
  background-color: var(--theme-color);
}*/

.comment-list {
  margin: 0 0 100px;
  background: #FFFFFF;
  border: 1px solid #E1E3EB;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

  .comment-list .title {
    margin: 25px 25px 15px;
    padding-bottom: 12px;
    font-family: Philosopher;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 20px;
    text-align: left;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--theme-color);
    border-bottom: 1px solid var(--theme-color);
  }

.comment-list .title strong {
  font-weight: bold;
}

  .comment-list .comment {
    margin: 0 25px 40px;
  }

.comment-list .comment:after {
  content: "";
  display: block;
  clear: both;
}

.comment-info {
  margin: 20px 0;
}

  .comment-info .username {
    display: block;
    font-family: Khand;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
    text-align: justify;
    letter-spacing: 0.03em;
    text-transform: capitalize;
    color: var(--theme-color);
  }

.comment-info a.username:hover,
.comment-info a.username:focus {
  color: var(--theme-color);
}

.comment-info .avatar {
  position: relative;
  width: 150px;
  height: 150px;
  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-family: Khand;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #2B2E43;
  text-align: left;
}

  .comment-time span {
    color: #2B2E43;
  }

.comment-title {
  margin: 0 0 15px;
  font-size: 16px;
  color: #000000;
  text-align: left;
}

.comment-body {
  line-height: 22px;
  text-align: left;
}

  .news-list-homepage .title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px;
    padding: 0 0 15px;
    font-family: Philosopher;
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    line-height: 45px;
    text-align: center !important;
    text-transform: uppercase;
    color: var(--theme-color);
  }

.news-list-homepage .title strong {
  font-weight: bold;
  margin: 0 10px;
}

.news-list-homepage .view-all {
  text-align: center;
  margin-bottom: 30px;
}

.news-list-homepage .view-all a {
  color: #444;
  text-decoration: underline;
}

.news-list-homepage .view-all a:hover,
.news-list-homepage .view-all a:focus {
  color: var(--theme-color);
}

/***NEWS & BLOG PLUGIN****/

.blog-news-area {
  position: relative;
  margin-bottom: 75px;
}

  .blog-news-area:before {
    content: "";
    background: url(../images/blog-news-bg.png);
    background-size: cover !important;
    top: 20%;
    height: 80%;
    width: 100%;
    left: 0;
    border-radius: 0px 0px 100px 0px;
    position: absolute;
    pointer-events: none;
    z-index: -10;
  }

.latest-news-container .title,
.latest-blog-container .title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--theme-color);
  font-family: Philosopher;
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  line-height: 45px;
  text-transform: uppercase;
}

.latest-news-container .title {
  margin-top: 80px;
  margin-bottom: 80px;
}

.latest-blog-container .title {
  margin-top: 80px;
  margin-bottom: 30px;
}

.latest-news-container .title h2,
.latest-blog-container .title h2 {
  font-family: Philosopher;
  font-style: normal;
  font-weight: bold;
  font-size: 26px;
  line-height: 45px;
  text-transform: uppercase;
  color: var(--theme-color);
  margin: 0 10px;
}

  .latest-news-container .title i:before,
  .latest-blog-container .title i:before {
    color: var(--theme-color);
  }

  .latest-news-container .picture a,
  .latest-blog-container .picture a {
    position: relative;
    display: block;
  }

    .latest-news-container .picture a:before,
    .latest-blog-container .picture a:before {
      content: "";
      display: block;
      padding-top: 70%;
    }

  .latest-news-container .picture a img,
  .latest-blog-container .picture a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .latest-news-container .news-item:last-child {
    border-radius: 5px 100px 5px 5px;
  }

  .latest-news-container .news-item:first-child img {
    border-radius: 0px 0px 0px 100px;
  }

  .latest-news-container .news-item:last-child img {
    border-radius: 0px 100px 0px 0px;
  }

  .latest-blog-container .blog-item .blog-box-info {
    height: 270px;
    margin-bottom: 50px;
  }

.latest-blog-container .blog-item:first-child img {
  border-radius: 0px 0px 0px 100px;
}

.latest-blog-container .blog-item:last-child img {
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.15));
  border-radius: 0px 0px 100px 0px;
}

  .latest-blog-container .post-title,
  .latest-blog-container .post-date,
  .latest-blog-container .post-body {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }


/*** 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: #444;
}

.forum-search-box .basic {
  overflow: hidden;
  margin: 0 0 10px;
}

.forum-search-box .advanced a {
  line-height: 22px;
  color: #444;
  text-decoration: underline;
}

.forum-search-box .advanced a:hover,
.forum-search-box .advanced a:focus {
  color: var(--theme-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;
}

.forums-table-section-title a:hover,
.forums-table-section-title a:focus {
  color: var(--theme-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: #444;
}

.forums-table-section .forum-title a:hover,
.forums-table-section .forum-title a:focus,
.forums-table-section .topic-title a:hover,
.forums-table-section .topic-title a:focus {
  color: var(--theme-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(--theme-color);
  padding: 10px 15px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
}

.forums-table-section .view-all a:hover,
.forums-table-section .view-all a:focus {
  background-color: var(--theme-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,
.forum-actions .actions a:focus,
.topic-actions .actions a:hover,
.topic-actions .actions a:focus {
  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: #444;
}

.topic-post a.username:hover,
.topic-post a.username:focus {
  color: var(--theme-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: #444;
}

.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,
.topic-post .pm-button:focus,
.profile-info-box .pm-button:hover,
.profile-info-box .pm-button:focus {
  background-color: #999;
}

.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: #444;
}

.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 .edit-post-button:focus,
.topic-post .post-actions .delete-post-button:hover,
.topic-post .post-actions .delete-post-button:focus {
  color: var(--theme-color);
}

.topic-post .post-actions .post-link-button {
  padding: 10px;
  font-weight: bold;
  color: var(--theme-color);
}

.topic-post .post-actions .post-link-button:hover,
.topic-post .post-actions .post-link-button:focus {
  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,
.topic-post .post-actions .quote-post-button:focus {
  background-color: #999;
  color: #fff;
}

.topic-post .post-text {
  /*topic post-text also gets style from blog post-body*/
  padding: 0 10px 20px;
  line-height: 22px;
  color: #444;
  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: 22px; /*reset zeroing*/
  font-weight: normal;
  color: #444;
  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; /*reset zeroing*/
  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,
.forum-edit-page .toolbar .button:focus,
.private-message-send-page .toolbar .button:hover,
.private-message-send-page .toolbar .button:focus {
  border: #333 1px solid;
}

.forum-edit-page textarea,
.private-message-send-page textarea {
  display: block;
  margin: auto;
}

.forum-edit-page .buttons button,
.move-topic-page .buttons button,
.private-messages .buttons button {
  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 button:hover,
.forum-edit-page .buttons button:focus,
.move-topic-page .buttons button:hover,
.move-topic-page .buttons button:focus,
.private-messages .buttons button:hover,
.private-messages .buttons button:focus {
  background-color: #888;
}

.forum-edit-page .buttons .button-1,
.move-topic-page .buttons .button-1,
.private-messages .buttons .button-1 {
  background-color: var(--theme-color);
}

.forum-edit-page .buttons .button-1:hover,
.forum-edit-page .buttons .button-1:focus,
.move-topic-page .buttons .button-1:hover,
.move-topic-page .buttons .button-1:focus,
.private-messages .buttons .button-1:hover,
.private-messages .buttons .button-1:focus {
  background-color: var(--theme-color);
}

.private-message-send-page a {
  font-size: 14px;
  color: var(--theme-color);
}

.private-message-send-page span {
  font-size: 14px;
}

/* jQuery tabs */

.ui-tabs {
  /*override jQuery UI styles, do not delete doubled properties*/
  border: none;
  border-radius: 0;
  background: none;
  padding: 0;
  font: normal 14px Arial, Helvetica, sans-serif;
  color: #777;
}

.ui-widget.ui-widget-content.ui-tabs {
  border: none;
}

.ui-tabs-nav {
  margin: 0 0 30px;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  font-size: 0;
  /*override jQuery UI styles, do not delete doubled properties*/
  margin: 0 0 30px !important;
  border-width: 0 0 1px;
  border-radius: 0;
  background: none;
  padding: 0 !important;
  line-height: normal;
  font-weight: normal;
  color: #444;
}

.ui-tabs-nav li {
  margin: 0 0 -1px;
  /*override jQuery UI styles, do not delete doubled properties*/
  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;
  border: 1px solid #ddd;
  padding: 12px 24px;
  text-align: center;
  font-size: 18px;
  color: #444;
  /*override jQuery UI styles, do not delete doubled properties*/
  float: none !important;
  padding: 12px 24px !important;
}

.ui-tabs-nav li.ui-state-active a {
  background-color: #eee;
  color: var(--theme-color);
}

.ui-tabs-panel {
  /*override jQuery UI styles, do not delete doubled properties*/
  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: #444;
}

.private-messages-page td.subject a.pm-unread {
  color: var(--theme-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; /*reset zeroing*/
}

.private-messages-page .no-items {
  padding: 20px;
  text-align: center;
}

.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: #444;
}

.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;
  /*override jQuery UI styles, do not delete doubled properties*/
  line-height: normal;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  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: #444;
}

.profile-info-box .stats {
  margin: 0 0 15px;
}

.latest-posts {
  /*override jQuery UI styles, do not delete doubled properties*/
  line-height: normal;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  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: #444;
}

.latest-posts .topic-title a:hover,
.latest-posts .topic-title a:focus {
  color: var(--theme-color);
}

.latest-posts .topic-body {
  margin: 0 0 15px;
  line-height: 22px;
}

.latest-posts .topic-data {
  color: #444;
}

/* 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;
  font-family: "Courier New", Courier, monospace;
  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;
}


/*** THEME SHIPPING BUTTONS ***/

.shipping-types-wrapper {
  background-image: url('../images/blog-news-bg.png');
  padding: 20px;
  border-radius: 50px 0 0 0;
  margin-top: 50px !important;
  margin-bottom: 50px !important;
  text-align: left;
}

.shipping-types-wrapper .shipping-type {
  display: inline-block;
  font-family: Khand;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2B2E43;
  width: 100%;
}

  .shipping-types-wrapper .shipping-type .shipping-type-content {
    display: flex;
  }

  .shipping-types-wrapper .shipping-type .shipping-type--info {
    margin: 0 10px;
    text-align: left;
    padding: 10px 0;
  }

  .shipping-types-wrapper .shipping-type .shipping-type--desc {
    height: 20px;
    overflow: hidden;
    margin-top: 10px;
    font-weight: normal;
    text-transform: none;
  }

/*** loader css ***/

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

  .lds-ripple div {
    position: absolute;
    border: 4px solid var(--theme-color);
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }

    .lds-ripple div:nth-child(2) {
      animation-delay: -0.5s;
    }

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}


.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(--theme-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);
  }
}

.carousel-container {
    text-align: center;
}

.page.product-reviews .product-share-button {
  margin-bottom: 10px;
}

.page.product-reviews #pagination-controls {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

  .page.product-reviews #pagination-controls > span:first-child, .page.product-reviews #pagination-controls > span:last-child {
    font-size: 0;
  }

    .page.product-reviews #pagination-controls > span:first-child:before, .page.product-reviews #pagination-controls > span:last-child:before {
      font-family: "icomoon" !important;
      font-weight: 600;
      font-size: 12px;
      display: inline;
      line-height: 1;
      line-height: 30px;
    }

    .page.product-reviews #pagination-controls > span:first-child:before {
      content: "\e90b";
    }

    .page.product-reviews #pagination-controls > span:last-child:before {
      content: "\e915";
    }

  .page.product-reviews #pagination-controls a, .page.product-reviews #pagination-controls span {
    margin: 0 5px;
    text-decoration: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: inline-block;
    background: #fff;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
  }

  .page.product-reviews #pagination-controls span {
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
  }

    .page.product-reviews #pagination-controls span.disabled-Previous, .page.product-reviews #pagination-controls span.disabled-Next {
      border: 1px solid var(--theme-color);
    }

      .page.product-reviews #pagination-controls span.disabled-Previous:hover, .page.product-reviews #pagination-controls span.disabled-Next:hover {
        cursor: default;
      }

  .page.product-reviews #pagination-controls a.disabled {
    color: #fff;
    cursor: default;
    text-decoration: none;
    background: var(--theme-color);
  }
@media all and (min-width: 992px) {
  .product-details-page .product-reviews-page .title {
    text-align: center !important;
  }
}

.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');
}
.shopping-cart-page .common-buttons .continue-shopping-button {
  border: 0;
  background-color: var(--theme-color);
  padding: 10px 15px;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  text-transform: capitalize;
  color: #fff;
  border-radius: 0 3px 3px 0;
}


/********** WISHLIST & COMPARE LIST **********/


.wishlist-page .page-title {
  margin: 0 0 -1px;
}

.wishlist-content {
  margin: 0 0 20px;
}

  .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:hover,
      .wishlist-content .tax-shipping-info a:focus {
        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;
   
  }
 
  
.wishlist-page .share-info {
  text-align: center;
}

  .wishlist-page .share-info span {
    display: block;
    margin: 0 0 5px;
  }

  .wishlist-page .share-info a {
    font-weight: bold;   
  }
    

.wishlist-page .no-data {
  margin: 25px 0 0;
}

.wishlist-buttons-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.add-wishlist-content {
  display: inline-block;
}

  .add-wishlist-content .wishlist-add-custom-button {
    width: auto;
    min-width: 64px;
    min-height: 36px; 
    border: none;
    padding-block: 7px 9px;
    padding-inline: 25px 23px;
    text-align: center;
    line-height: 20px;
    font-size: 15px; 
  }   

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.button-2.custom-wishlist-button {
  width: 132px;
  height: 36px; 
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 12px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  margin-block: 10px;  
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

  .button-2.custom-wishlist-button.add-new {
    background: url(../images/new.png) left center no-repeat;
    padding: 0 0 0 18px;
  }
  
.compare-products-page {
  position: relative;
  overflow: hidden;
}

  .compare-products-page .clear-list {
    display: inline-block;
    margin: 0 0 20px;   
    padding: 10px 15px;
    font-size: 12px;   
    text-transform: uppercase;
  }

  .compare-products-page .table-wrapper {
    margin: 0 0 30px;
    padding: 0 0 1px; /*IE mobile table border fix*/
  }

.compare-products-table td {
  min-width: 150px;
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 20px;
  text-align: left;
  vertical-align: top;
  color: var(--dark-gray-color);
}

  .compare-products-table td:first-child {
    min-width: 0;
  }

  .compare-products-table td label {
    font-weight: normal;
    color: var(--gray-color);
  }

.compare-products-table .specification-group td {
  border: 0;
  padding: 20px 10px 10px 10px;
}

  .compare-products-table .specification-group td label {
    font-size: 16px;
    color: var(--dark-gray-color);
  }

.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: var(--gray-color);
}

  .compare-products-table .remove-button:hover,
  .compare-products-table .remove-button:focus {
    color: var(--accent-blue-active-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,
  .compare-products-table .product-name td a:focus {
    color: var(--accent-blue-active-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;
}

/*order filter */

.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: 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;
}


/* 1. Main Menu Style Starts */

.menu {
  font-size: 15px;
  overflow: hidden;
}

.menu__toggle {
  display: block;
  width: 100%;
  background: #2196F3 url(../images/menu-icon.png) right center no-repeat;
  padding: 15px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}

.menu__item {
  width: 100%;
  display: inline-block;
  margin-block: 1px;
  color: #444444;
  background-color: #fff;
  border-right: none;
}

.menu > .menu__item {
  background-color: #f6f6f6;
}

.menu__item:not(.menu-dropdown) {
  padding: 18px;
}

.menu__item-toggle {
  display: flex;
  border: none;
  background-color: transparent;
  line-height: 20px;
  color: #444444;
  -webkit-appearance: none;
  width: 100%;
  justify-content: space-between;
  cursor: pointer;
  padding: 18px;
}

  .menu__item-toggle::after {
    content: "";
    background: url(../images/toggle-black.png) center no-repeat;
    padding: 12px;
    cursor: pointer;
  }

.menu__grid-view, .menu__list-view {
  position: relative;
  padding: 0;
  background-color: #fff;
  overflow: hidden;
}

.menu__group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
  flex-flow: wrap;
}

.menu__group-title {
  font-size: 18px;
  padding: 10px;
}

.menu-dropdown {
  display: grid;
  grid-template-rows: min-content 0fr;
  transition: grid-template-rows .3s ease;
}

.menu-dropdown--active {
  grid-template-rows: min-content 1fr;
}

.menu__image-link {
  display: inline-block;
  text-align: center;
  height: 100%;
  width: fit-content;
  text-decoration: none;
}

.menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 20px;
  color: #444444;
  cursor: pointer;
  text-align: left;
  position: relative;
  text-decoration: none;
}

.menu__group > .menu__link {
  display: none;
}


.menu__image {
  width: 100%;
}

.menu__item .menu__item .menu__link::before, .menu__group .menu__link::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #ddd;
}

@media (max-width: 767px) {
  .menu {
    max-height: calc(100vh - 75px);
    overflow: auto;
  }
}

@media (min-width: 768px) {
  .menu__grid-view .menu__group > .menu__link {
    display: block;
  }

  .menu__grid-view .menu__group .menu__image-link {
    align-items: flex-start;
  }

  .menu__grid-view .menu__group h4 {
    margin-bottom: 0;
  }

  .menu-container {
    padding: 20px;
    position: relative;
    width: 100%;
  }

  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 18px
  }

  .menu__toggle {
    display: none;
  }

  .menu-dropdown {
    display: inline-block;
  }

  .menu > .menu__item {
    padding-inline: 20px;
    padding-block: 0px;
    background: none;
    color: #fff;
  }


    .menu > .menu__item:not(:last-child) {
      border-right: 1px solid #ddd;
    }

  .menu__item {
    display: inline-block;
    width: fit-content;
    padding: 0;
  }

  .menu__item-toggle {
    display: inline-block;
    border: none;
    background-color: transparent;
    padding: 0;
    line-height: 20px;
    color: #444444;
    cursor: pointer;
    -webkit-appearance: none;
  }

    .menu__item-toggle::after {
      display: none;
    }

  .menu__grid-view {
    position: absolute;
    left: 0;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 2px rgba(0, 0, 0, .2);
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    border-radius: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 14px;
  }

  .menu__list-view {
    position: absolute;
    min-width: 200px;
    max-width: 300px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    background-color: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, .2);
    padding: 10px 0;
    border-radius: 2px;
    font-size: 14px;
    overflow: visible;
  }

    .menu__list-view .menu__list-view {
      top: -10px;
      left: 100%;
    }

  .menu__row-braker {
    width: 100%
  }

  .menu__list-view .menu__item {
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    padding: 0 10px;
  }

  .menu__item:focus-within > .menu__grid-view,
  .menu__item:hover .menu__grid-view {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu__item:focus-within > .menu__list-view,
  .menu__item:hover > .menu__list-view {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .menu__group {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: fit-content;
  }

  .menu__group-title {
    display: inline-block;
    padding-block: 10px;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
  }

  .menu__image {
    display: inline-block;
    object-fit: cover;
    border-radius: 3px;
    max-width: 100%;
  }

  .menu__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    line-height: 20px;
    color: #444444;
    cursor: pointer;
    text-align: left;
    position: relative;
    text-decoration: none;
  }

  .menu__image-link {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu__link--inactive {
    pointer-events: none;
    cursor: default;
  }

  .menu__list-view .menu__link:hover {
    background-color: #f6f6f6;
  }

  .menu__item .menu__item .menu__link::before, .menu__group .menu__link::before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: #ddd;
  }

  .menu__item:hover > .menu__item-toggle,
  .menu__link:hover {
    color: #1976D2;
  }

  .menu__grid-view .menu__link, .menu__list-view .menu__link {
    color: #666;
  }
}

/* 1. Main Menu Style Ends */

/* 2. Footer Menu Style Starts */

@media(min-width: 992px) {
  .footer .footer-navigation {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 75%;
  }
}

/* 2. Footer Menu Style Ends */

/* 3. YMM Style Starts */

form[action="/search-ymm"] {
  width: 100%;
  margin: 40px auto;
  color: #000000;
}

  form[action="/search-ymm"] .form-fields {
    max-width: 800px;
    margin-inline: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 30px 20px;
    background: #FFFFFF;
  }

.page-title {
  text-align: center;
  margin-bottom: 25px;
}

  .page-title h1 {
    font-size: 1.8rem;
    color: #6D5DFC;
    font-weight: 600;
  }

form[action="/search-ymm"] .advanced-search {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.inputs {
  display: flex;
  flex-direction: column;
}

  .inputs label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #555555;
  }

.filter-level-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  background: #F5F5F5;
  font-size: 1rem;
  transition: border-color 0.3s, background 0.3s;
}

  .filter-level-select:focus {
    outline: none;
    border-color: #6D5DFC;
    background: #FFFFFF;
  }

.please-wait {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #FFC107;
  font-style: italic;
}

.buttons {
  text-align: center;
}

.search-button-flv {
  background: #6D5DFC;
  color: #FFFFFF;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

  .search-button-flv:hover:enabled {
    background: #FFC107;
    transform: translateY(-2px);
  }

  .search-button-flv:disabled {
    background: #E0E0E0;
    color: #757575;
    cursor: not-allowed;
    opacity: 0.5;
  }

@media (max-width: 600px) {
  form[action="/search-ymm"] {
    padding: 20px 15px;
  }

  .page-title h1 {
    font-size: 1.5rem;
  }

  .search-button-flv {
    width: 100%;
  }
}

/* 3. YMM Style Ends */
