/***** CSS RESET *****/
* {
  margin: 0;
  outline: none;
  padding: 0;
  text-decoration: none;
}

  *, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

    *, *::before, *::after {
      box-sizing: border-box;
    }

html {
  margin: 0;
  -webkit-text-size-adjust: none;
}

ol, ul {
  list-style: none;
}

a {
  transition: all 0.2s;
}

  a:active {
    outline: none;
  }

  a:hover {
    color: #B4B3C1;
    text-decoration: none;
  }

  a img {
    border: none;
  }

img {
  border: none;
  max-width: 100%;
}

input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  margin: 0;
  border: 0;
  padding: 0;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  border-radius: 0;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}

script {
  display: none !important;
}
/***** GLOBAL STYLES *****/

body {
  max-width: 100%;
  overflow-x: hidden;
  background-color: #EFF8FF;
  font-family: 'Lato';
  font-weight: normal;
  color: #223668;
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
  font-family: 'Lato';
}

h1, h2, h3, h4, h5, h6 {
  color: #223668;
}

a {
  color: inherit;
  cursor: pointer;
}

  a img {
    opacity: 0.99; /*firefox scale bug fix*/
  }

table {
  width: 100%;
  border-collapse: collapse;
}

/***** PAGES & BLOCKS *****/
.center-2, .side-2 {
  margin: 0 0 50px;
}

.side-2 {
  border: 1px solid #E0E1E6;
  border-radius: 3px;
  box-shadow: 0px 0px 5px rgba(134, 134, 134, 0.25);
}

.page-body {
  margin: 0 0 70px;
}

.page-title {
  padding: 20px 0 10px;
  text-transform: uppercase;
}

  .page-title h1 {
    font-weight: bold;
    font-size: 20px;
  }

.center-2 .page-title {
  padding-top: 0;
}

.topic-block-title h2 {
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-weight: 800;
  font-size: 20px;
  border-bottom: 1px solid #BFBFBF;
}

.block {
  border-bottom: 1px solid #E5E5E5;
}

  .block .title {
    color: #0A0636;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
  }

    .block .title i {
      color: #223668;
      font-size: 12px;
    }

  .block .list li,
  .block .listbox > li {
    font-weight: 500;
    font-size: 15px;
  }

    .block .list li:not(:last-child),
    .block .listbox > li:not(:last-child) {
      margin-bottom: 7px;
    }

    .block .list li.active.last {
      font-weight: 800;
    }

    .block .list li .sublist {
      margin: 7px 0 0 15px;
    }

  .block .view-all {
    padding-top: 10px;
    font-weight: bold;
    font-size: 14px;
    text-transform: capitalize;
  }

/***** GLOBAL *****/
.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.master-wrapper-page {
  max-width: 100vw;
  overflow: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.list-inline > li {
  display: inline-block;
}

  .list-inline > li:not(:last-child) {
    margin-right: 10px;
  }

.dropdown-menu {
  position: relative;
}

  .dropdown-menu .submenu {
    clip: rect(1px, 1px, 1px, 1px);
    opacity: 0.1;
    -webkit-transition: opacity 0.2s cubic-bezier(0.2, 0, 0.2, 1), -webkit-transform 0.1s cubic-bezier(0.2, 0, 0.2, 1);
    transition: opacity 0.2s cubic-bezier(0.2, 0, 0.2, 1), -webkit-transform 0.1s cubic-bezier(0.2, 0, 0.2, 1);
    transition: transform 0.1s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.2, 0, 0.2, 1);
    transition: transform 0.1s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.2, 0, 0.2, 1), -webkit-transform 0.1s cubic-bezier(0.2, 0, 0.2, 1);
    -webkit-transform: translateY(-10px) scaleY(0.5);
    transform: translateY(-10px) scaleY(0.5);
    -webkit-transform-origin: top;
    transform-origin: top;
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 120px;
    background: #fff;
    box-shadow: 0px 2px 10px #878D9E;
    border-radius: 5px;
    text-transform: capitalize;
    z-index: 5;
  }

  .dropdown-menu > li {
    position: relative;
    display: inline-block;
  }

    .dropdown-menu > li > a {
      padding-bottom: 10px;
    }

  .dropdown-menu:hover::before {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 4;
    background: transparent;
  }

  .dropdown-menu > li:hover > .submenu,
  .dropdown-menu:hover > .submenu {
    clip: auto;
    opacity: 1;
    -webkit-transform: translateY(0) scaleY(1);
    transform: translateY(0) scaleY(1);
    z-index: 102;
  }

  .dropdown-menu > li > .submenu::after {
    content: "";
    position: absolute;
    top: -8px;
    right: 7px;
    font-size: 12px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    filter: drop-shadow(1px -1px 1px rgba(0,0,0,.25));
  }

  #megamenu-header-link-list > li > .mm-dropdown::before,
  .dropdown-menu > li > .submenu::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    bottom: 100%;
    left: 0;
    background: rgba(0,0,0,0);
    height: 12px;
    width: 100%;
  }

  .dropdown-menu .submenu .togle-icon {
    width: 100%;
    height: 15px;
    position: absolute;
    top: -15px;
    right: 0;
    overflow: hidden;
  }

    .dropdown-menu .submenu .togle-icon:after {
      content: "";
      position: absolute;
      width: 30px;
      height: 30px;
      background: #fff;
      transform: rotate(45deg);
      top: 12px;
      right: 1px;
      box-shadow: -1px -1px 10px -2px #878D9E;
    }

  .dropdown-menu .submenu > li:not(.togle-icon) > a {
    display: block;
    padding: 7px 10px;
  }

.block-gradient {
  padding: 30px 35px 0;
  color: #0A0636;
  background: linear-gradient(180deg, #312ABF 0%, #24366D 100%);
  border-radius: 5px;
}

  .block-gradient.dark {
    background: #0A0636;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }

  .block-gradient .title {
    margin-bottom: 20px;
    padding: 0 0 15px;
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
    border-bottom: 1px solid #466DCE;
  }

    .block-gradient .title.text-center {
      padding-bottom: 0;
      border: 0;
    }

  .block-gradient h1, .block-gradient h2, .block-gradient h3, .block-gradient h4, .block-gradient h5, .block-gradient h6 {
    color: #0A0636;
  }

  .block-gradient .title i {
    margin-right: 5px;
    font-size: 18px;
  }

  .block-gradient .buttons,
  .block-gradient .block-footer {
    margin: 35px -35px 0;
    padding: 30px 20px;
    background: #fff;
    color: #223668;
    border-radius: 50px 50px 0px 0px;
  }

    .block-gradient .block-footer ul li {
      color: #223668;
    }

    .block-gradient .block-gradient-list > li:not(:last-child),
    .block-gradient .block-footer ul > li:not(:last-child) {
      margin-bottom: 10px;
    }

    .block-gradient .block-footer ul > li.active {
      color: #0A0636;
    }

.breadcrumb ul > li {
  display: inline-block;
  font-weight: 600;
}

  .breadcrumb ul > li a {
    color: #B4B3C1;
  }

  .breadcrumb ul > li .delimiter {
    display: inline-block;
    margin: 0 5px 0 3px;
  }

  .breadcrumb ul > li strong {
    color: #0A0636;
    font-weight: bold;
  }

.ocarousel.item-grid .owl-nav button.owl-prev,
.ocarousel.item-grid .owl-nav button.owl-next {
  width: 35px;
  height: 35px;
  background: #ffffff;
  color: #0A0636;
  font-size: 12px;
  border-color: #0A0636;
  border-radius: 4px;
  line-height: 35px;
}

  .ocarousel.item-grid .owl-nav button.owl-prev:hover,
  .ocarousel.item-grid .owl-nav button.owl-prev:focus,
  .ocarousel.item-grid .owl-nav button.owl-next:hover,
  .ocarousel.item-grid .owl-nav button.owl-next:focus {
    background: #0A0636;
    color: #fff;
    outline-color: #0A0636;
  }

.pager {
  margin-top: 30px;
  text-align: center;
}

  .pager ul > li {
    display: inline-block;
  }

    .pager ul > li:not(:last-child) {
      margin-right: 10px;
    }

    .pager ul > li > a, .pager ul > li > span {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      background: #fff;
      padding: 10px 15px;
      box-shadow: 2px 2px 2px 1px rgba(197, 212, 225, 0.4);
    }

    .pager ul > li.current-page > a,
    .pager ul > li.current-page > span {
      background: #0A0636;
      color: #fff;
      border-color: #0A0636;
      border-radius: 3px;
    }

    .pager ul > li.previous-page > a,
    .pager ul > li.next-page > a {
      text-transform: uppercase;
      border: 0;
    }

.title-container {
  margin-bottom: 35px;
}

  .title-container .title {
    color: #0A0636;
    text-align: left;
  }

.pd-title, .manufacturer-carousel .title,
.blog-news-area .title,
.latest-news-container .title {
  position: relative;
}

  .pd-title::after,
  .manufacturer-carousel .title::after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0.3%;
    width: calc(100% + -7px);
    border-top: 1px dashed #0A0636;
    letter-spacing: 13px;
  }

.title-container .title h2 {
  margin: 0 12px 13px 0;
  color: #0A0636;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Playfair Display';
}

.ui-widget {
  font-family: 'Lato';
  font-weight: normal;
}

.title-container .title i {
  color: #0A0636;
  font-size: 27px;
}

.selected-price-range {
  margin-bottom: 10px;
}

.title-container .subtitle {
  padding-top: 3px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
  display: none;
}

  .title-container .subtitle a {
    text-decoration: underline;
  }

/****header link****/
.header-links > ul > li > a,
.header-links .dropdown-menu > a {
  box-shadow: 0px 2px 3px 1px #C5D4E1;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 50%;
  vertical-align: middle;
  /* height: 45px; */
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
}

.ico-logout .icon-user {
  margin-right: 10px;
}

.header-links > ul > li ~ li > a {
  height: 45px;
  width: 45px;
}

.header-links .dropdown-menu:hover .submenu {
  display: block;
}

.header-links .dropdown-menu > a {
  border-radius: 30px;
}

  .header-links .dropdown-menu > a i {
    vertical-align: middle;
  }
/***** HEADER *****/
.top-menu.notmobile .sublist {
  display: none;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  box-shadow: 1px 1px 10px #000;
}

.top-menu.notmobile li {
  position: relative;
}

.top-menu.notmobile > li a {
  padding: 10px 15px;
  display: block;
}

.top-menu.notmobile li:hover > .sublist {
  display: block;
}

.menu-toggle {
  font-size: 18px;
  font-weight: bold;
}

.top-menu.mobile {
  display: none;
}

  .top-menu.mobile .sublist {
    display: none;
  }

/*header search style */
.search-box__wrapper {
  position: relative;
}

  .search-box__wrapper input[type="text"].search-box-text {
    padding-left: 25%;
  }

  .search-box__wrapper .quickSearch {
    position: absolute;
    top: 50%;
    left: 8px;
    height: calc(100% - 10px);
    border: none;
    max-width: 20%;
    transform: translate(3px, -50%);
    border-radius: 50% 0 0 50%;
    border-right: 1px solid #333;
  }
/***** TABLE *****/
.wishlist-page {
  margin: 40px 0;
}

  .wishlist-page .table-wrapper,
  .shopping-cart-page .table-wrapper {
    background: #fff;
    margin-bottom: 0;
  }

.table-wrapper {
  margin: 10px 0 40px;
  padding: 0 0 1px;
  overflow-x: auto;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: inherit;
  border-collapse: collapse;
}

  .table td, .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
  }

  .table th {
    text-align: inherit;
  }

  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
  }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0,0,0,.05);
}

.table-bordered {
  border: 1px solid #dee2e6;
}

  .table-bordered td, .table-bordered th {
    border: 1px solid #dee2e6;
  }

  .table-bordered thead td, .table-bordered thead th {
    border-bottom-width: 2px;
  }

/***** HEADER *****/
.top-menu.notmobile .sublist {
  display: none;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  box-shadow: 1px 1px 10px #000;
}

.top-menu.notmobile li {
  position: relative;
}

.top-menu.notmobile > li a {
  padding: 10px 15px;
  display: block;
}

.top-menu.notmobile li:hover > .sublist {
  display: block;
}

.menu-toggle {
  font-size: 18px;
  font-weight: bold;
}

.top-menu.mobile {
  display: none;
}

  .top-menu.mobile .sublist {
    display: none;
  }

/*header search style */
.search-box__wrapper {
  position: relative;
}

  .search-box__wrapper input[type="text"].search-box-text {
    padding-left: 125px;
  }

  .search-box__wrapper .quickSearch {
    position: absolute;
    top: 50%;
    left: 8px;
    height: calc(100% - 10px);
    border: none;
    width: 110px;
    transform: translate(3px, -50%);
    border-radius: 50% 0 0 50%;
    border-right: 1px solid #333;
  }

/***** FORMS *****/
.inputs {
  position: relative;
  margin-bottom: 1rem;
}

  .inputs label {
    display: inline-block;
    margin-bottom: .7rem;
    font-size: 16px;
  }

.validation-summary-errors {
  padding: 0 0 10px;
  color: #E50000;
}

.login-page .validation-summary-errors {
  text-align: left;
  font-weight: bold;
}

  .login-page .validation-summary-errors ul {
    font-weight: normal;
    margin: 10px;
  }

    .login-page .validation-summary-errors ul li::before {
      content: "\e916";
      display: inline-flex;
      font-family: 'icomoon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      margin-right: 10px;
      font-size: 10px;
      background: red;
      color: #fff;
      height: 20px;
      width: 20px;
      border-radius: 50%;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      justify-content: center;
      align-items: center;
      margin-bottom: 10px;
    }

.inputs .required {
  position: absolute;
  top: 15px;
  right: 0;
  color: #E50000;
}

.inputs .field-validation-error {
  display: block;
  padding: 3px 0 0;
  color: #E50000;
  font-size: 14px;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.inputs ::-webkit-input-placeholder {
  color: #fff;
  -webkit-transition: color 0.3s;
}

.inputs ::placeholder {
  color: #fff;
  transition: color 0.3s;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input.form-control,
textarea,
textarea.form-control {
  min-height: 40px;
  padding: 6px 0;
  background: transparent;
  color: #000;
  font-size: 14px;
  line-height: 2.5;
  border: 0;
  border-bottom: 1px solid #B3C2CE;
}

  input[type="text"].default,
  input[type="email"].default,
  input[type="tel"].default,
  input[type="password"].default,
  textarea.default {
    padding: 6px 10px;
    background: #fff;
    color: #223668;
    line-height: 1.5;
    border: 1px solid #223668;
    border-radius: 3px;
  }

  textarea,
  textarea.form-control {
    overflow: hidden;
  }

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

  .input-group > .form-control {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
  }

    .input-group > .select:not(:last-child),
    .input-group > .form-control:not(:last-child) {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }

.input-group-append, .input-group-prepend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input-group-append {
  margin-left: -1px;
}

input[type="text"].default::-webkit-input-placeholder,
input[type="text"].default::placeholder,
input[type="email"].default::-webkit-input-placeholder,
input[type="email"].default::placeholder,
input[type="tel"].default::-webkit-input-placeholder,
input[type="tel"].default::placeholder,
input[type="password"].default::-webkit-input-placeholder,
input[type="password"].default::placeholder,
textarea.default::-webkit-input-placeholder,
textarea.default::placeholder {
  color: #223668;
}

input[type="text"]:focus::-webkit-input-placeholder,
input[type="text"]:focus::placeholder,
input[type="email"]:focus::-webkit-input-placeholder,
input[type="email"]:focus::placeholder,
input[type="tel"]:focus::-webkit-input-placeholder,
input[type="tel"]:focus::placeholder,
input[type="password"]:focus::-webkit-input-placeholder,
input[type="password"]:focus::placeholder,
textarea:focus::-webkit-input-placeholder,
textarea:focus::placeholder,
input[type="text"].default:focus::-webkit-input-placeholder,
input[type="text"].default:focus::placeholder,
input[type="email"].default:focus::-webkit-input-placeholder,
input[type="email"].default:focus::placeholder,
input[type="tel"].default::-webkit-input-placeholder,
input[type="tel"].default:focus::placeholder,
input[type="password"].default:focus::-webkit-input-placeholder,
input[type="password"].default:focus::placeholder,
textarea.default:focus::-webkit-input-placeholder,
textarea.default:focus::placeholder {
  color: transparent;
}

.select,
.select-wrapper select {
  display: inline-block;
  width: 100%;
  height: 40px;
  padding: 7px 30px 7px 15px;
  vertical-align: middle;
  background: #fff url(../images/arrow-down-light.svg) no-repeat right 5px center/13px 9px;
  color: #223668;
  font-size: 14px;
  border: none;
  border-radius: 100px;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.quickSearch {
  padding: 0 5px !important;
  min-width: 100px !important;
}

.select.w-auto,
.select-wrapper.w-auto select {
  width: auto;
}

select {
  padding: 7px 30px 7px 15px;
  color: #223668;
  border: 1px solid #B3C2CE;
  border-radius: 3px;
}


.inputs .select,
.inputs.select-wrapper select {
  padding: 7px 30px 7px 15px;
  background: transparent url(../images/arrow-down-lighter.svg) no-repeat right .75rem center/9px 9px;
  color: #223668;
  border: 1px solid #B3C2CE;
  border-radius: 3px;
}

  .inputs .select option,
  .inputs.select-wrapper select option {
    color: #223668;
  }

.select.dark,
.select-wrapper.dark select {
  color: #223668;
  border: 1px solid #223668;
}

.date-picker-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

  .date-picker-wrapper select:not(:last-child) {
    margin-right: 15px;
  }

.checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

  .checkbox [type="checkbox"]:not(:checked),
  .checkbox [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
  }

  .checkbox [type="checkbox"] ~ label:before,
  .checkbox [type="checkbox"] ~ label:after {
    position: absolute;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 23px;
    height: 23px;
  }

  .checkbox [type="checkbox"]:not(:checked) ~ label,
  .checkbox [type="checkbox"]:checked ~ label {
    position: relative;
    min-height: 23px;
    margin-right: 10px;
    margin-bottom: 0;
    padding-left: 2.3em;
    font-size: 14px;
    line-height: 22px;
    cursor: pointer;
  }

    .checkbox [type="checkbox"]:not(:checked) ~ label:before,
    .checkbox [type="checkbox"]:checked ~ label:before {
      content: '';
      top: 0;
      margin: 0;
      border: 1px solid #466DCE;
      background: transparent;
      border-radius: 3px;
      box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
    }

    .checkbox [type="checkbox"]:checked ~ label:before {
      background: transparent;
    }

    .checkbox [type="checkbox"]:not(:checked) ~ label:after,
    .checkbox [type="checkbox"]:checked ~ label:after {
      content: "\e918";
      top: 5px;
      margin: 0 1px;
      border: 0;
      font-size: 12px;
      font-weight: bold;
      line-height: 0.8;
      color: #4365CB;
      font-family: 'icomoon';
      transition: all .2s;
    }
    /*.html-shopping-cart-page .checkbox [type="checkbox"]:not(:checked) ~ label:after,
.html-shopping-cart-page .checkbox [type="checkbox"]:checked ~ label:after {
  top: 0;
}*/
    /*.html-search-page .checkbox [type="checkbox"]:not(:checked) ~ label::after,
.html-search-page .checkbox [type="checkbox"]:checked ~ label::after {
  margin: 27px 1px;
}*/
    .checkbox [type="checkbox"]:not(:checked) ~ label:after {
      opacity: 0;
      transform: scale(0);
    }

    .checkbox [type="checkbox"]:checked ~ label:after {
      background: transparent;
      opacity: 1;
      transform: scale(1);
    }

  .checkbox [type="checkbox"]:disabled:not(:checked) ~ label:before,
  .checkbox [type="checkbox"]:disabled:checked ~ label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #d9d9d9;
  }

  .checkbox [type="checkbox"]:disabled:checked ~ label:after {
    color: #999;
  }

  .checkbox [type="checkbox"]:disabled ~ label {
    color: #aaa;
  }

  .checkbox.dark [type="checkbox"]:not(:checked) ~ label:before,
  .checkbox.dark [type="checkbox"]:checked ~ label:before {
    border: 1px solid #223668;
  }

  .checkbox.dark [type="checkbox"]:not(:checked) ~ label:after,
  .checkbox.dark [type="checkbox"]:checked ~ label:after {
    color: #223668;
  }

  .checkbox.no-label [type="checkbox"]:not(:checked) ~ label,
  .checkbox.no-label [type="checkbox"]:checked ~ label {
    display: block;
    text-indent: -9000px;
  }

    .checkbox.no-label [type="checkbox"]:not(:checked) ~ label:after,
    .checkbox.no-label [type="checkbox"]:checked ~ label:after {
      -webkit-transition: none;
      -o-transition: none;
      transition: none;
    }

    .checkbox.no-label [type="checkbox"]:checked ~ label:after {
      text-indent: initial;
    }

.radio input[type="radio"] {
  display: none;
}

  .radio input[type="radio"] + label {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 23px;
    margin-right: 15px;
    margin-bottom: 0;
    padding-left: 2.2em;
    font-size: 14px;
    cursor: pointer;
    line-height: 1em;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

    .radio input[type="radio"] + label:before,
    .radio input[type="radio"] + label:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 23px;
      height: 23px;
      margin: 0;
      text-align: center;
      color: #fff;
      border-color: #dfe6e9;
      border-radius: 50%;
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
    }

    .radio input[type="radio"] + label:before {
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
      box-shadow: inset 0 0 0 0.2em #fff, inset 0 0 0 1em #fff;
    }

    .radio input[type="radio"] + label:hover:before {
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
      box-shadow: inset 0 0 0 0.3em #fff, inset 0 0 0 1em #dfe6e9;
    }

  .radio input[type="radio"]:checked + label:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    box-shadow: inset 0 0 0 0.22em #fff, inset 0 0 0 1em #4365CB;
  }

.input-group-quantity {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 200px;
  z-index: 0;
}

  .input-group-quantity .button-container {
    position: absolute;
    top: 50%;
    right: 0;
    overflow: hidden;
    background: #DADAE4;
    border: 1px solid #DADAE4;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .input-group-quantity input {
    width: 100%;
    min-height: 40px;
    margin: 0;
    padding-left: 42px;
    color: #8F8E8E;
    font-size: 15px;
    border-color: #DADAE4;
    border-radius: 0;
  }

  .input-group-quantity .button-container button {
    display: block;
    width: 20px;
    height: 18px;
    margin-bottom: 1px;
    padding: 0;
    background: #EBEBF0 !important;
    color: #8E8E99;
    font-size: 18px;
    line-height: 18px;
    border: none;
    cursor: pointer;
    outline: 0;
  }

    .input-group-quantity .button-container button:last-child {
      margin-bottom: 0;
    }

/***** BUTTONS *****/
.button-1 {
  padding: 10px 30px;
  background: #0A0636;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border: 0;
  border-radius: 3px !important;
  box-shadow: none;
  outline: 0;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s;
  font-family: 'Lato';
}

  .button-1:hover,
  .button-1:focus {
    color: #fff;
    opacity: 0.8;
    box-shadow: none;
    outline: 0;
  }

.button-2 {
  padding: 11px;
  font-size: 18px;
  border: 1px solid #0A0636;
  box-shadow: none;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s;
  background: #0A0636;
  color: #fff;
  border-radius: 3px;
}

  .button-2.btn-sm {
    padding: 6px 25px;
    font-size: 15px;
  }

  .button-2:hover,
  .button-2:focus {
    background: #0A0636;
    color: #fff;
    box-shadow: none;
    outline: 0;
  }

/***** CUSTOM SCROLLBAR *****/
.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

  .scroll-wrapper.scb-xs.scb-outer {
    margin: 0 -5px 0 0;
    padding: 0 5px 0 0 !important;
  }

  .scroll-wrapper > .scroll-content {
    border: none !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important;
  }

    .scroll-wrapper > .scroll-content::-webkit-scrollbar {
      height: 0;
      width: 0;
    }

.scroll-element {
  display: none;
}

  .scroll-element, .scroll-element div {
    box-sizing: content-box;
  }

    .scroll-element.scroll-x.scroll-scrollx_visible,
    .scroll-element.scroll-y.scroll-scrolly_visible {
      display: block;
    }

    .scroll-element .scroll-bar,
    .scroll-element .scroll-arrow {
      cursor: default;
    }

.scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999;
}

  .scroll-textarea > .scroll-content {
    overflow: hidden !important;
  }

    .scroll-textarea > .scroll-content > textarea {
      border: none !important;
      box-sizing: border-box;
      height: 100% !important;
      margin: 0;
      max-height: none !important;
      max-width: none !important;
      overflow: scroll !important;
      outline: none;
      padding: 2px;
      position: relative !important;
      top: 0;
      width: 100% !important;
    }

      .scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
        height: 0;
        width: 0;
      }

.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

  .scrollbar-inner > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
  }

  .scrollbar-inner > .scroll-element.scroll-x {
    bottom: 2px;
    height: 8px;
    left: 0;
    width: 100%;
  }

.scrollbar-inner.scb-lg > .scroll-element.scroll-x {
  height: 11px;
}

.scrollbar-inner.scb-sm > .scroll-element.scroll-x {
  height: 5px;
}

.scrollbar-inner.scb-xs > .scroll-element.scroll-x {
  height: 3px;
}

.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  right: 0;
  top: 0;
  width: 6px;
}

.scrollbar-inner.scb-lg > .scroll-element.scroll-y {
  width: 11px;
}

.scrollbar-inner.scb-sm > .scroll-element.scroll-y {
  width: 5px;
}

.scrollbar-inner.scb-xs > .scroll-element.scroll-y {
  width: 3px;
}

.scrollbar-inner > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}

.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  opacity: 0.8;
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  width: 3px;
  left: 1.5px;
  background-color: #D6D8DE;
}

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #223668;
  transition: background-color 0.3s;
}

.scrollbar-inner:hover > .scroll-element .scroll-bar {
  background-color: #223668;
  opacity: 1;
}

.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #223668;
  opacity: 1;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -12px;
}

/***** HEADER *****/
.admin-header-links {
  padding: 5px;
  background-color: #eee;
  text-align: center;
}

.header-banner {
  position: relative;
  overflow: hidden;
  height: 0;
  background: linear-gradient(90deg, #4A42EB -0.33%, #223668 100%);
  color: #fff;
}

.header-banner__text {
  width: calc(100% - 15px);
  text-align: center;
}

.header-banner__icon i {
  cursor: pointer;
}

.header-upper {
  min-height: 40px;
  background: #FFFFFF;
}

.header-upper__middle {
  text-align: center;
}

.header-upper__right {
  text-align: right;
}

.header-logo img {
  max-width: 250px;
}

.header-logo-cat .mm-navbar-nav {
  display: none;
}

.header-logo-cat .dropdown-menu-list > a {
  font-size: 0;
}

.header-logo-cat .dropdown-menu-list i {
  margin-right: 5px;
  font-size: 22px;
}

.search-box__wrapper {
  position: relative;
}

input[type="text"].search-box-text {
  width: 100%;
  height: 50px;
  padding: 0 45px 0 20px;
  background: #fff;
  color: #223668;
  font-size: 18px;
  font-weight: 300;
  outline: 0;
  transition: border-color .5s;
  border: 1.5px solid #223668;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
}

.search-box-button {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 40px;
  min-height: 50px;
  padding: 0;
  background-color: transparent;
  border: none;
  color: #0A0636;
  font-size: 25px;
  cursor: pointer;
}

.ico-cart {
  position: relative;
  bottom: -3px;
}

.header-links li,
.header-links a {
  position: relative;
}

.header-links .dropdown-menu > li > a {
  border-radius: 20px;
}

  .header-links .dropdown-menu > li > a .icon-user {
    vertical-align: middle;
  }

.wishlist-qty, .cart-qty {
  position: absolute;
  bottom: 50%;
  left: 50%;
  font-size: 10px;
  background: #000;
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 50%;
  height: 20px;
  width: 20px;
}

.wishlist-qty {
  display: none;
}

.header-links .list-inline > li:not(:last-child) {
  margin-right: 12px;
}

.header-links .list-inline > li:first-child {
  margin-right: 8px;
}

.header-links [class*="icon-"] {
  color: #0A0636;
  font-size: 24px;
}

.header-links [class*="icon-cart"] {
  font-size: 24px;
}

.header-menu .other-links > li {
  margin-right: 15px;
  text-transform: uppercase;
}

  .header-menu .other-links > li:last-child {
    margin-right: 0;
  }

.header-menu .other-links .dropdown-menu .submenu {
  min-width: 150px;
  color: #223668;
}

.header-lower.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 50px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 5px rgba(0,0,0,.1);
  box-shadow: 0 3px 5px rgba(0,0,0,.1);
  animation: smoothScroll .5s forwards;
  z-index: 9999;
}

  .header-lower.sticky .header-logo-cat .mm-navbar-nav {
    display: block;
  }

/***** FOOTER *****/
.footer {
  /*background-image: url('../images/footer-bg.svg');*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  background-color: #0A0636;
  color: white;
}

.footer-block {
  font-size: 16px;
  margin-left: 120px;
  margin-top: 100px;
  margin-bottom: 100px;
  line-height: 1.5;
}

  .footer-block .title {
    padding-bottom: 20px;
    text-transform: uppercase;
  }

  .footer-block .list > li:not(:last-child) {
    margin-bottom: 5px;
  }

.newsletter .title {
  padding-bottom: 1rem !important;
}

.social .title {
  font-size: 24px;
  text-transform: none;
}

.follow-us {
  margin: 10% 0 0 1%;
  text-align: center;
}

.follow-us-li {
  margin-left: 30px;
}

.footer .networks {
  color: #000000;
  font-size: 22px;
}

.social-Bar-Right {
  border-left: 2px solid #000000;
  height: 26px;
  position: absolute;
  /* left: 80%;*/
  margin-left: 10px;
}


.footer-logo-wrapper {
  /* background-image: url('../images/footer-img.svg');*/
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
}

.footer-logo {
  max-width: 50%;
  padding: 52% 0 0 0;
  margin-left: 29%;
}

  .footer-logo img {
    max-width: 100%;
  }

.footer .newsletter {
  padding: 130px 6% 4% 6%;
  /* margin-top: 152px;*/
  margin-bottom: 25px;
}

.newsletter .title {
  font-size: 18px;
  color: #0A0636;
  text-align: center;
}

.newsletter-email {
  position: relative;
}

input[type="email"].newsletter-subscribe-text {
  width: 100%;
  height: 43px;
  padding: 0 45px 0 20px;
  background: #fff;
  color: #223668;
  font-size: 16px;
  font-weight: 300;
  outline: 0;
  border: 2px solid #0A0636;
  /*border-radius: 5px;*/
}

.newsletter-subscribe-button {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 0;
  width: 59.12px;
  min-height: 41px;
  padding: 0;
  background-color: #0A0636;
  border: none;
  color: white;
  font-size: 25px;
  cursor: pointer;
}

.footer-lower {
  background: #EFF8FF;
  font-weight: bold;
  color: #454755;
}

.footer #qv-modal {
  margin: 0;
  padding: 0;
}

.newsletter-result {
  color: red;
}
/******* Add To Cart Button *******/
.addCart {
  width: calc(100% - 30px);
  height: 38px;
  background: #0A0636;
  border-radius: 3px;
  color: white;
  display: inline-block;
  cursor: pointer;
}

.addCartbutton {
  color: #fff;
  display: inline-block;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  width: calc(100% - 93px);
  padding: 9px 10px;
  cursor: pointer;
}

.mfp-content .addCartbutton {
  padding: 9px 5px;
  font-size: 12px;
  line-height: 20px;
}

.searchBtn {
  display: inline-block;
  margin-top: 9px;
  float: left;
  margin-left: 13px;
  cursor: pointer;
}


.compareBtn {
  display: inline-block;
  margin-top: 9px;
  float: right;
  margin-right: 10px;
}

#compareIcon {
  width: 46px;
  height: 44px;
  background: url(/Themes/Valley/Content/images/compareIcon.png) 0 0;
}

.colorImg {
  display: block;
  margin: 10px auto 10px auto;
  width: 30%;
  height: 32px;
}

.category-name {
  background: #0A0636;
  padding: 12px;
  color: #fff;
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  position: absolute;
  width: 100%;
  bottom: 0;
  opacity: 0;
}

.ocarousel-item {
  position: relative;
}

  .ocarousel-item:hover .category-name {
    opacity: 1;
  }

.category-carousel {
  margin-top: 60px;
}
/***** PRODUCT BOX *****/
.product-grid .item-grid::after {
  content: "";
  display: block;
  clear: both;
}

.item-box {
  width: calc(26% - 19px);
  float: left;
  margin-left: 0;
  margin-right: 0;
}
  /*.category-page .item-box,
.manufacturer-list-page .item-box,
.manufacturer-page .item-box,
.product-grid .item-box,
.manufacturer-carousel .ocarousel .menufacturer-item {
  border-right: 1px solid #dfecf7;
  border-bottom: 1px solid #dfecf7;
}*/
  .sub-category-item, .manufacturer-item, .item-box .product-item,
  .manufacturer-carousel .ocarousel .menufacturer-item {
    box-shadow: 0 5px 5px #dfecf7 !important;
    margin-bottom: 1px;
  }

#featured-product .item-box {
  width: 20%;
  margin: 0;
}

.featured-product .title,
.category-carousel .title-container,
.also-purchased-products-grid .title-container,
.product-details-page .related-products-grid .title-container {
  text-align: center;
  border-bottom: 1px dashed #0A0636;
}

.item-box .product-item,
.shipping-type,
.news-box-inner,
.block-gradient {
  position: relative;
  text-align: center;
  background: #fff;
  z-index: 5;
}

.item-box .product-item,
.shipping-type,
.news-box-inner,
.account-page .block-gradient,
.downloadable-products-page,
.back-in-stock-subscription-list-page,
.reward-points-page,
.my-product-reviews-list-page,
.apply-vendor-page .block-gradient,
.blog-page .post,
.html-blogpost-page .blogpost-page,
.html-news-list-page .news-item,
.html-news-item-page .news-item-page,
.sitemap-page .block-gradient,
.contact-page .block-gradient,
.html-address-edit-page .block-gradient,
.html-product-tags-all-page .product-tags-all-page {
  box-shadow: 2px 2px 2px 1px rgba(197, 212, 225, 0.4);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  background: #fff;
  border-radius: 3px;
}

.topic-page .topic-page-body-content,
.search-page,
.product-reviews-page {
  background: #fff;
  box-shadow: 2px 2px 2px 1px rgba(197, 212, 225, 0.4);
}

.item-box .product-item:hover {
  box-shadow: 2px 2px 5px 3px rgba(197, 212, 225, 0.4);
  transform: translateY(-2px);
  z-index: 10;
}

.item-box .buttons-hover {
  position: absolute;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
  width: 100%;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
}

.offer-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 5px;
}

  .offer-content > div {
    display: block;
    padding: 7px;
    background: #c4581c;
    color: #fff;
    min-width: 42px;
    border-radius: 10px;
  }

  .offer-content .new-product-label {
    background: #0ACD6A;
  }

.item-box .picture {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: #fff;
}

.item-box .product-item:hover .buttons-hover {
  opacity: 1;
  z-index: 9999;
}

.item-box .buttons-hover button {
  min-height: initial;
  font-size: 0;
  background: transparent;
  color: #fff;
  border: none;
  padding: 0;
  display: block;
  /*margin-bottom: 12px;*/
  cursor: pointer;
  margin-left: 0;
  margin-top: 0;
}

.item-box .buttons-hover [class*="icon-"] {
  font-size: 20px;
}

.item-box .picture a {
  display: block;
  max-width: 100%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

  .item-box .picture a img {
    width: 100%;
  }

.item-box .details {
  padding: 15px;
}

.item-box .product-title {
  margin-bottom: 10px;
  font-size: 18px;
}

  .item-box .product-title a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

.item-box .prices {
  margin-bottom: 10px;
  color: #0A0636;
  font-weight: bold;
  font-size: 18px;
}

  .item-box .prices .old-price {
    margin-right: 3px;
    color: #AFB7BA;
    text-decoration: line-through;
  }

.item-box .product-rating-box {
  display: inline-block;
  margin: 0 0 10px;
}

.item-box .rating {
  background: url('../images/rating1.png') repeat-x;
  width: 95px;
  height: 14px;
}

  .item-box .rating div {
    background: url('../images/rating2.png') repeat-x;
    height: 14px;
  }

.item-box .product-box-add-to-cart-button {
  padding: 12px 5px;
  background: transparent;
  color: #0A0636;
  font-weight: 800;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.item-box .description {
  display: none;
}

.owl-carousel .owl-stage-outer {
  padding: 0;
}

.buttons-hover ~ button.button-2.add-to-wishlist-button {
  font-size: 0;
  background: transparent;
  border: transparent;
  position: absolute;
  top: 10px;
  right: -200px;
  transition: all 0.3s;
  z-index: 10;
}

.product-item:hover .buttons-hover ~ button.button-2.add-to-wishlist-button {
  right: 10px;
}

.buttons-hover ~ button.button-2.add-to-wishlist-button i {
  font-size: 16px;
  color: #E01E39;
}

.buttons-hover ~ button.button-2.add-to-wishlist-button i {
  font-size: 16px;
  color: red;
}

.product-list .item-grid .item-box,
.center-2 .product-list .item-grid .item-box {
  width: 100%;
  float: none;
}

.product-list .item-box .product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}

.product-list .item-box .picture {
  position: relative;
}

.product-list .item-box {
  margin-bottom: 15px;
}

  .product-list .item-box .picture img {
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
  }

/***** CATAGOREY PAGE *****/
/*.product-spec-filter .filter-title {
  background: #0A0636;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
}*/

.filtered-wrapper {
  font-size: 14px;
  border-bottom: 1px solid #E5E5E5;
}

.filtered-items ul > li:not(:last-child) {
  margin-bottom: 7px;
}

.filtered-items .filtered-attribute {
  font-weight: 800;
}

.filtered-wrapper .remove-filter {
  font-weight: 600;
}

  .filtered-wrapper .remove-filter i {
    font-size: 12px;
  }

.product-selectors {
  box-shadow: 2px 2px 2px 1px rgba(197, 212, 225, 0.4);
  border-radius: 3px;
  background: #fff;
}

.product-page-size,
.product-sorting {
  font-size: 14px;
  text-transform: uppercase;
  border: solid 1px #D6E2EC;
  padding: 0 8px;
}

  .product-page-size.select-wrapper select,
  .product-sorting.select-wrapper select {
    height: 32px;
    border-radius: 3px;
  }

.product-viewmode {
  font-size: 22px;
}

.viewmode-icon {
  color: #DDE7EF;
}

  .viewmode-icon.selected {
    color: #0A0636;
  }

.sub-category-item, .manufacturer-item, .item-box .product-item {
  position: relative;
  box-shadow: 2px 2px 2px 1px rgba(197, 212, 225, 0.4);
}

  .sub-category-item .title, .manufacturer-item .title a {
    position: absolute;
    padding: 9px 30px;
    background: #0A0636;
    color: #FFFFFF;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    bottom: 0;
    z-index: 1;
    display: block;
    width: 100%;
  }

  .sub-category-item .picture a, .manufacturer-item .picture a {
    display: block;
  }

  .sub-category-item .picture img, .manufacturer-item .picture img {
    border-radius: 3px;
  }

.category-banner img {
  width: 100%;
}

.filter-toggle-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

  .filter-toggle-button i {
    font-size: 20px;
    margin-right: 10px;
  }


.page.category-page .products-container {
  min-height: 100px;
}

.category-page .item-grid,
.search-page .item-grid,
.manufacturer-page .item-grid,
.vendor-page .item-grid,
.manufacturer-grid .item-grid,
.manufacturer-list-page .item-grid,
.recently-viewed-products-page .item-grid,
.recently-added-products-page .item-grid,
.also-purchased-products-grid .item-grid,
.related-products-grid .item-grid {
  display: flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
  justify-content: center;
}

.html-search-page .filter-toggler,
.html-product-tag-page .filter-toggler {
  display: none;
}

:not(.html-category-page) .close-side-menu {
  display: none !important;
}

.html-manufacturer-page .close-side-menu,
.html-category-page .close-side-menu {
  display: inline-block !important;
}
/***** PRODUCT DETAILS PAGE *****/
.html-product-details-page .side-2 {
  margin-top: 0;
}

.product-details-page,
.product-details-page a {
  color: #5A6771;
}

  .product-details-page .product-reviews-overview > div {
    display: inline-block;
    margin-right: 15px;
  }

.html-product-details-page .availability > div,
.html-product-details-page .additional-details > div,
.html-product-details-page .manufacturers,
.attributes dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

  .html-product-details-page .availability > div > span,
  .html-product-details-page .additional-details > div span,
  .html-product-details-page .manufacturers > span,
  .html-product-details-page .attributes dl dt,
  .html-product-details-page .attributes dl dd {
    display: block;
    min-width: 35%;
    max-width: 50%;
    margin-top: 0;
  }

.product-tags-list .tag {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  vertical-align: bottom;
}

.product-tags-list .separator {
  margin: 0 5px;
}

.product-tags-list .tag .producttag {
  color: #888 !important;
  background: #fff !important;
}

.side-2 {
  border-radius: 0;
  box-shadow: 2px 2px 2px 1px rgba(197, 212, 225, 0.4);
  background: #FFFFFF;
  border: 1px solid #E7EDF1;
  min-height: 600px;
}

.close-side-menu {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 18px;
  line-height: 18px;
  border: none;
  background: #0a0636;
  color: #fff;
  padding: 3px;
  cursor: pointer;
}

.product-essential {
  background: #fff;
  box-shadow: 2px 2px 2px 1px rgba(197, 212, 225, 0.4);
  padding: 15px;
}

.attributes .option-list li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
  position: relative;
}

  .attributes .option-list li:last-child {
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 4px;
  }

.attributes dl {
  margin: 0;
}

.attributes dd {
  margin-left: 0;
}

.attributes .attribute-squares input {
  position: absolute;
  opacity: 0;
}

.attributes select {
  padding: 6px;
  display: inline-block;
}

.attributes .attribute-squares label {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  overflow: hidden;
}

  .attributes .attribute-squares label ~ .tooltip-container {
    position: absolute;
    bottom: 100%;
    left: 100%;
    display: none;
  }

  .attributes .attribute-squares label:hover ~ .tooltip-container {
    display: block;
  }

.attributes .attribute-squares .attribute-square-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.attribute-circles li .attribute-circle-container::after,
.attributes .attribute-squares li .attribute-square-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 26px;
  height: 26px;
  font-family: "icomoon";
  font-size: 14px;
  font-style: normal;
  color: #fff;
  transition: all 300ms;
}

.html-product-details-page .attributes .attribute-squares li .attribute-square-container::after {
  width: 26px;
  height: 26px;
  font-size: 14px;
}

.attributes .attribute-squares li.selected-value .attribute-square-container::after {
  content: "\e918";
}

.attributes .attribute-squares .attribute-square {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
}

.attributes .option-list-square input {
  position: absolute;
  opacity: 0;
}

.attributes .option-list-square label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 39px;
  height: 39px;
  padding: 5px;
  background: #FFFFFF;
  color: #A9A9AE;
  font-size: 16px;
  border: 1px solid #A9A9AE;
  border-radius: 5px;
  cursor: pointer;
  transition: all 300ms;
}

.attributes .option-list-square input[type="radio"]:checked ~ label,
.attributes .option-list-square input[type="checkbox"]:checked ~ label {
  color: #0A0636;
  border-color: #0A0636;
}

.add-to-cart-panel .qty-label {
  display: none;
}

.product-details-page .add-to-cart {
  display: inline-block;
  vertical-align: top;
}

.add-to-cart-panel {
  border: 1px solid #0A0636;
  display: inline-block;
  border-radius: 5px;
}

  .add-to-cart-panel .qty-input {
    max-width: 40px;
    padding: 0;
    vertical-align: middle;
    border: none;
    padding: 0 5px;
  }

  .add-to-cart-panel .add-to-cart-button {
    height: 40px;
    vertical-align: middle;
  }

.gallery img {
  border: solid 1px #eee;
}

.product-essential .gallery,
.product-essential .picture {
  position: relative;
}

.product-essential .picture {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

  .product-essential .picture .picture-item {
    width: 50%;
    padding: 6px;
  }

.product-essential .picture-thumbs {
  margin-top: 10px;
}

  .product-essential .picture-thumbs .thumb-item:not(:last-child) {
    margin-right: 10px;
  }

  .product-essential .picture-thumbs .thumb-item {
    cursor: pointer;
  }

    .product-essential .picture-thumbs .thumb-item img {
      border-radius: 3px;
    }

.product-essential .short-description,
.product-essential .product-reviews-overview,
.product-essential .manufacturers,
.product-essential .product-vendor,
.product-essential .sku,
.product-essential .prices,
.product-essential .add-to-cart,
.product-essential .product-estimate-shipping,
.product-essential .availability,
.product-essential .attributes dd,
.product-essential .attribute-item .attribute-data {
  margin-bottom: 20px;
  font-size: 14px;
}

.product-essential .attributes dd,
.product-essential .attribute-item .attribute-data {
  margin-top: 10px;
}

.mfp-content .product-essential .attributes dd {
  margin-top: 0;
}

.mfp-content .product-essential .attributes dd {
  width: 70%;
}

.mfp-content .product-essential .attributes dt {
  width: 30%;
}

.mfp-content .product-share-button {
  display: none;
}

.mfp-content .compare-products,
.mfp-content .email-a-friend {
  width: 50%;
  float: left;
  margin-bottom: 15px;
}

.mfp-content .button-2.add-to-compare-list-button,
.mfp-content .button-2.email-a-friend-button {
  width: 99%;
  border-radius: 5px;
}

.mfp-content .product-tags-box .product-tags-list ul li {
  display: inline-block;
}

.mfp-content .product-tags-box .title {
  margin: 15px 0;
}

.product-essential .manufacturers .label,
.product-essential .product-vendor .label,
.product-essential .sku .label,
.product-essential .availability .label,
.product-essential .attributes dt,
.product-essential .attribute-item .attribute-label,
.variant-overview .sku .label,
.variant-overview .availability .label {
  color: #000000;
  font-weight: 800;
  font-size: 14px;
}

.product-essential .required {
  color: #E50000;
}

.product-essential .short-description {
  font-weight: 600;
}

.product-essential .product-review-links {
  color: #2883EC;
}

.product-essential .old-product-price {
  color: #B8BECE;
  font-weight: bold;
  font-size: 20px;
  text-decoration: line-through;
}

.product-essential .product-price {
  font-size: 24px;
  font-weight: 800;
}

.product-essential .product-estimate-shipping {
  padding: 10px;
  border: 1px solid #0A0636;
  border-radius: 5px;
}

.product-essential .free-shipping {
  color: #4BCD2A;
  font-weight: 600;
  text-transform: uppercase;
}

.product-essential .attributes input[type="text"] {
  padding: 5px 10px;
  color: #223668;
  line-height: 1.5;
  border: 1px solid #466DCE;
  border-radius: 3px;
}

.add-to-cart-panel .button-1.add-to-cart-button {
  padding: 7px 30px;
  font-weight: 800;
  font-size: 14px;
  text-transform: capitalize;
}

  .add-to-cart-panel .button-1.add-to-cart-button i {
    font-size: 22px;
  }

.add-to-cart-panel .qty-wrapper {
  min-height: 36px;
  padding: 0 30PX;
  border: 1px solid #D2D2DC;
  border-radius: 100px;
}

.add-to-cart-panel .qty-label {
  color: #B3BBC6;
  font-size: 15px;
}

.add-to-cart-panel .qty-wrapper input[type="number"] {
  width: auto;
  max-width: 50px;
  min-height: 34px;
  padding: 0 5px;
  color: #223668;
  text-align: center;
  line-height: 1.5;
  border: 0;
  border-radius: 0;
}

.add-to-cart-panel .qty-wrapper input::-webkit-outer-spin-button,
.add-to-cart-panel .qty-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.add-to-cart-panel .qty-wrapper input[type="number"] {
  -moz-appearance: textfield;
}

.overview-buttons .button-2,
.variant-overview .button-2 {
  padding: 7px 20px;
  font-size: 13px;
  text-transform: capitalize;
}

  .overview-buttons .button-2 i,
  .variant-overview .button-2 i {
    font-size: 18px;
  }

.variant-picture,
.variant-overview {
  text-align: center;
}

  .variant-overview .add-to-cart-panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .variant-overview .qty-wrapper {
    margin-top: 10px;
  }

.product__tab.ui-widget {
  color: #666B77;
  font-size: 15px;
  line-height: 25px;
}

  .product__tab.ui-widget.ui-widget-content {
    margin: 60px 0 25px;
    background: #FFFFFF;
    border-color: #E4E4EF;
    border-radius: 3px;
    box-shadow: 0px 0px 10px rgba(193, 193, 193, 0.25);
  }

.product__tab.ui-tabs .ui-tabs-nav {
  padding-top: 0;
  background: none;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
}

  .product__tab.ui-tabs .ui-tabs-nav li {
    float: none;
    display: inline-block;
    background: none;
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: 0;
    width: 24.5%;
  }

    .product__tab.ui-tabs .ui-tabs-nav li.ui-tabs-active {
      background: #fff;
      border-radius: 100px;
      padding: 0;
    }

.product__tab .ui-state-default a,
.product__tab .ui-state-default a:link,
.product__tab .ui-state-default a:visited {
  padding: 8px 25px;
  color: #fff;
  background: #0A0636;
  display: block;
  width: 100%;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  text-overflow: ellipsis;
  overflow: hidden;
}

.product__tab .ui-state-active a,
.product__tab .ui-state-active a:link,
.product__tab .ui-state-active a:visited {
  color: #FFFFFF;
  background: #fff;
}

.product__tab .product-tags-box .title,
.product__tab .product-specs-box .title {
  padding-bottom: 15px;
}

.product__tab .product-tags-list li {
  display: inline-block;
}

  .product__tab .product-tags-list li.separator {
    margin-right: 5px;
  }

.product-details-page .also-purchased-products-grid,
.product-details-page .related-products-grid {
  margin-top: 30px;
}

  .product-details-page .also-purchased-products-grid .title,
  .product-details-page .related-products-grid .title {
    width: calc(100% - 60px);
    font-size: 24px;
    text-align: left;
    text-transform: uppercase;
    font-family: 'Playfair Display';
    font-size: 36px;
    color: #0A0636;
  }

  .product-details-page .also-purchased-products-grid.ocarousel .owl-nav,
  .product-details-page .related-products-grid.ocarousel .owl-nav {
    top: -76px;
    right: 0;
    width: auto;
  }

    .product-details-page .also-purchased-products-grid.ocarousel .owl-nav button.owl-prev,
    .product-details-page .related-products-grid.ocarousel .owl-nav button.owl-prev {
      margin-right: 5px;
    }

/***** ESTIMATE SHIPPING POPUP *****/
.estimate-shipping-popup {
  position: relative;
  background: #FFF;
  padding: 25px;
  width: auto;
  max-width: 800px;
  margin: 0 auto;
}

.estimate-shipping-popup-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}

.estimate-shipping-popup-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.estimate-shipping-popup-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}

.estimate-shipping-popup-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.estimate-shipping-popup-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}

.estimate-shipping-popup-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.shipping-options-loading {
  background: url(../images/ajax-loader-small.gif) no-repeat;
  width: 16px;
  height: 16px;
  position: relative;
  right: 8px;
  margin: 4% 50%;
}

.shipping-address .required {
  position: absolute;
  top: 3px;
  right: 5px;
  margin-left: 0px;
  color: #FF0707;
}

.estimate-shipping-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.estimate-shipping-row-item.address-item .estimate-shipping-row {
  position: relative;
}

.estimate-shipping-row .select {
  border-radius: 3px;
}

.estimate-shipping-row.shipping-option {
  cursor: pointer;
}

  .estimate-shipping-row.shipping-option.active {
    font-weight: 700;
  }

.estimate-shipping-row-item {
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}

  .estimate-shipping-row-item.shipping-item {
    padding: 8px 0;
    overflow: hidden;
    overflow-wrap: break-word;
  }

  .estimate-shipping-row-item.shipping-header-item {
    padding: 12px 0;
    border-bottom: 1px solid #f2f2f2;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }

  .estimate-shipping-row-item.address-item + .estimate-shipping-row-item.address-item {
    padding-left: 15px;
  }

  .estimate-shipping-row-item + .estimate-shipping-row-item {
    padding-left: 10px;
  }

.estimate-shipping-row-item-radio {
  -ms-flex: 0 0 35px;
  flex: 0 0 35px;
}

.ship-to-title {
  margin-bottom: 10px;
}

.choose-shipping-title {
  margin-top: 20px;
}

.estimate-shipping-address-control {
  width: 100%;
  height: 36px;
  border-radius: 0;
}

.estimate-shipping-radio {
  display: none;
}

  .estimate-shipping-radio + label {
    -webkit-appearance: none;
    background-color: #fafafa;
    border: 1px solid #cacece;
    padding: 9px;
    border-radius: 50px;
    display: inline-block;
    position: relative;
  }

  .estimate-shipping-radio:checked + label:after {
    content: ' ';
    width: 6px;
    height: 6px;
    border-radius: 50px;
    position: absolute;
    top: 6px;
    left: 6px;
    background: #ffffff;
  }

  .estimate-shipping-radio:checked + label {
    background-color: #0A0636;
    color: #99a1a7;
    border: 1px solid #adb8c0;
    border-color: #0A0636;
  }

.apply-shipping-button {
  padding: 10px 25px;
}

.apply-shipping-button-container {
  margin-top: 15px;
  text-align: center;
}

.shipping-options-header {
  top: 0;
  z-index: 1;
  position: sticky;
  background-color: #fff;
}

.shipping-options {
  position: relative;
  z-index: 1;
  overflow: hidden;
  overflow-y: auto;
  max-height: 200px;
  background: #FFF no-repeat;
  background-image: -webkit-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), -webkit-radial-gradient(50% 100%, farthest-side, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
  background-image: -moz-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), -moz-radial-gradient(50% 100%, farthest-side, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
  background-image: radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 50% 100%, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
  background-position: 0 0, 0 100%;
  background-size: 100% 7px;
}

  .shipping-options:before,
  .shipping-options:after {
    content: "";
    position: relative;
    z-index: -1;
    display: block;
    height: 30px;
    margin: 0 0 -30px;
    background: -webkit-linear-gradient(top, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
    background: -moz-linear-gradient(top, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
    background: linear-gradient(to bottom, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
  }

  .shipping-options:after {
    margin: -30px 0 0;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
  }

.no-shipping-options {
  text-align: center;
  margin: 4% 0;
}

.estimate-shipping-popup .message-failure {
  margin: 5px 0 -5px;
  font-size: 12px;
  color: #e4434b;
}

/***** CART/WISHLIST PAGES *****/
.order-progress {
  margin: 20px 0;
  padding: 15px 0;
  text-align: center;
}

  .order-progress ul {
    font-size: 0;
  }

  .order-progress li {
    display: inline-block;
    margin: 0 10px 25px;
    background: #fff;
    padding: 20px;
    box-shadow: 1px 1px 10px #C8D9E7;
    border-radius: 7px;
    width: 15%;
  }

.order-step-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  margin-top: 15px;
}

.order-progress a {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
  font-size: 14px; /*reset zeroing*/
  color: #333;
}

.order-progress .step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #828286;
  font-size: 38px;
}

.order-progress li.active-step {
  background-color: #0A0636;
  color: #fff;
}

  .order-progress li.active-step .step-icon,
  .order-progress li.active-step .order-step-title {
    color: #fff;
  }

  .order-progress li.active-step a {
    cursor: pointer;
  }

.order-progress li.inactive-step a {
  opacity: 0.3;
  cursor: default;
}

.order-summary-content {
  padding: 15px 0 40px;
}

  .order-summary-content > form > .row {
    width: 100%;
  }

.cart {
  width: 100%;
  color: #616065;
  font-size: 14px;
  border-spacing: 0 10px;
}

  .cart td,
  .cart th {
    padding: 15px;
    border: 1px solid #dee2e6;
  }

    .cart td:first-child,
    .cart th:first-child {
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px;
    }

    .cart td:last-child,
    .cart th:last-child {
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px;
    }

    .cart th.add-to-cart,
    .cart td.add-to-cart {
      min-width: 121px;
    }

      .cart td.add-to-cart .checkbox {
        display: inline-block;
      }

  .cart th {
    background: #223668;
    color: #fff;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    border-color: transparent;
  }

  .cart tbody tr {
    box-shadow: 0px 0px 10px rgba(193, 193, 193, 0.25);
  }

    .cart tbody tr td {
      border-width: 1px 0 1px 0;
    }

      .cart tbody tr td:first-child {
        border-left-width: 1px;
        text-align: center;
      }

      .cart tbody tr td:last-child {
        border-right-width: 1px;
      }

  .cart .remove-from-cart .td-title,
  .cart .remove-from-cart input[type="checkbox"],
  .cart .sku .td-title,
  .cart .unit-price .td-title,
  .cart .quantity .td-title,
  .cart .subtotal .td-title {
    display: none;
  }

  .cart .remove-from-cart .remove-button {
    padding: 0;
    background-color: transparent;
    color: #0a0636;
    border: 0;
    cursor: pointer;
    font-size: 22px;
  }

    .cart .remove-from-cart .remove-button:hover {
      color: #E50000;
    }

  .cart .add-to-cart .checkbox [type="checkbox"]:not(:checked) ~ label,
  .cart .add-to-cart .checkbox [type="checkbox"]:checked ~ label {
    padding-left: 11px;
  }

  .cart .add-to-cart .checkbox [type="checkbox"] ~ label:before,
  .cart .add-to-cart .checkbox [type="checkbox"] ~ label:after {
    width: 20px;
    height: 20px;
  }

  .cart .add-to-cart .checkbox [type="checkbox"]:not(:checked) ~ label:after,
  .cart .add-to-cart .checkbox [type="checkbox"]:checked ~ label:after {
    font-size: 15px;
  }

  .cart .product-picture a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

.cart-collaterals .title {
  background: #fff;
  padding: 10px;
  box-shadow: 2px 4px 4px #E2E9EE;
  margin-bottom: 15px;
  position: relative;
}

.order-total-box .checkbox [type="checkbox"]:checked ~ label:before,
.order-total-box .checkbox [type="checkbox"]:not(:checked) ~ label:before,
.order-total-box .checkbox [type="checkbox"]:checked ~ label:after,
.order-total-box .checkbox [type="checkbox"]:not(:checked) ~ label:after {
  position: absolute;
  top: 5px;
}

.order-total-box {
  background: #fff;
  box-shadow: 2px 4px 4px #E2E9EE;
  padding: 15px;
  padding-bottom: 0;
}

.cart-collaterals .title .ui-accordion-header-icon {
  display: none;
}

.cart-collaterals .title::after {
  content: "+";
  display: block;
  font-size: 18px;
  line-height: 18px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.cart-collaterals .title.ui-state-active::after {
  content: "-";
}

.cart-collaterals .ui-accordion .ui-accordion-content {
  padding: 1em 12px;
}

.cart-collaterals .button-1 {
  padding: 12px 15px;
  font-size: 12px;
}

.cart .product a {
  color: #0A0636;
  font-weight: 600;
}

.cart .product .edit-item a {
  font-weight: 300;
}

.cart a:hover {
  color: #0A0636;
}

.cart .product .attributes {
  padding: 5px 0;
  line-height: 25px;
  color: #0A0636;
}

  .cart .product .attributes br {
    padding-bottom: 5px;
  }

.cart .quantity-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #FFFFFF;
  border: 0.5px solid #CECFD5;
  box-shadow: 0px 0px 10px rgba(155, 158, 164, 0.15);
  border-radius: 3px;
}

.cart .input-group-quantity .button-container {
  position: relative;
  top: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 7px;
  background: transparent;
  border: 0;
  transform: none;
  overflow: visible;
}

  .cart .input-group-quantity .button-container button {
    width: auto;
    height: auto;
    background: transparent !important;
    color: #777777;
    font-size: 12px;
    line-height: normal;
  }

.cart .input-group-quantity input {
  min-width: 30px;
  padding: 0;
  color: #676A74;
  text-align: center;
  border: 0;
  box-shadow: none;
}

.shopping-cart-page .table-wrapper {
  margin-bottom: 0;
}

.cart-options .common-buttons,
.wishlist-page .buttons {
  margin-top: 0;
  padding: 20px 15px;
  background: #F5F6F6;
}

  .cart-options .common-buttons::after,
  .wishlist-page .buttons::after {
    content: "";
    display: block;
    clear: both;
  }

  .cart-options .common-buttons input,
  .wishlist-page .buttons input {
    text-align: left;
    float: left;
    margin-right: 10px;
  }

  .cart-options .common-buttons a {
    float: right;
  }

  .cart-options .common-buttons .button-2,
  .wishlist-page .buttons .button-2 {
    display: inline-block;
    margin-bottom: 10px;
    padding: 8px 20px;
    color: #9E9DA8;
    font-size: 15px;
    line-height: 100%;
    border-color: #fff;
    background: #fff;
    border-radius: 3px;
  }

    .cart-options .common-buttons .button-2:hover,
    .cart-options .common-buttons .button-2:focus,
    .wishlist-page .buttons .button-2:hover,
    .wishlist-page .buttons .button-2:focus {
      background: #223668;
      color: #fff;
    }

.block-gradient.block-gradient-checkout {
  background: linear-gradient(180deg, #312AC0 0%, #233669 57.29%);
}

.checkout-page .page-body,
.order-details-page {
  background: #fff;
  padding: 15px;
  margin: 15px 0;
  box-shadow: 0px 1px 10px #C8D9E7;
}

  .checkout-page .page-body .checkout-data {
    border: solid 1px #dee2e6;
    padding: 15px;
    margin: 15px 0;
    border-radius: 3px;
  }

.checkout-page .select {
  border: solid 1px #dee2e6;
}

.checkout-page .enter-address .edit-address {
  box-shadow: none;
}

.block-gradient.block-gradient-checkout .selected-checkout-attributes,
.block-gradient.block-gradient-checkout .title {
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid #466DCE;
}

.block-gradient.block-gradient-checkout .input-group input[type="text"].default {
  background: transparent;
  color: #fff;
  border: 1px solid #466DCE;
  border-radius: 3px;
}

.block-gradient.block-gradient-checkout .input-group .button-1 {
  padding: 9px 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.block-gradient.block-gradient-checkout .buttons {
  display: block;
  margin: 55px -35px 0;
  padding: 40px 35px;
  color: #2C2D36;
  text-align: left;
}

.cart-total tr td {
  padding-bottom: 20px;
}

.cart-total .cart-total-right {
  text-align: right;
}

.terms-of-service.checkbox [type="checkbox"]:not(:checked) ~ label,
.terms-of-service.checkbox [type="checkbox"]:checked ~ label {
  text-transform: capitalize;
}

.checkout-buttons .button-1 {
  width: 100%;
  padding: 10px 35px;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 3px;
}

.order-total-box .checkout-buttons {
  margin: 0 -15px;
}

.order-summary-content {
  font-weight: 700;
}

.order-total-box .checkout-buttons .button-1 {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top-left-radius: 40px !important;
  border-top-right-radius: 40px !important;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart tbody .product-picture img {
  min-width: 75px;
}

.no-data i {
  font-size: 50px;
}

.email-friend-block {
  margin: 30px auto;
  width: 100%;
  max-width: 800px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  padding: 30px;
}

  .email-friend-block input,
  .email-friend-block textarea {
    width: 100%;
    resize: none;
  }
/***** CHECKOUT PAGE *****/
.checkout-page .page-title h1 {
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  border-bottom: solid 2px #EBEBF0;
  margin: 16px 0;
  padding: 20px 0;
}

.checkout-page .section {
  margin: 0 0 30px;
}

.checkout-data .opc {
  margin: 20px auto 40px;
  padding: 0;
}

.checkout-page .section.order-summary {
  margin: 100px 0 30px;
}

.checkout-page .cart-options {
  min-height: 60px;
  overflow: hidden;
}

.checkout-page .cart-footer {
  border-top: none;
}

.checkout-page .total-info {
  margin: 0;
  border-bottom: none;
  padding: 20px 0;
}

.order-summary .title {
  text-align: center;
  background: #eee;
  padding: 8px;
}

.checkout-page .button-1 {
  display: inline-block;
  min-width: 140px;
  border: none;
  padding: 10px 30px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 100px;
  transition: opacity 0.3s;
}

  .checkout-page .button-1:hover {
    opacity: 0.8;
  }

.checkout-page .address-item {
  min-width: 384px;
  margin: 5px;
  padding: 0;
  float: left;
}

  .checkout-page .address-item ul {
    margin: 0 0 15px;
    background-color: #f9f9f9;
    padding: 20px;
    color: #333;
    min-height: 280px;
  }

  .checkout-page .address-item li {
    padding: 5px 0;
  }

    .checkout-page .address-item li.name {
      font-size: 16px;
      font-weight: bold;
    }

.enter-address .message-error {
  margin: 20px 0;
}

.enter-address .edit-address {
  margin: 0 auto 30px;
  padding: 25px 25px 30px;
  font-size: 14px;
  text-align: left;
  border-radius: 5px;
  box-shadow: 1px 1px 5px rgba(134, 134, 134, 0.25);
}

.edit-address .inputs {
  margin-bottom: 1.5rem;
}

  .edit-address .inputs .required {
    top: 10px;
    right: 7px;
  }

.edit-address label {
  display: inline-block;
  padding-bottom: 5px;
  text-align: left;
}

.checkout-page .ship-to-same-address {
  padding: 30px 0;
  text-align: center;
}

  .checkout-page .ship-to-same-address .selector {
    margin: 0 0 5px;
    font-weight: bold;
    color: #333;
  }

.checkout-page .pickup-in-store {
  text-align: center;
}

  .checkout-page .pickup-in-store .selector {
    margin: 0 0 5px;
    font-weight: bold;
    color: #333;
  }

.select-pickup-point {
  text-align: center;
}

.checkout-page .pickup-points-map {
  min-width: 400px;
  min-height: 350px;
  vertical-align: middle;
  margin-top: 5px;
  margin-bottom: 5px;
}

.shipping-method .method-list,
.payment-method .method-list {
  font-size: 0;
}

  .shipping-method .method-list li,
  .payment-method .method-list li {
    margin: 15px 0;
    vertical-align: top;
    font-size: 14px;
  }

    .shipping-method .method-list li label,
    .payment-method .method-list li label {
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      margin-right: 0;
      padding: 20px 20px 20px 50px;
      color: #444;
      font-size: 14px;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      box-shadow: 1px 1px 10px #C8D9E7;
    }

.shipping-method .radio input[type="radio"] + label:before,
.shipping-method .radio input[type="radio"] + label:after,
.payment-method .radio input[type="radio"] + label:before,
.payment-method .radio input[type="radio"] + label:after {
  top: 17px;
  left: 15px;
}

.shipping-method .method-description,
.payment-method .method-description {
  margin: 15px 0 0;
  text-align: left;
}

.payment-method .use-reward-points {
  margin: 0 0 30px;
  text-align: center;
  color: #333;
}

.payment-method .payment-logo {
  display: block;
  padding: 0 0 15px;
  vertical-align: middle;
}

  .payment-method .payment-logo label {
    display: block;
    font-size: 0 !important;
  }

.payment-method .checkbox-container {
  display: inline-block;
}

.payment-info .info {
  padding: 30px 15px;
  color: #333;
}

  .payment-info .info tr {
    display: block;
    margin: 0 0 15px;
    font-size: 0;
  }

  .payment-info .info td {
    display: inline-block;
    width: 100% !important;
    max-width: 400px !important;
    font-size: 14px;
  }

    .payment-info .info td:only-child {
      width: 100% !important;
      max-width: 100% !important;
    }

    .payment-info .info td input[type="text"] {
      width: 100% !important;
    }

    .payment-info .info td input[name="CardCode"] {
      width: 65px !important;
    }

    .payment-info .info td select {
      min-width: 70px;
    }

    .payment-info .info td:first-child {
      margin: 0 0 10px;
    }

  .payment-info .info p {
    text-align: center;
  }

.confirm-order .buttons {
  padding: 10px 0;
}

.confirm-order .button-1 {
  font-size: 16px;
}

.order-review-data > div,
.order-details-area > div,
.shipment-details-area > div {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 40px;
  background-color: #f9f9f9;
  padding: 20px;
  color: #333;
}

.order-review-data li,
.order-details-area li,
.shipment-details-area li {
  padding: 3px 0;
}

.order-review-data .title,
.order-details-area .title,
.shipment-details-area .title {
  margin: 0 0 5px;
  padding: 8px;
  font-size: 16px;
  font-weight: bold;
}

  .order-review-data .title strong,
  .order-details-area .title strong,
  .shipment-details-area .title strong {
    font-weight: 700;
  }

.order-review-data .payment-method-info,
.order-review-data .shipping-method-info,
.order-details-area .payment-method-info,
.order-details-area .shipping-method-info {
  margin-top: 20px;
}

.order-completed .details {
  margin: 0 0 30px;
  padding: 30px 15px;
  text-align: center;
  color: #333;
}

  .order-completed .details div {
    margin: 5px 0;
  }

  .order-completed .details strong {
    font-weight: normal;
    text-transform: uppercase;
  }

  .order-completed .details a {
    color: #4ab2f1;
  }

    .order-completed .details a:hover {
      text-decoration: underline;
    }

.opc .step-title {
  margin: 0 0 1px;
  overflow: hidden;
  background-color: #e0e9f0;
  border-radius: 3px;
}

.opc .allow .step-title {
  background-color: #223668;
  cursor: pointer;
}

.opc .step-title .number,
.opc .step-title .title {
  float: left;
  margin: 0;
  padding: 10px 15px;
  line-height: 20px;
  font-size: 16px;
  font-weight: normal;
}

.opc .allow .step-title .number,
.opc .allow .step-title .title {
  color: #fff;
  cursor: pointer;
}

.opc .step-title .number {
  width: 42px;
  background-color: #d7e0e7;
  border-right: 1px solid #fff;
  text-align: center;
}

.opc .allow .step-title .number {
  background-color: #0A0636;
}

.opc .step {
  margin: 10px 0;
  padding: 30px 15px;
  text-align: center;
}

.opc .section {
  margin: 0 auto 30px;
}

  .opc .section > label {
    display: block;
    margin: 0 0 10px;
  }

.opc input[type="text"],
.opc select {
  max-width: 100%;
}

.opc .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
  text-align: right;
}

.opc .back-link {
  margin: 0;
}

  .opc .back-link a {
    display: inline-block;
    background: #eee;
    padding: 10px 15px;
    border-radius: 3px;
  }

  .opc .back-link a {
    display: inline-block;
  }

  .opc .back-link i {
    padding-right: 5px;
  }

.opc .buttons .please-wait {
  display: block;
  margin: 0 10px 0;
  background: none;
}

.opc .section.ship-to-same-address {
  margin: 0 0 30px;
  padding: 0;
}

.opc .section.pickup-in-store {
  margin: 0 0 30px;
  padding: 0;
}

.opc .payment-info .info tr {
  text-align: left;
}

.opc .section.order-summary {
  margin: 0;
}

.shipping-method .method-name {
  text-align: left;
}

.checkout-page.order-completed-page {
  text-align: center;
}

.billing-address-page .select-billing-address .title,
.shipping-address-page .select-shipping-address .title {
  padding: 0 15px 15px;
  text-align: center;
}

.billing-address-page .address-grid,
.shipping-address-page .address-grid {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  overflow: hidden;
}

.billing-address-page .new-billing-address .title,
.shipping-address-page .new-shipping-address .title {
  padding: 8px;
  text-align: center;
  background: #eee;
}

.shipping-address-page .buttons,
.shipping-method-page .buttons,
.payment-method-page .buttons,
.payment-info-page .buttons,
.order-confirm-page .buttons {
  text-align: center;
}

.cart-total-left {
  text-align: left;
}
/***** FLYOUT CART *****/
.flyout-cart {
  display: none;
}

.flyout-cart {
  position: absolute;
  top: 100%;
  right: 2px;
  width: 340px;
  margin-top: -1px;
  padding-top: 10px;
  z-index: 1000;
}

  .flyout-cart.active {
    display: block;
  }

.mini-shopping-cart {
  background-color: #fff;
  text-align: left;
  font-size: 14px;
  box-shadow: 0px 5px 10px #878D9E;
}

  .mini-shopping-cart::before {
    content: "";
    position: absolute;
    top: 0;
    right: 14px;
    font-size: 12px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    filter: drop-shadow(1px -1px 1px rgba(0,0,0,.25));
  }

  .mini-shopping-cart .cart-title,
  .mini-shopping-cart .cart-summary {
    padding: 7px 15px;
    font-size: 16px;
    border-bottom: 1px solid #223668;
  }

    .mini-shopping-cart .cart-title .icon-cart,
    .mini-shopping-cart .cart-summary .icon-cart {
      padding-right: 10px;
      font-size: 30px;
    }

    .mini-shopping-cart .cart-title .cart-close {
      cursor: pointer;
    }

  .mini-shopping-cart .cart-banner,
  .mini-shopping-cart .cart-summary {
    padding: 10px 15px;
    background-color: #F1F1F9;
    color: #36373D;
  }

    .mini-shopping-cart .cart-banner strong {
      padding-left: 5px;
    }

  .mini-shopping-cart .count a {
    display: inline-block;
    padding: 0;
    text-transform: none;
  }

  .mini-shopping-cart .items {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow-y: auto;
  }

  .mini-shopping-cart .item {
    overflow: hidden;
    padding: 10px 15px;
    border-bottom: 1px solid #E1E1EB;
  }

  .mini-shopping-cart .picture {
    float: left;
    width: 90px;
    text-align: center;
  }

    .mini-shopping-cart .picture a {
      display: block;
      height: 100%;
      position: relative;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }

    .mini-shopping-cart .picture img {
      display: none;
    }

  .mini-shopping-cart .product {
    width: 100%;
    height: 100%;
    margin-left: 10px;
  }

  .mini-shopping-cart .overview {
    width: calc(100% - 75px);
  }

  .mini-shopping-cart .name {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
  }

    .mini-shopping-cart .name a {
      padding: 0 0 5px;
      font-size: 13px;
      text-transform: capitalize;
    }

  .mini-shopping-cart .attributes {
    margin: 5px 0;
    color: #444;
  }

  .mini-shopping-cart .quantity-wrapper {
    width: 35px;
    border: 0.5px solid #CECFD5;
  }

    .mini-shopping-cart .quantity-wrapper button {
      width: 100%;
      padding: 7px 5px;
      background-color: transparent;
      color: #777777;
      font-size: 9px;
      border: 0;
    }

.quantity-wrapper button .icon-minus {
  font-size: 3px;
  vertical-align: middle;
}

.mini-shopping-cart .quantity-wrapper button.cart-qty-minus {
  padding-top: 7px;
}

.mini-shopping-cart .quantity-wrapper button.cart-qty-plus {
  padding-bottom: 7px;
}

.mini-shopping-cart .quantity-wrapper input[type=text] {
  height: auto;
  padding: 4px 3px;
  color: #656567;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  border: 0;
}

.mini-shopping-cart .remove {
  padding: 5px 0 5px 15px;
  font-size: 20px;
}

  .mini-shopping-cart .remove:hover {
    color: #E50000;
  }

  .mini-shopping-cart .remove i {
    cursor: pointer;
  }

.mini-shopping-cart .price-quantity {
  font-size: 13px;
}

  .mini-shopping-cart .price-quantity span:last-child {
    font-weight: bold;
  }

.mini-shopping-cart .button-1 {
  display: inline-block;
  width: calc(100% - 30px);
  margin: 3px auto 15px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.mini-shopping-cart input[type="button"]:hover,
.mini-shopping-cart input[type="button"]:focus {
  background-color: #E76E11;
  opacity: 0.8;
  outline: 0;
}

.mini-shopping-cart .cart-summary {
  background-color: transparent;
  color: #36373D;
  font-size: 14px;
  font-weight: bold;
  border: 0;
}

.mini-shopping-cart .cart-empty {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 30px 15px;
  color: #C8CACD;
}

  .mini-shopping-cart .cart-empty i {
    margin-bottom: 10px;
    font-size: 90px;
  }

  .mini-shopping-cart .cart-empty span {
    text-align: center;
  }

.cart-scroll {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 350px;
}

.cart-scroll-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  overflow-x: hidden;
  opacity: 1;
}

/*** NOTIFICATIONS ***/
.bar-notification-container {
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1000;
  width: calc(100% - 30px);
  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;
  border-radius: 3px;
}

  .bar-notification .content {
    margin: 0 10px 0 0;
  }

    .bar-notification .content a {
      color: #fff;
      text-decoration: underline;
    }

  .bar-notification .close {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    margin: 7px;
    background: #fff url('../images/close.png') center no-repeat;
    cursor: pointer;
  }

/***** LOGIN/REGISTRATION *****/
.page.login-page,
.page.registration-page,
.page.apply-vendor-page,
.page.contact-page {
  max-width: 1200px;
  margin: 0 auto;
}

  .page.login-page .page-body,
  .page.registration-page .page-body {
    margin-bottom: 100px;
  }

.customer-blocks .block-gradient {
  min-height: 400px;
}

.registration-page .block-gradient .buttons {
  margin-top: 70px;
}

.customer-blocks .forgot-password {
  font-size: 14px;
}

.page.registration-page {
  max-width: 100%;
}


  .page.registration-page .page-body {
    max-width: 600px;
    margin: 2em auto 3em;
  }


  .page.registration-page .page-title {
    color: #0A0636;
    background: #fff;
    text-align: center;
    box-shadow: 1px 1px 3px 1px rgba(197, 212, 225, 0.5);
    text-transform: uppercase;
    margin-bottom: 2em;
  }


  .page.registration-page .fieldset span.required {
    display: none;
  }


.register-next-step-button {
  background: #0A0636;
  border-radius: 3px;
  margin: 2em 0 1.5em;
  padding: 1em 11em;
  font-size: 16px;
}

.page.registration-page .fieldset {
  margin: 0 0 40px !important;
  padding: 30px 35px 40px;
  box-shadow: 4px 4px 5px #C5D4E1;
  border-radius: 3px;
  background: #fff;
  color: black;
}

.page.registration-page .block-gradient {
  background: none;
  padding: 0;
  /* color:none;*/
}

.fieldset .title {
  font-size: 16px;
  position: relative;
}

  .fieldset .title::after {
    content: "";
    display: block;
    position: absolute;
    top: 55%;
    right: -36px;
    width: calc(100% + 71px);
    margin-top: 1.5em;
  }

.fieldset input.form-control::placeholder {
  color: initial;
  opacity: 0;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
}

.fieldset .date-picker-wrapper select {
  color: #AEB4B9 !important;
  border: none;
  border-bottom: 1px solid #B3C2CE;
  border-radius: 0;
}

.fieldset .inputs.select-wrapper.date-of-birth {
  text-align: left !important;
  color: #0A0636 !important;
  text-transform: uppercase;
}



.fieldset label {
  color: #0A0636;
  opacity: 1;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  text-align: left !important;
  display: flex;
  padding-top: 2em;
}


.page.registration-page input[type="text"], .page.registration-page input[type="email"], .page.registration-page input[type="tel"], .page.registration-page input[type="password"], .page.registration-page input.form-control, .page.registration-page textarea, .page.registration-page textarea.form-control {
  border-bottom: 1px solid #B3C2CE;
  line-height: 1;
  padding: 0;
  min-height: 0px;
}

.page.registration-page .inputs label {
  margin-bottom: 0 !important;
}

.fieldset-username {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.inputs.fieldset-username-lastname {
  width: 48%;
  margin-left: 0.4em;
}

.inputs.fieldset-username-firstname {
  width: 48%;
  margin-right: 0.4em;
}


.fieldset .date-picker-wrapper {
  margin-top: 0px;
}


.inputs.fieldset-gender {
  text-align: left;
}

.fieldset-gender label {
  text-transform: none !important;
  font-size: 14px;
  margin-bottom: -12px;
  font-weight: 700;
}

  .fieldset-gender label.forcheckbox {
    color: #9493A3;
    font-size: 13px !important;
  }

.radio input[type="radio"] + label:before {
  border: 1px solid #B3C2CE;
}

.radio input[type="radio"] + label:after, .radio input[type="radio"] + label:before {
  top: 22px;
  border-color: #B3C2CE;
  width: 20px;
  height: 20px;
}

.radio input[type="radio"]:checked + label:before {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  box-shadow: inset 0 0 0 0.22em #fff, inset 0 0 0 1em #0A0636;
}


p.fieldset-newsletter {
  margin-left: 0;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 14px;
  text-align: left;
}

.checkbox [type="checkbox"]:checked ~ label:before,
.checkbox [type="checkbox"]:not(:checked) ~ label:before {
  border-radius: 3px;
  width: 20px;
  height: 20px;
  border-color: #B3C2CE;
  top: 5px;
  left: 0.2em;
}

.search-page .checkbox [type="checkbox"]:checked ~ label::before,
.search-page .checkbox [type="checkbox"]:not(:checked) ~ label::before {
  top: 29px;
}

.search-page .checkbox [type="checkbox"]:not(:checked) ~ label::after,
.search-page .checkbox [type="checkbox"]:checked ~ label::after {
  top: 29px;
  font-size: 11px;
}

.login-page .checkbox [type="checkbox"]:not(:checked) ~ label:after,
.login-page .checkbox [type="checkbox"]:checked ~ label:after {
  color: #0A0636;
  left: 0.1em;
}

.registration-result-page .result {
  padding: 20px;
  width: calc(100% - 20px);
  margin: 40px auto;
  max-width: 500px;
  background: #fff;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 4px;
  box-shadow: 1px 1px 3px 1px rgba(197,212, 225, 0.5);
}

  .registration-result-page .result p {
    font-size: 24px;
    margin-bottom: 20px;
  }

label.fieldset-newsletter-label {
  position: relative !important;
  top: 0;
  left: 0;
  text-transform: capitalize;
  font-weight: 400;
  padding-top: 0;
  margin-top: 10px;
}

  label.fieldset-newsletter-label::before,
  label.fieldset-newsletter-label::after {
    top: 3px !important;
  }
/***** Login *****/

.login-button {
  background: #0A0636;
}

.register-button, .login-button {
  background: #B4B3C1;
  border-radius: 3px;
  padding: 12px 60px;
}

.customer-blocks .block-gradient {
  min-height: 0px;
}

.regForm {
  padding: 0 3em;
}

.block-gradient.register-block {
  padding: 2em 0 0;
}

.register-block .buttons {
  padding: 2em 35px 1.4em !important;
  margin: 1px 2px 8px;
}

.customer-blocks .buttons {
  padding: 10px 35px;
}

.block-gradient {
  background: #fff;
  text-align: center;
  border-radius: 3px;
}

.block-gradient__top {
  position: relative;
}

.block-gradient__top-text {
  margin-top: -4em;
  margin-bottom: 2em;
  font-size: 15px;
  line-height: 1.5;
}

.block-gradient__top, .inputs label {
  color: #777777;
}

.block-gradient__top-text::after {
  content: "";
  display: block;
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #B3C2CE;
  margin-top: 1.5em;
}

.block-gradient .title {
  border-bottom: none;
  color: #0A0636;
}

.login-tab-title {
  border-bottom: none;
  /* color: #fff;*/
  text-transform: uppercase;
  font-weight: bold;
}

.login-tab {
  padding: 0 !important;
}

.header-breadcrumb,
.breadcrumb {
  text-align: center;
  background: #FFF;
  box-shadow: 1px 1px 3px 1px rgba(197, 212, 225, 0.5);
  padding-bottom: 25px;
}

.forum-breadcrumb {
  padding-top: 25px;
}

.breadcrumb .pb-3 {
  padding: 0 !important;
}

.html-product-details-page .breadcrumb,
.html-product-details-page .breadcrumb {
  box-shadow: none;
  padding-bottom: 6px !important;
}

.topic-block-title {
  padding-top: 2%;
  text-align: center;
  color: #0A0636;
}

.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;
  }

.page.login-page .topic-block-title h2 {
  border-bottom: 1px solid #B3C2CE;
  margin-bottom: 18px;
}


.topic-block-body {
  text-align: center;
  padding: 2% 12% 5%;
  color: #959497;
}


.topic-block {
  background-color: #fff;
  text-align: center;
  box-shadow: 4px 4px 5px #C5D4E1;
  border-radius: 3px;
}

.page.login-page input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input.form-control, textarea, textarea.form-control {
  border-color: #B3C2CE;
}

span.forgot-password {
  color: #0D99E7 !important;
}

.html-home-page .ui-widget-content a {
  color: #223668;
}


.checkbox [type="checkbox"]:not(:checked) ~ label:before, .checkbox [type="checkbox"]:checked ~ label:before {
  border-radius: 0;
  border-color: #BFBFBF;
}

.page.login-page {
  max-width: 100%;
}

  .page.login-page .page-body {
    max-width: 600px;
    margin: auto;
    padding-bottom: 60px;
  }

.block-gradient .buttons {
  background: none;
  padding: 0px 35px 35px;
}

.login-page .fieldset label {
  padding-top: 0;
}

.login-page .checkbox [type="checkbox"]:not(:checked) ~ label::before,
.login-page .checkbox [type="checkbox"]:checked ~ label::after,
.login-page .checkbox [type="checkbox"]:checked ~ label::before,
.login-page .checkbox [type="checkbox"]:not(:checked) ~ label::after {
  top: 0;
}

.page.login-page .ui-widget-content,
.page.login-page .ui-widget-content a {
  color: white;
}

.page.login-page .ui-widget.ui-widget-content {
  box-shadow: 4px 4px 5px #C5D4E1;
  border: none;
  border-radius: 3px !important;
}

.page.login-page .ui-widget-header {
  background: none;
  border: none;
  color: #fff;
}

.page.login-page .ui-tabs {
  padding: 0;
}

.page.login-page .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  background: #0A0636;
}

.ui-tabs .ui-tabs-nav li a {
  color: #fff;
}

.ui-tabs .ui-tabs-nav li.ui-state-active a {
  color: #0A0636;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
  color: #0A0636 !important;
  background: #fff !important;
}

.login-page .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.login-page .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  padding: .5em 4em;
}

.login-page .ui-tabs-anchor {
  border: none;
}

.login-page .ui-tabs .ui-tabs-nav {
  padding: .5em 0 0;
}

  .login-page .ui-tabs .ui-tabs-nav li {
    border: none;
    display: flex;
    font-size: 14px;
    padding: 10px 26px;
  }

  .login-page .ui-tabs .ui-tabs-nav li {
    margin: 0;
  }

.login-page .ui-tabs, .login-page .ui-tabs .ui-tabs-nav {
  padding: 0;
}

.ui-tabs .ui-tabs-panel {
  padding: 3em 3em 0;
}

.html-product-details-page .ui-tabs .ui-tabs-panel {
  padding: 1.5em;
}

.newsletter-block .checkbox {
  display: block;
}
/***** Password Recovery *****/
.page.password-recovery-page {
  max-width: 100%;
}

  .page.password-recovery-page .page-title {
    color: #0A0636;
    background: #fff;
    text-align: center;
    box-shadow: 1px 1px 3px 1px rgba(197, 212, 225, 0.5);
    text-transform: uppercase;
  }

  .page.password-recovery-page .page-body {
    max-width: 600px;
    margin: auto;
    background: #fff;
  }

.PasswordRecovery-body {
  margin: 2em 0 3em;
  padding: 1.5em 3em 2em;
  text-align: center;
  color: #959497;
  box-shadow: 4px 4px 5px #C5D4E1;
  border-radius: 3px;
}

.password-recovery-button {
  background: #0A0636;
  margin: 2em 0 0;
  border-radius: 3px !important;
}


.page.password-recovery-page p.tooltip {
  padding: 0 6em 2em;
  font-size: 15px;
  line-height: 25px;
}

.page.password-recovery-page .fieldset {
  text-align: left;
  padding: 1em 3em;
  margin-right: 1em;
  position: relative;
}

  .page.password-recovery-page .fieldset .inputs label {
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 13px;
  }

  .page.password-recovery-page .fieldset input[type="email"] {
    width: calc(100% + 1em);
    border-bottom: 1px solid #B3C2CE;
    line-height: 0;
    min-height: 0;
    padding: 25px 0;
    margin-top: -9px;
    font-size: 13px;
  }


/***** HOMEPAGE - SHIPPING TYPES *****/
.home-page-body-ads {
  margin-top: 200px;
}

.shipping-types-wrapper {
  margin-bottom: 70px;
}

.shipping-types {
  text-align: center;
}

.shipping-type {
  padding: 30px;
  text-align: left;
  border-radius: 3px;
  margin-bottom: 10px;
}

.shipping-type--icon {
  margin-right: 30px;
  text-align: center;
}

.shipping-type img {
  max-width: 75px;
}

.shipping-type--title,
.shipping-type--desc {
  margin: 0;
}

.shipping-type--title {
  font-size: 16px;
  color: #0A0636;
  font-weight: 600;
  line-height: 100%;
}

.shipping-type--desc {
  padding-top: 5px;
  font-size: 16px;
}

/***** HOMEPAGE - BLOG/NEWS *****/
.blog-items img {
  width: 100%;
}

.latest-blog-container-Title-homepage {
  left: 50% !important;
}

.latest-blog-container,
.latest-news-container {
  margin-bottom: 70px;
}

.html-blog-page .side-2,
.html-blogpost-page .side-2 {
  margin-top: 50px;
  border: 0;
}

.latest-blog-container-all {
  position: relative;
  margin-bottom: 40px;
}

.latest-blog-container .date-time {
  padding: 12px 0 3px;
  color: white;
  font-size: 15px;
  font-weight: normal;
  background-color: #0A0636;
  height: 50px;
  text-align: center;
  min-height: 50px;
}

.latest-news-container .picture {
  margin: 10px 10px 0 0;
  /*background: linear-gradient(0deg, #EBEFF7, #EBEFF7), url(image.png);*/
  /* box-shadow: 0px 0px 10px rgba(214, 215, 228, 0.25);
    border-radius: 5px;*/
}

  .latest-news-container .picture img {
    margin: 1px 0px 10px 10px;
    /*border-radius: 5px;*/
  }


.latest-news-container .post-title,
.news-list-homepage .news-title {
  font-size: 18px;
  font-weight: bold;
}

.latest-news-container .date-time,
.news-list-homepage .news-date {
  color: #A7AEBF;
  font-size: 13px;
  font-weight: 600;
}

.latest-blog-container-Title-homepage {
  background-color: white;
  min-width: 80%;
  text-align: center;
  font-size: 15px;
  padding-top: 8px;
  position: absolute;
  top: 76.3%;
  left: 7%;
  right: 7%;
  /*bottom: 1%;*/
}

.blog-title {
  min-height: 70px;
  padding: 5px 5px 8px 5px;
}

.news-box-inner {
  background-color: white;
  text-align: left;
  border-radius: 3px;
}

.news-box-info {
  margin-top: 5px;
  padding-bottom: 15px;
  padding-left: 2%;
  padding-right: 2%;
}

.latest-news-container .blog-link,
.news-list-homepage .read-more {
  color: #0A0636;
  font-size: 15px;
  text-decoration: underline;
  text-transform: capitalize;
}

/***** BLOG & NEWS PAGES *****/
.link-rss {
  display: none;
  width: 24px;
  height: 24px;
  background: url('../images/rss.png') center no-repeat;
  font-size: 0 !important;
}

.latest-blog-container .title-container,
.latest-news-container .title-container {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 50px;
}

.blog-item-wrapper:after,
.news-item-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.blog-item-wrapper .blog-item,
.news-item-wrapper .news-item {
  width: calc(33.33% - 30px);
  float: left;
  margin-left: 15px;
  margin-right: 15px;
}

.news-item-wrapper .news-item {
  width: calc(50% - 30px);
}

  .blog-item-wrapper .single-blog img,
  .news-item-wrapper .news-item img {
    width: 100%;
  }

.blog-item-wrapper h4,
.news-item-wrapper h4 {
  margin: 15px 0 10px;
}

.blog-item-wrapper .post-title,
.news-item-wrapper .post-title {
  font-size: 18px;
  color: #3C434D;
  padding: 0;
  text-decoration: underline;
}

.blog-item-wrapper .date-time,
.news-item-wrapper .date-time {
  font-size: 15px;
  padding-top: 15px;
}

.blog-item-wrapper .blog-link,
.news-item-wrapper .blog-link {
  font-size: 14px;
  color: #3C434D;
}

.blog-item-wrapper .post-body,
.news-item-wrapper .post-body {
  padding: 0;
}

.blog-page .post:not(:last-child),
.news-list-page .news-item:not(:last-child) {
  margin-bottom: 30px;
}

.blog-page .post-title,
.news-list-page .news-title {
  display: inline-block;
  padding: 0;
  line-height: 20px;
  font-size: 18px;
  font-weight: 600;
}

.blog-page .post-date,
.news-list-page .news-date,
.blogpost-page .post-date,
.news-item-page .news-date {
  display: block;
  margin: 0;
  padding: 0 0 5px;
  background: transparent;
  color: #0A0636;
  font-size: 14px;
  font-style: normal;
  text-transform: uppercase;
}

.blog-page .post-body,
.news-list-page .news-body,
.blog-page .blog-posts .buttons,
.news-list-page .news-items .buttons,
.blogpost-page .post-body,
.news-item-page .news-body {
  padding: 0;
}

.blog-page .post-body,
.news-list-page .news-body {
  padding-top: 10px;
}

.blog-posts .blog-details,
.blogpost-page .blog-details {
  display: inline-block;
  width: 100%;
  margin-top: 15px;
  padding: 15px 0;
  font-size: 14px;
  border-top: 1px solid #ddd;
}

.blog-page .blog-posts .buttons .button-1,
.news-list-page .news-items .buttons .button-1 {
  font-size: 14px;
}

.blog-posts .tags,
.blog-posts .blog-comments {
  text-align: center;
}

.blog-page .tags, .blogpost-page .tags {
  margin: 0 0 15px;
  overflow: hidden;
  padding: 0 10px;
}

.blogpost-page .tags {
  padding: 0;
}

  .blog-page .tags ul, .blogpost-page .tags ul {
    display: inline-block;
    margin: 0 0 3px 3px;
  }

  .blog-page .tags li, .blogpost-page .tags li {
    display: inline-block;
  }

    .blog-page .tags li.separator, .blogpost-page .tags li.separator {
      margin-right: 5px;
    }

.new-comment {
  padding-bottom: 30px;
  text-align: center;
}

  .new-comment label {
    display: inline-block;
    padding-bottom: 5px;
  }

  .new-comment textarea {
    min-height: 120px;
  }

.comment-list {
  margin: 0 0 30px;
}

  .comment-list .title {
    margin: 0 0 15px;
    padding: 0 10px;
    font-size: 20px;
    color: #333333;
    text-align: center;
  }

    .comment-list .title strong {
      font-weight: 400;
    }

  .comment-list .comment {
    margin: 0 0 40px;
    border-top: 0 solid #ddd;
  }

.comment-info {
  width: 150px;
  margin: 20px auto;
}

  .comment-info .username {
    display: block;
    margin: 0 0 -1px;
    border: 1px solid #ddd;
    background-color: #f6f6f6;
    padding: 11px 0;
    font-weight: 700;
    color: #333333;
    text-align: center;
  }

.comment-content {
  text-align: center;
}

.comment-time {
  margin: 0 0 15px;
  font-size: 13px;
  font-weight: 700;
}

.comment-body {
  line-height: 22px;
}

.latest-blog-container .post-body {
  display: none;
}

/***** MY ACCOUNT *****/
.block-gradient.block-account-navigation {
  padding: 25px 35px 0;
}

.html-vendor-list-page .side-2,
.html-vendor-page .side-2,
.html-account-page .side-2,
.html-news-list-page .side-2,
.html-news-item-page .side-2,
.html-blog-page .side-2,
.html-blogpost-page .side-2,
.html-compare-products-page .side-2,
.html-recently-added-products-page .side-2,
.html-recently-viewed-products-page .side-2,
.html-manufacturer-list-page .side-2,
.html-search-page .side-2,
.html-product-tag-page .side-2,
.html-product-tags-all-page .side-2 {
  max-width: 25%;
  width: 25%;
  margin-right: 30px;
  margin-top: 50px;
  border: none;
}

.order-list, .address-list-page,
.downloadable-products-page,
.back-in-stock-subscription-list-page,
.reward-points-page,
.change-password-page,
.my-product-reviews-list-page,
.address-edit-page {
  margin-top: 50px;
}

.customer-info-page {
  margin-top: 25px;
}

.html-account-page .side-2 ul li a {
  display: block;
  padding: 10px 15px;
}

.html-account-page .side-2 ul li.active {
  background: #0A0636;
  color: #fff;
}

.block-gradient.block-account-navigation .title {
  margin-bottom: 0;
  padding-bottom: 0;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  border-bottom: 0;
  cursor: text;
  pointer-events: none;
}

.block-gradient.block-account-navigation .block-footer {
  margin: 20px -35px 0;
}

/***** ORDER DETAILS PAGE *****/
.order-details-page .page-title,
.order-details-page .order-overview {
  text-align: center;
}

  .order-details-page .page-title [class*="button-"] {
    min-width: 120px;
  }

.order-details-page .order-overview {
  padding: 30px 0;
  line-height: 27px;
}

.order-details-page .selected-checkout-attributes {
  margin: 30px 0;
  font-weight: 600;
  text-align: center;
}

.order-details-page .totals.section {
  width: 370px;
  max-width: 100%;
  padding: 0 10px;
  max-width: 100%;
  margin: 0 auto 50px;
}

.order-details-page .total-info {
  padding: 15px 20px;
  color: #fff;
}

.order-details-page .section.shipments .title,
.order-details-page .section.products .title {
  padding: 0 0 15px;
  text-align: center;
}

.order-details-page .table td, .order-details-page .table th {
  font-size: 14px;
}

.order-details-page .data-table .product {
  color: #0A0636;
}

  .order-details-page .data-table .product .attributes {
    padding-top: 7px;
    line-height: 22px;
  }

.totals .table.cart-total {
  margin: 0;
}

.table.cart-total td {
  width: 50%;
  padding: 5px 0;
  text-align: right;
  border: 0;
}

  .table.cart-total td:first-child {
    text-align: left;
  }

.shipments tr td label {
  display: none;
}
/***** COMPARE PRODUCT PAGE *****/
.compare-products-page {
  position: relative;
  overflow: hidden;
}

  .compare-products-page .clear-items {
    padding: 10px 0 20px;
    text-align: center;
  }

  .compare-products-page .clear-list {
    display: inline-block;
    text-transform: uppercase;
  }

    .compare-products-page .clear-list:hover {
      opacity: 0.9;
    }

.compare-products-table td {
  min-width: 150px;
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 20px;
  text-align: left;
  vertical-align: top;
}

  .compare-products-table td:first-child {
    min-width: 0;
  }

  .compare-products-table td a {
    color: #0A0636;
  }

  .compare-products-table td label {
    font-weight: normal;
    font-weight: 600;
  }

.compare-products-table .remove-button {
  display: inline-block;
  border: none;
  background: url('../images/remove.png') left center no-repeat;
  padding: 0 0 0 18px;
  color: #E50000;
  font-size: 12px;
}

  .compare-products-table .remove-button:hover {
    color: #E76E11;
  }

.compare-products-table .picture {
  display: block;
  position: relative;
  max-width: 95%;
  height: 200px;
  margin: auto;
  text-align: center;
  overflow: hidden;
}

  .compare-products-table .picture img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
  }

.compare-products-table .product-name td {
  font-weight: bold;
}

.compare-products-table .short-description td {
  line-height: 22px;
}

.compare-products-table .full-description td {
  display: none;
}

.compare-products-page .no-data {
  margin: 25px 0 0;
}

/***** PRODUCT REVIEWS *****/
.write-review {
  max-width: 90%;
  margin: 20px auto 40px;
}

.review-rating .name-description {
  display: inline-block;
  padding-right: 10px;
}

  .product-reviews-page .inputs label,
  .review-rating .name-description label {
    display: inline-block;
    margin-bottom: 5px;
  }

.review-rating .rating-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rating-wrapper .label.last {
  padding-left: 5px;
}

.write-review .buttons {
  padding-top: 20px;
}

.product-reviews-page .product-review-list {
  padding-bottom: 40px;
}

  .product-reviews-page .product-review-list .title {
    padding-bottom: 15px;
  }

.product-review-item {
  background-color: rgba(246, 246, 248, 0.3);
  border-top: 1px solid #f6f6f8;
}

  .product-review-item:nth-child(odd) {
    background-color: #f6f6f8;
  }

  .product-review-item .review-item-head {
    border-top: 1px solid #ddd;
    overflow: hidden;
    background-color: transparent;
    padding: 15px;
  }

  .product-review-item .review-title {
    line-height: 20px;
    font-size: 15px;
  }

  .product-review-item .product-review-box {
    margin: 3px 0 0;
  }

  .product-review-item .review-content {
    padding: 20px 15px;
  }

  .product-review-item .review-text {
    margin: 0 0 15px;
    line-height: 22px;
  }

  .product-review-item .product-review-helpfulness {
    padding-top: 10px;
  }

  .product-review-item .reply {
    margin: 15px 0;
    border-top: 1px solid #ddd;
  }

  .product-review-item .reply-header {
    margin: 15px 0;
    font-weight: bold;
  }

  .product-review-item .reply-text {
    line-height: 22px;
  }

  .product-review-item .review-info {
    margin: 0 0 5px;
  }

    .product-review-item .review-info label {
      font-weight: normal;
    }

    .product-review-item .review-info a,
    .product-review-helpfulness .vote {
      display: inline-block;
      padding: 0 5px;
      color: #0A0636;
      cursor: pointer;
    }

.product-review-helpfulness .question {
  margin: 0 5px 0 0;
  font-style: italic;
}

.product-review-helpfulness .result {
  margin: 0 0 0 10px;
}

/***** PRIVATE MESSAGE & FORUM *****/
.page.private-messages {
  padding: 40px 15px;
}

.private-messages .tabs-header {
  background: #fff;
  border: none;
}

.header-links ul li.private-messege-item {
  margin-left: 10px;
  background-color: #FFFFFF;
}

  .header-links ul li.private-messege-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 10px;
    font-size: 13px;
  }

table.forum-table,
.private-messages table {
  width: 100%;
  background-color: #fff;
}

  table.forum-table th, table.forum-table td,
  .private-messages th, .private-messages td {
    border: 1px solid #ddd;
    padding: 15px;
  }

.forum-search-box .basic {
  position: relative;
}

.forum-search-box .search-box-text {
  padding: 6px 15px 6px 15px;
}

.forum-search-box .search-box-button {
  position: absolute;
  right: 0;
  top: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  min-height: 38px;
  padding-right: 100px;
  color: white;
}

#small-search-box-form ~ .ui-widget-content a {
  display: block;
}

.forums-header .current-time,
.forum-search-box .advanced,
.forum-description,
.forum-actions,
.form-group .manage-post,
.form-group .quote-post,
.form-group .vote-count-post,
.form-group .post-time,
.topic-actions .actions {
  margin: 25px 0px;
}

/*product carousel*/
.product-carousel .owl-nav {
  position: absolute;
  top: -88px;
  width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: calc(100% - 58px);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

  .product-carousel .owl-nav button.owl-prev,
  .product-carousel .owl-nav button.owl-next {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 10px !important;
    background-color: #fff;
    color: #0A0636;
    font-size: 13px;
    border-radius: 3px;
    box-shadow: 0px 2px 3px 1px #c5d4e1;
  }

  .product-carousel .owl-nav button.owl-prev {
    left: -8px;
  }

  .product-carousel .owl-nav button.owl-next {
    right: 0;
    background-color: #0A0636;
    color: #fff;
  }

@media all and (min-width: 768px) {
}

@media all and (min-width: 992px) {
}

@media all and (min-width: 1200px) {
}

@media all and (min-width: 1300px) {
}

@media all and (min-width: 1670px) {
}

@media all and (max-width: 1669.99px) {
}

@media all and (max-width: 1499.99px) {
}

@media all and (max-width: 1299.99px) {
}

@media all and (max-width: 1199.99px) {
}

@media all and (max-width: 1099.99px) {
}

@media all and (max-width: 991px) {
}

@media all and (max-width: 767.99px) {
}

@media all and (max-width: 575px) {
}

@media all and (max-width: 450px) {
}

@media all and (max-width: 400px) {
}

@media all and (max-width: 340px) {
}

@media (min-width: 768px) and (max-width: 991px) {
}

@media (min-width: 768px) and (max-width: 1199px) {
}

@media (min-width: 992px) and (max-width: 1199px) {
}


/***** HEADER *****/
.top-menu.notmobile .sublist {
  display: none;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  box-shadow: 1px 1px 10px #000;
}

.top-menu.notmobile li {
  position: relative;
}

.top-menu.notmobile > li a {
  padding: 10px 15px;
  display: block;
}

.top-menu.notmobile li:hover > .sublist {
  display: block;
}

.menu-toggle {
  font-size: 18px;
  font-weight: bold;
}

.top-menu.mobile {
  display: none;
}

  .top-menu.mobile .sublist {
    display: none;
  }
/* smart product box style*/
.product-item .attribute-circles input[type="radio"],
.product-item .attribute-circles input[type="checkbox"] {
  display: none;
}

.product-item .attribute-circles label {
  display: block;
  margin: 5px;
}

.product-item .attribute-circles .attribute-circle,
.attributes .attribute-squares .attribute-square-container {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
}

.attributes .attribute-squares .attribute-square-container {
  height: 25px;
  width: 25px;
}

.product-item .attribute-squares .attribute-square {
  height: 24px;
  width: 24px;
  background-size: cover;
}

.product-item .attributes .attribute-squares li .attribute-square-container::after {
  height: 24px;
  width: 24px;
}

.header-menu, .wishlist-qty, .cart-qty, .addCart,
.footer, .newsletter-subscribe-button, .anywhere-slider-container .button-1 i,
.button-2, .latest-blog-container .date-time, .button-1, .ocarousel .owl-nav button.owl-next,
.button-2:hover, .anywhere-slider-container .button-1:hover, .button-2:focus, .ocarousel
.owl-nav button.owl-prev:hover, .ocarousel .owl-nav button.owl-next:hover,
.page.login-page .ui-state-default, .ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default, .login-button, .bar-notification.success,
.bar-notification, .close-mobile-menu i, .order-progress li.active-step, .cart th,
.owl-theme .owl-nav [class*=owl-]:hover, .product-tab-items .owl-theme .owl-nav button.owl-next,
.sublist-close-button, .opc .allow .step-title, .opc .allow .step-title .number, .register-next-step-button,
.product__tab .ui-state-default a, .product__tab li:not(.ui-tabs-active) a:link, .product__tab .ui-state-default a:visited,
.anywhere-slider-container .owl-nav button.owl-prev:hover, .anywhere-slider-container .owl-nav button.owl-next:hover {
  color: #fff;
}

/*Newly added in 4.40.1*/
.selected-price-range .to {
  float: right;
}



.fieldset .title, .section .title {
  margin: 0 0 15px;
  padding: 12px 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.return-request-list-page .details {
  border-top: 1px solid #e6e6e6;
  padding: 20px;
  line-height: 22px;
  color: #444;
}

.return-request-list-page .page-title {
  display: none;
}

.html-return-request-list-page .main-section {
  margin-top: 50px;
}

.return-request-list-page .section .title {
  padding: 0px 10px;
}

dd[id *= "checkout_attribute_input_"] {
  margin-right: 20px;
}
/***** HOMEPAGE - BLOG/NEWS *****/
.latest-blog-container-Title-homepage {
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/****/

.order-list-page button.return-items-button {
  padding: 6px 15px;
}

.vendor-list-page,
.vendor-page {
  margin-top: 50px;
}

.html-vendor-page .product-selectors,
.html-vendor-page .products-container {
  display: none !important;
}

.main-wrapper {
  min-height: 620px;
}

.share-info {
  margin: 10px 0;
}

.search-box.forum-search-box .search-box-button {
  font-size: 18px;
  padding-left: 10px;
  padding-right: 75px;
}

.forum-page .actions a {
  background-color: #fff;
  padding: 10px;
  margin: 0 5px 0 0;
}

.page.forum-search-page {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

  .page.forum-search-page .basic-search .inputs.reversed label {
    display: inline-block;
  }

.ui-dialog {
  max-width: 90%;
}

.shipment-details-area::after,
.order-details-area::after {
  content: ".";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.newsletter {
  padding-top: 3px !important;
}

.account-signature-text {
  width: 280px;
}

.remove-gift-card-button::before {
  content: "X";
}

.remove-gift-card-button,
.remove-discount-button {
  font-size: 12px !important;
  padding: 1px 6px;
  margin-left: 13px;
  background: none;
  color: #e10101;
  border: 1px solid red;
  border-radius: 3px !important;
  margin-right: 5px;
}

.dealoftheday-container .loader {
  position: relative;
}
/**Loader**/
.loader {
  position: relative;
  min-height: 200px;
}

  .loader > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

  .lds-ripple div {
    position: absolute;
    border: 4px solid #0A0636;
    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;
  }
}
/*****/


.addthis_toolbox.addthis_default_style {
  display: flex;
}

.download-sample-button {
  color: white !important;
}

.cross-sells .item-box .addCart {
  font-size: 12px;
  padding: 5px;
  border-right: none;
  height: unset;
}

.cross-sells .item-box .compareBtn,
.cross-sells .item-box .searchBtn {
  margin-top: 0px;
}

.cross-sells .item-box .addCartbutton {
  padding: 0px;
}

.cross-sells .item-box .buttons-hover [class*="icon-"] {
  font-size: 12px;
}

.contact-vendor,
.vendor-description {
  margin: 20px 0px;
}

.vendor-page {
  margin-right: 10px;
}

.vendor-item .title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}


.page.login-page .ui-widget-content a{
  color: #333;
}

.page.password-recovery-page .page-body {
  background: none;
}

.PasswordRecovery-body {
  background: #fff;
}

.page.password-recovery-page .fieldset input[type="email"] {
  padding: 15px 0;
  margin-top: 3px;
}

.page.password-recovery-page .result {
  margin-top: 30px;
  text-align: center;
  font-size: 18px;
}

.account-page.my-product-reviews-list-page.block-gradient{
    text-align:left;
}


.product-reviews .write-review input[type="text"] {
  width: 90%;
}