﻿/*********** CSS RESET **********/

/*@import url('https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i|Libre+Baskerville:300,300i,400,400i,500,500i&display=swap');
*/

@font-face {
  font-family: "AmericanSans";
  /* your chosen family name */
  src: url('/Themes/NopKalles/Content/webfonts/AmericanSans.woff2') format("woff2");
  /* modern */
  font-weight: 400;
  /* optional: 400 = normal */
  font-style: normal;
  /* optional: normal / italic */
  font-display: swap;
  /* keeps text visible while the font loads */
}

@font-face {
  font-family: "AmericanSans";
  /* your chosen family name */
  src: url('/Themes/NopKalles/Content/webfonts/AmericanSans.woff2') format("woff2");
  /* modern */
  font-weight: 500;
  /* optional: 400 = normal */
  font-style: normal;
  /* optional: normal / italic */
  font-display: swap;
  /* keeps text visible while the font loads */
}

@font-face {
  font-family: "AmericanSansReg";
  /* your chosen family name */
  src: url('/Themes/NopKalles/Content/webfonts/americansans-regular.woff') format("woff");
  /* modern */
  font-weight: 400;
  /* optional: 400 = normal */
  font-style: normal;
  /* optional: normal / italic */
  font-display: swap;
  /* keeps text visible while the font loads */
}

@font-face {
  font-family: "AmericanSansLight";
  /* your chosen family name */
  src: url('/Themes/NopKalles/Content/webfonts/americansans-light.woff') format("woff");
  /* modern */
  font-weight: 400;
  /* optional: 400 = normal */
  font-style: normal;
  /* optional: normal / italic */
  font-display: swap;
  /* keeps text visible while the font loads */
}

@font-face {
  font-family: "AmericanSansVar";
  /* your chosen family name */
  src: url('/Themes/NopKalles/Content/webfonts/AmericanSansVar.woff2') format("woff2");
  /* modern */
  font-weight: 400;
  /* optional: 400 = normal */
  font-style: normal;
  /* optional: normal / italic */
  font-display: swap;
  /* keeps text visible while the font loads */
}

@font-face {
  font-family: "AmericanSansVar";
  /* your chosen family name */
  src: url('/Themes/NopKalles/Content/webfonts/AmericanSansVar.woff2') format("woff2");
  /* modern */
  font-weight: 500;
  /* optional: 400 = normal */
  font-style: normal;
  /* optional: normal / italic */
  font-display: swap;
  /* keeps text visible while the font loads */
}

@font-face {
  font-family: "AmericanSansVar";
  /* your chosen family name */
  src: url('/Themes/NopKalles/Content/webfonts/AmericanSansVar.woff2') format("woff2");
  /* modern */
  font-weight: 700;
  /* optional: 400 = normal */
  font-style: normal;
  /* optional: normal / italic */
  font-display: swap;
  /* keeps text visible while the font loads */
}

/** SF Pro Display Regular */
@font-face {
  font-family: "SF Pro Display";
  src: url('/Themes/NopKalles/Content/webfonts/SFProText-Regular.ttf') format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/** SF Pro Display Medium */
@font-face {
  font-family: "SF Pro Display";
  src: url('/Themes/NopKalles/Content/webfonts/SFProText-Medium.ttf') format("ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  outline: none;
  padding: 0;
  text-decoration: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  margin: 0;
  -webkit-text-size-adjust: none;
}

ol,
ul {
  list-style: none;
}

a img {
  border: none;
}

a {
  color: #242423;
}

a:hover,
a:focus,
a:active {
  color: #0078d2;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

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"] {
  -webkit-appearance: none;
}

script {
  display: none !important;
}

/*********** GLOBAL STYLES **********/

body {
  max-width: 100%;
  overflow-x: hidden;
  background-color: #f6f6f8;
  background-color: #ffffff;
  font:
    normal 14px "AmericanSans",
    Helvetica,
    sans-serif;
  color: #36495a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #36495a !important;
  font-family: "AmericanSansLight", Helvetica, sans-serif;
}

a {
  color: inherit;
  cursor: pointer;
}

a img {
  opacity: 0.99;
  /*firefox scale bug fix*/
}

table {
  width: 100%;
  border-collapse: collapse;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  height: 40px;
  /*safari padding fix*/
  border: 1px solid #d9d9d9;
  padding: 8px;
  font-size: 14px;
  vertical-align: middle;
}

input,
textarea,
select,
button {
  font:
    normal 14px Poppins,
    Helvetica,
    sans-serif;
  color: #777;
}

button {
  border: 0;
  background: transparent;
  outline: 0;
}

button:focus {
  border: 0;
  outline: 0;
}

textarea {
  min-height: 150px;
}

select {
  min-width: 50px;
  height: 32px;
  /*safari padding fix*/
  padding: 6px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-color: #ccc;
  color: #242423;
}

input[type="checkbox"],
input[type="radio"],
input[type="checkbox"] + *,
input[type="radio"] + * {
  vertical-align: middle;
}

input[type="button"],
input[type="submit"],
button,
.button-1,
.button-2 {
  cursor: pointer;
}

label,
label + * {
  vertical-align: middle;
}

.master-wrapper-content {
  position: relative;
  z-index: 0;
  width: 90%;
  margin: 0 auto;
}

.master-column-wrapper {
  position: relative;
  max-width: 100vw;
  overflow: hidden;
}

.master-column-wrapper:after {
  content: "";
  display: block;
  clear: both;
}

.center-1 {
  margin: 0 0;
  z-index: 2;
  position: relative;
}

.column-two-wrapper {
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

.center-2,
.side-2 {
  margin: 0 0 50px;
}

.side-2:after {
  content: "";
  display: block;
  clear: both;
}

.page {
  min-height: 200px;
  text-align: center;
}

.page-title {
  min-height: 50px;
  margin: 0 0 25px;
  border-bottom: 1px solid #d9d9d9;
  padding: 6px 10px;
}

.page-title h1 {
  font-weight: normal;
}

.page:after,
.page-title:after,
.page-body:after {
  content: "";
  display: block;
  clear: both;
}

.center-1 .page-title,
.center-1 .title {
  text-align: center;
}

.column-two-wrapper .page-title {
  margin: 0;
  padding: 10px 0;
  font-size: 18px;
  border: 0;
}

.column-two-wrapper .page-title h1 {
  margin-bottom: 0;
  font-size: inherit;
  font-weight: normal;
}

.link-rss {
  display: none;
  width: 24px;
  height: 24px;
  background: url('/Themes/NopKalles/Content/images/rss.png') center no-repeat;
  font-size: 0 !important;
}

.category-description ul,
.manufacturer-description ul,
.full-description ul,
.topic-block ul,
.topic-page ul,
.post-body ul {
  margin: 12px 0;
  padding: 0 0 0 36px;
  list-style: disc;
}

.category-description ol,
.manufacturer-description ol,
.full-description ol,
.topic-block ol,
.topic-page ol,
.post-body ol {
  margin: 12px 0;
  padding: 0 0 0 36px;
  list-style: decimal;
}

.category-description p,
.manufacturer-description p,
.full-description p,
.topic-block p,
.topic-page p,
.post-body p,
.news-body p {
  margin: 10px 0;
  text-align: justify;
}

.flyout-cart {
  display: none;
}

.btn-primary {
  background-color: #3c8dbc;
  border-color: #367fa9;
}

/*** PAGES - OVERRIDES ***/

.page.product-tag-page .row > .col-6.col-md-5.text-left {
  display: none;
}

.page.product-tag-page .row > .col-2.d-none.d-md-block.text-center {
  -ms-flex: 0 0 50% !important;
  flex: 0 0 50% !important;
  max-width: 50% !important;
  text-align: left !important;
}

.page.product-tag-page .row > .col-6.col-md-5.text-right {
  -ms-flex: 0 0 50% !important;
  flex: 0 0 50% !important;
  max-width: 50% !important;
}

/*********** ANIMATIONS & EFFECTS **********/

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}

.et-lazy-img-1 {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition:
    opacity 0.3s,
    -webkit-transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition:
    opacity 0.3s,
    transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.et-lazy-img-1:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.et-lazy-img-2 {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition:
    opacity 0.5s,
    -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
  transition:
    opacity 0.5s,
    transform 2s cubic-bezier(0, 0, 0.44, 1.18),
    -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.et-lazy-img-2--hvr:hover .et-lazy-img-2 {
  -webkit-transform: scale(1.09);
  transform: scale(1.09);
}

.et-lazy-img-3 {
  -webkit-transition:
    opacity 0.5s,
    -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
  transition:
    opacity 0.5s,
    transform 2s cubic-bezier(0, 0, 0.44, 1.18),
    -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.et-lazy-img-3--hvr:hover .et-lazy-img-3 {
  -webkit-transform: scale(1.09);
  transform: scale(1.09);
}

.et-lazy-img-4 {
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
}

.et-lazy-img-4 > a {
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

.et-lazy-img-4:hover > a {
  transform: scale(1.11);
  -webkit-transform: scale(1.11);
  -o-transform: scale(1.11);
  -moz-transform: scale(1.11);
}

.ts-03-ease {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.ts-06-ease {
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

.box-card-1 {
  -webkit-box-shadow:
    0px 8px 16px rgba(50, 50, 71, 0.06),
    0px 8px 8px rgba(50, 50, 71, 0.08);
  -moz-box-shadow:
    0px 8px 16px rgba(50, 50, 71, 0.06),
    0px 8px 8px rgba(50, 50, 71, 0.08);
  box-shadow:
    0px 8px 16px rgba(50, 50, 71, 0.06),
    0px 8px 8px rgba(50, 50, 71, 0.08);
  border-radius: 5px;
  border: 1px solid rgba(50, 50, 71, 0.06);
}

/*** UTILITIES & STYLES ***/

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.px-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.px-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.clr-primary,
.text-primary {
  color: #0078d2 !important;
}

.clr-primary-dark {
  color: #79358f !important;
}

.clr-white {
  color: #ffffff !important;
}

.clr-black {
  color: #000000 !important;
}

.clr-link {
  color: #181e25 !important;
}

.clr-dark {
  color: #242423 !important;
}

.clr-title {
  color: #627a8b !important;
}

.clr-blue {
  color: #0078d2 !important;
}

.clr-gray {
  color: #36495a !important;
}

.clr-gray-2 {
  color: #ebebf0 !important;
}

.clr-gray-3 {
  color: #696969 !important;
}

.clr-gray-4 {
  color: #dddddd !important;
}

.clr-gray-l {
  color: #f6f6f8 !important;
}

.clr-gray-d {
  color: #555a63 !important;
}

.clr-green,
.text-success {
  color: #109533 !important;
}

.clr-red,
.text-danger {
  color: #e71d36 !important;
}

.clr-pink {
  color: #ff006e !important;
}

.clr-orange {
  color: #fb5607 !important;
}

.bg-primary {
  background-color: #0078d2 !important;
}

.bg-primary-dark {
  background-color: #79358f !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-black {
  background-color: #000000 !important;
}

.bg-dark {
  background-color: #242423 !important;
}

.btn-primary {
  background-color: #0078d2;
}

.bg-gray {
  background-color: #82828f !important;
}

.bg-gray-2 {
  background-color: #ebebf0 !important;
}

.bg-gray-3 {
  background-color: #696969 !important;
}

.bg-gray-4 {
  background-color: #dddddd !important;
}

.bg-gray-l {
  background-color: #f6f6f8 !important;
}

.bg-green,
.bg-success {
  background-color: #109533 !important;
}

.bg-red,
.bg-danger {
  background-color: #e71d36 !important;
}

.bg-pink {
  background-color: #ff006e !important;
}

.bg-orange {
  background-color: #fb5607 !important;
}

.of-h {
  overflow: hidden;
}

.of-v {
  overflow: visible;
}

.of-a {
  overflow: auto;
}

.of-s {
  overflow: scroll;
}

.of-u {
  overflow: unset;
}

.of-x-h {
  overflow-x: hidden;
}

.of-x-v {
  overflow-x: visible;
}

.of-x-a {
  overflow-x: auto;
}

.of-x-s {
  overflow-x: scroll;
}

.of-y-h {
  overflow-y: hidden;
}

.of-y-v {
  overflow-y: visible;
}

.of-y-a {
  overflow-y: auto;
}

.of-y-s {
  overflow-y: scroll;
}

.t-0 {
  top: 0;
}

.b-0 {
  bottom: 0;
}

.l-0 {
  left: 0;
}

.r-0 {
  right: 0;
}

.f-s-10 {
  font-size: 10px;
}

.f-s-12 {
  font-size: 12px;
}

.f-s-13 {
  font-size: 13px;
}

.f-s-14 {
  font-size: 14px;
}

.f-s-16 {
  font-size: 16px;
}

.f-s-18 {
  font-size: 18px;
}

.f-s-20 {
  font-size: 20px;
}

.f-s-22 {
  font-size: 22px;
}

.f-s-24 {
  font-size: 24px;
}

.f-s-30 {
  font-size: 30px;
}

.f-s-36 {
  font-size: 36px;
}

.f-s-40 {
  font-size: 40px;
}

.f-s-45 {
  font-size: 45px;
}

.f-s-50 {
  font-size: 50px;
}

.font-weight-normal {
  font-weight: normal !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.lh-n {
  line-height: normal;
}

.lh-u {
  line-height: unset;
}

.lh-100 {
  line-height: 100%;
}

.cr-auto {
  cursor: auto;
}

.cr-default {
  cursor: default;
}

.cr-pointer {
  cursor: pointer;
}

.cr-n-drop {
  cursor: no-drop;
}

.cr-n-allowed {
  cursor: not-allowed;
}

.star-rating {
  font-family: "Font Awesome 5 Free";
}

.star-rating > fieldset {
  border: none;
  display: inline-block;
}

.star-rating > fieldset:not(:checked) > input {
  position: absolute;
  top: -9999px;
  clip: rect(0, 0, 0, 0);
}

.star-rating > fieldset:not(:checked) > label {
  float: right;
  width: 25px;
  margin-bottom: 0;
  margin-right: 2px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 150%;
  color: #f0ad4e;
}

.star-rating > fieldset:not(:checked) > label:before {
  content: "\f005";
}

.star-rating > fieldset:not(:checked) > label:hover,
.star-rating > fieldset:not(:checked) > label:hover ~ label {
  color: #f0ad4e;
}

.star-rating > fieldset:not(:checked) > label:hover:before,
.star-rating > fieldset:not(:checked) > label:hover ~ label:before {
  content: "\f005";
  font-weight: 900;
}

.star-rating > fieldset > input:checked ~ label:before {
  content: "\f005";
  font-weight: 900;
}

.star-rating > fieldset > label:active {
  position: relative;
  top: 2px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #0078d2;
}

.with-arrow .nav-link.active {
  position: relative;
  background-color: #0078d2;
}

.with-arrow .nav-link.active::after {
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #0078d2;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.btn:disabled,
.btn.disabled,
[disabled].btn {
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

.btn-sm {
  min-height: 36px !important;
  padding: 4px 20px !important;
}

.btn-md {
  min-height: 40px !important;
  padding: 7px 30px !important;
}

.btn-lg {
  min-height: 40px !important;
  padding: 10px 40px !important;
}

.btn-link {
  color: #242423 !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-link:hover,
.btn-link:focus {
  color: #0078d2;
  text-decoration: none;
  outline: 0;
}

.btn-primary {
  color: #fff;
  background-color: #0078d2;
  border-color: #0078d2;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  /*   background-color: #79358f !important;
    border-color: #79358f !important;*/
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.btn-yellow {
  color: #fff;
  background-color: #f0ad4e !important;
  border-color: #f0ad4e !important;
}

.btn-yellow:hover,
.btn-yellow:focus {
  color: #fff;
  background-color: #f0ad4e !important;
  border-color: #f0ad4e !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.btn-gray {
  color: #fff;
  background-color: #aaa !important;
  border-color: #aaa !important;
}

.btn-gray:hover,
.btn-gray:focus {
  color: #fff;
  background-color: #82828f !important;
  border-color: #82828f !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.btn-gray-2 {
  color: #7c838b;
  background-color: #eeeeee !important;
  border-color: #eeeeee !important;
  border-radius: 100px !important;
}

.btn-gray-2:hover,
.btn-gray-2:focus {
  color: #555a63;
  background-color: #ddd !important;
  border-color: #ddd !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.btn-red {
  color: #fff;
  background-color: #e71d36 !important;
  border-color: #e71d36 !important;
}

.btn-red:hover,
.btn-red:focus {
  color: #fff;
  background-color: #b52133 !important;
  border-color: #b52133 !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.btn.btn-default {
  max-width: 100%;
  min-height: 40px;
  padding: 10px 40px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  color: #fff;
  background: #0078d2;
}

.btn.btn-default:hover,
.btn.btn-default:focus,
.btn.btn-default.focus {
  background-color: #0078d2;
  color: #ffffff;
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.btn.btn-orange {
  max-width: 100%;
  min-height: 40px;
  padding: 10px 40px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #242423;
  border-radius: 40px;
}

.btn.btn-orange:hover,
.btn.btn-orange:focus,
.btn.btn-orange.focus {
  background-color: #f39c12;
  color: #ffffff;
  border: 2px solid #f39c12;
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.btn-group-dd .btn.dropdown-toggle {
  min-width: 137px;
  padding: 7px 10px 7px 15px;
  background-color: transparent;
  color: #82828f;
  border-radius: 40px;
  border: 1px solid #d9d9d9;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: 0;
  z-index: 8;
}

.btn-group-dd .btn.dropdown-toggle:hover,
.btn-group-dd .btn.dropdown-toggle:focus {
  color: #0078d2;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-group-dd .dropdown-toggle::after {
  content: "\e874";
  margin: 0;
  border: 0;
  vertical-align: unset;
  font-family: "Linearicons-Free";
  font-size: 12px;
  transition: transform 0.2s ease-in-out;
  transition:
    transform 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
}

.btn-group-dd.show .dropdown-toggle::after {
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

.btn-group-dd .dropdown-menu {
  margin-top: 7px;
  min-width: 137px;
  padding: 0 0;
  color: #677279;
  border-radius: 3px;
  border: 0;
  box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.1);
}

.btn-group-dd .dropdown-menu::after,
.btn-group-dd .dropdown-menu::before {
  bottom: 100%;
  right: 10px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.btn-group-dd .dropdown-menu::after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 8px;
  margin-left: -8px;
}

.btn-group-dd .dropdown-menu::before {
  border-color: rgba(194, 225, 245, 0);
  border-bottom-color: #ffffff;
  border-width: 9px;
  margin-left: -9px;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.12));
}

.btn-group-dd .dropdown-item {
  padding: 10px 15px;
  color: #82828f;
  -webkit-transition:
    background-color 0.2s ease-in-out,
    color 0.2s ease-in-out;
  transition:
    background-color 0.2s ease-in-out,
    color 0.2s ease-in-out;
}

.btn-group-dd .dropdown-item:hover,
.btn-group-dd .dropdown-item:focus,
.btn-group-dd .dropdown-item:active,
.btn-group-dd .dropdown-item.active {
  background-color: rgba(86, 207, 225, 0.08);
  color: #0078d2;
}

.dropdown.dd-animate .dropdown-menu {
  overflow: hidden;
  display: block;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.dropdown.dd-animate:hover .dropdown-menu {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.dropdown.dd-animate:hover .dropdown-toggle::after {
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

.hvr-link-gray {
  color: #82828f !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.hvr-link-gray:hover,
.hvr-link-gray:active {
  color: #242423 !important;
}

a.clr-dark:hover {
  color: #0078d2 !important;
}

.delete-item a.clr-dark:hover {
  color: #e71d36 !important;
}

.modal {
  padding: 0 15px !important;
}

.modal-custom .modal-content {
  border-top-right-radius: 15px;
}

.modal-custom .modal-header .close {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin-top: -1px;
  margin-right: -2px;
  padding: 0;
  background-color: #ffffff;
  color: #000000;
  font-size: 14px;
  line-height: normal;
  border: 4px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  opacity: 1;
  z-index: 1;
}

.modal-custom .modal-header .close:not(:disabled):not(.disabled):focus,
.modal-custom .modal-header .close:not(:disabled):not(.disabled):hover {
  color: #000000;
  opacity: 1;
  outline: 0;
}

.owl-carousel .owl-stage {
  margin: 0 auto;
}

.owl-carousel .p-card {
  margin-bottom: 0 !important;
}

.owl-carousel .owl-nav {
  overflow: hidden;
  height: 0px;
  display: flex;
  justify-content: space-between;
}

.item-grid.owl-loaded .owl-stage-outer {
  padding-bottom: 10px;
}

.item-grid.owl-loaded .owl-stage {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

.item-grid.owl-loaded .item-box,
.item-grid.owl-loaded .p-card {
  height: 100%;
}

.product-grid .p-item,
.product-grid .p-card--inner {
  margin-bottom: 15px;
}

.product-grid .p-item .p-card,
.home-page-product-grid .p-card--inner .p-card {
  height: 100%;
  margin-bottom: 0 !important;
  display: flex;
  flex-direction: column;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background-color: transparent;
  color: #000;
  font-size: 27px;
  border: 2px solid #242423;
  border-radius: 50%;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.owl-carousel .owl-nav button.owl-prev {
  left: 5px;
}

.owl-carousel .owl-nav button.owl-next {
  right: 5px;
}

.owl-carousel .owl-nav button.owl-prev.disabled,
.owl-carousel .owl-nav button.owl-next.disabled {
  pointer-events: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev:not(.disabled):hover,
.owl-carousel .owl-nav button.owl-next:not(.disabled):hover {
  background-color: #0078d2;
  color: #ffffff;
  border-color: #0078d2;
}

.owl-carousel .owl-nav button.owl-prev:focus,
.owl-carousel .owl-nav button.owl-next:focus {
  outline: 0;
}

.owl-carousel:hover .owl-nav button.owl-prev,
.owl-carousel:hover .owl-nav button.owl-next {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.owl-carousel:hover .owl-nav button.owl-prev.disabled,
.owl-carousel:hover .owl-nav button.owl-next.disabled {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 0.2;
}

.divider-h,
.divider-v {
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
}

.divider-h {
  width: 100%;
  height: 1px;
}

.section-header {
  margin-bottom: 30px;
  padding: 0 15px;
  color: #0078d2 !important;
}

.section-header .section-title {
  margin-bottom: 3px;
  color: #0078d2 !important;
  font-size: 32px;
}

/* .section-header .section-title::before,
.section-header .section-title::after {
    content: "";
    display: inline-block;
    width: 60px;
    height: 2px;
    background: #0078D2;
} */

.section-header .section-title > span {
  margin: 0 30px;
}

.section-header .section-subtitle {
  font-size: 16px;
}

/*** HEADER BANNER ***/

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-header.news-category-page::before {
  display: none;
}

.page-header.news-category-page .page-header--bg {
  background-position: bottom center;
}

.page-header--bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  background-position: center center;
}

.page-header--bg.lazyload + .page-header--content h1 {
  color: #fff !important;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.page-header--bg.no-banner + .page-header--content h1 {
  color: #000 !important;
}

.page-header--content {
  z-index: 1;
}

h1.page-header--content-title {
  margin: 0 0 5px;
  font-weight: 600;
  font-size: 28px;
  color: #fff;
  line-height: 30px;
}

.page-header--content-desc {
  margin: 5px 0 0;
}

.page-header .post-date,
.page-header .news-date {
  padding: 0;
}

.page-header .breadcrumb {
  position: relative;
  padding: 15px 0 0;
  background-color: transparent;
  z-index: 1;
}

.page-header .breadcrumb li a {
  color: #000;
}

.page-header .breadcrumb li a:hover {
  color: #0078d2;
}

.page-header .breadcrumb li .delimiter,
.page-header .breadcrumb li .current-item {
  color: #000;
}

.catgegory_top_banner_image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #82828f;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  background-position: center center;
}

.page-header .catgegory_top_banner_image {
  background-color: transparent;
}

.catgegory_top_banner .page-title {
  position: relative;
  min-height: 1px;
  margin: 0;
  padding: 0;
  text-align: center;
  border-bottom: 0;
  z-index: 1;
}

.catgegory_top_banner .page-title h1 {
  margin: 0;
  color: #fff !important;
  font-size: 28px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.catgegory_top_banner.no-banner .page-title h1 {
  color: #36495a !important;
  text-shadow: none;
}

.catgegory_top_banner + .breadcrumb li a,
.catgegory_top_banner + .breadcrumb li .delimiter,
.catgegory_top_banner + .breadcrumb li .current-item {
  color: #fff !important;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.catgegory_top_banner.no-banner + .breadcrumb li a,
.catgegory_top_banner.no-banner + .breadcrumb li .delimiter,
.catgegory_top_banner.no-banner + .breadcrumb li .current-item {
  color: #36495a !important;
  text-shadow: none;
}

.catgegory_top_banner .page-title .subtitle {
  margin: 8px 0 0;
  color: #fff !important;
  font-size: 16px;
  font-weight: normal;
  line-height: 100%;
  text-align: center;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.catgegory_top_banner.no-banner .page-title .subtitle {
  color: #000 !important;
  text-shadow: none;
}

.page-body .page-header {
  padding: 0;
}

.page-body .page-header--bg,
.page-body .page-header::before {
  background-color: transparent !important;
}

.page-body .page-header--content-title {
  color: #000 !important;
}

.scrollup {
  position: fixed;
  display: none;
  bottom: 55px;
  right: 15px;
  width: 35px;
  height: 35px;
  border-radius: 2px;
  border: 1px solid rgb(224, 224, 224);
  background-color: rgb(255, 255, 255);
  color: #222;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  opacity: 0.7;
  z-index: 5;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.scrollup:hover,
.scrollup:focus {
  opacity: 1;
}

.counter-wrapper {
  position: relative;
}

.counter-wrapper .counter {
  position: absolute;
  top: -8px;
  right: -11px;
  z-index: 0;
  display: inline-block;
  width: 19px;
  height: 19px;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  background-color: #0078d2;
  color: #fff;
  text-align: center;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  opacity: 1;
}

.section-block {
  border-bottom: 1px solid #e5e5e5;
}

.section-block--title::after {
  content: "";
  position: absolute;
  bottom: 17px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #242423;
}

.section-block--content {
  max-height: 240px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.section-block--content ul > li {
  margin-bottom: 15px;
}

.section-block--content ul > li:last-child {
  margin-bottom: 0;
}

.form-control {
  color: #242423;
  font-size: 14px;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.form-control:focus {
  outline: none;
  border-color: #79358f;
  -webkit-box-shadow: 0 0 0 1px #79358f;
  box-shadow: 0 0 0 1px #79358f;
}

.form-control.input-validation-error {
  border-color: #e71d36;
  -webkit-box-shadow: 0 0 0 1px #e71d36;
  box-shadow: 0 0 0 1px #e71d36;
}

/* 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: 8px;
}

.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: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  opacity: 0.4;
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  background-color: #e0e0e0;
}

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #c1c1c1;
  transition: background-color 0.3s;
}

.scrollbar-inner:hover > .scroll-element .scroll-bar {
  background-color: #a8a8a8;
}

.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #787878;
}

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

/* Custom select */

.custom-select {
  height: 40px;
  font-size: 14px;
  color: #242423;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.custom-select:focus {
  outline: none;
  border-color: #79358f;
  -webkit-box-shadow: 0 0 0 1px #79358f;
  box-shadow: 0 0 0 1px #79358f;
}

.custom-select.input-validation-error {
  border-color: #e71d36;
  -webkit-box-shadow: 0 0 0 1px #e71d36;
  box-shadow: 0 0 0 1px #e71d36;
}

.ctm-radio [type="radio"]:checked,
.ctm-radio [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.ctm-radio [type="radio"]:checked + label,
.ctm-radio [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}

.ctm-radio [type="radio"]:checked + label:before,
.ctm-radio [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}

.ctm-radio [type="radio"]:checked + label:after,
.ctm-radio [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #0078d2;
  position: absolute;
  top: 3px;
  left: 3.5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.ctm-radio [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.ctm-radio [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.custom-radio {
  margin-bottom: 0;
}

.custom-radio [type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-radio [type="radio"] + img,
.custom-radio [type="radio"] + span.custom-radio--input {
  padding: 2px;
  border: 1px solid #d9d9d9;
  cursor: pointer;
  border-radius: 50%;
}

.custom-radio [type="radio"] + span.custom-radio--input {
  width: 25px;
  height: 25px;
}

.custom-radio--label {
  cursor: pointer;
}

.custom-radio-2 {
  position: relative;
}

.custom-radio-2 input[type="radio"] {
  position: absolute;
  visibility: hidden;
}

.custom-radio-2 label {
  position: relative;
  padding-left: 40px;
  font-weight: 300;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.custom-radio-2 .check {
  display: block;
  position: absolute;
  border: 3px solid #d9d9d9;
  border-radius: 100%;
  height: 24px;
  width: 24px;
  top: 0;
  left: 0;
  transition: border 0.25s linear;
  -webkit-transition: border 0.25s linear;
}

.custom-radio-2 .check::before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 100%;
  height: 13px;
  width: 13px;
  top: 2.5px;
  left: 2.5px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}

.custom-radio-2:hover label {
  color: #82828f;
}

.custom-radio-2:hover .check {
  border: 3px solid #82828f;
}

.custom-radio-2 input[type="radio"]:checked ~ label {
  color: #0078d2;
}

.custom-radio-2 input[type="radio"]:checked ~ .check {
  border-color: #0078d2;
}

.custom-radio-2 input[type="radio"]:checked ~ .check::before {
  background: #0078d2;
}

.custom-radio-3 {
  position: relative;
}

.custom-radio-3 input[type="radio"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.custom-radio-3 label {
  font-weight: 300;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.custom-radio-3 label::before {
  display: inline-block;
  content: "";
  height: 24px;
  width: 24px;
  margin-right: 10px;
  border: 4px solid #d9d9d9;
  border-radius: 50%;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.custom-radio-3 label::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.custom-radio-3:hover label {
  color: #82828f;
}

.custom-radio-3:hover label::before {
  border-color: #82828f;
}

.custom-radio-3 input[type="radio"]:checked ~ label {
  color: #0078d2;
}

.custom-radio-3 input[type="radio"]:checked ~ label::before {
  border-color: #0078d2;
}

.custom-radio-3 input[type="radio"]:checked ~ label::after {
  background-color: #0078d2;
}

.custom-checkbox [type="checkbox"]:not(:checked),
.custom-checkbox [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}

.custom-checkbox [type="checkbox"]:not(:checked) ~ label,
.custom-checkbox [type="checkbox"]:checked ~ label {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
}

.custom-checkbox [type="checkbox"]:not(:checked) ~ label:before,
.custom-checkbox [type="checkbox"]:checked ~ label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid;
  background: #fff;
  border-radius: 4px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.custom-checkbox [type="checkbox"]:checked ~ label:before {
  border-color: #0078d2;
}

.custom-checkbox [type="checkbox"]:not(:checked) ~ label:after,
.custom-checkbox [type="checkbox"]:checked ~ label:after {
  content: "\2713\0020";
  position: absolute;
  top: 0.15em;
  left: 0.22em;
  font-size: 18px;
  line-height: 0.8;
  color: #0078d2;
  transition: all 0.2s;
}

.custom-checkbox [type="checkbox"]:not(:checked) ~ label:after {
  opacity: 0;
  transform: scale(0);
}

.custom-checkbox [type="checkbox"]:checked ~ label:after {
  opacity: 1;
  transform: scale(1);
}

.custom-checkbox [type="checkbox"]:disabled:not(:checked) ~ label:before,
.custom-checkbox [type="checkbox"]:disabled:checked ~ label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #d9d9d9;
}

.custom-checkbox [type="checkbox"]:disabled:checked ~ label:after {
  color: #999;
}

.custom-checkbox [type="checkbox"]:disabled ~ label {
  color: #aaa;
}

.custom-checkbox [type="checkbox"]:checked:focus ~ label:before,
.custom-checkbox [type="checkbox"]:not(:checked):focus ~ label:before {
  border: 1px solid #0078d2;
}

.custom-checkbox label:hover {
  color: #0078d2;
}

.custom-checkbox label:hover:before {
  border: 1px solid #0078d2;
}

.custom-checkbox.hide-label [type="checkbox"]:not(:checked) ~ label,
.custom-checkbox.hide-label [type="checkbox"]:checked ~ label {
  text-indent: -9000px;
}

.custom-checkbox.hide-label [type="checkbox"]:not(:checked) ~ label:after,
.custom-checkbox.hide-label [type="checkbox"]:checked ~ label:after {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.custom-checkbox.hide-label [type="checkbox"]:checked ~ label:after {
  text-indent: initial;
}

/* Title with bottom bar */

.title-bar {
  position: relative;
  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;
  width: 100%;
  min-height: 35px;
  margin-bottom: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
}

.title-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2.5px;
  background: #242423;
}

/*********** GLOBAL FORMS ***********/

.fieldset,
.section {
  position: relative;
  margin: 0 0 40px;
}

.fieldset .title,
.section .title {
  margin: 0;
  padding: 12px 0;
  font-size: 16px;
  color: #242423;
}

.fieldset .title strong,
.section .title strong {
  font-weight: normal;
}

.column-two-wrapper .fieldset .title,
.column-two-wrapper .section .title {
  margin: 0;
  padding: 12px 0 12px 0;
  font-size: 16px;
}

.form-fields {
  position: relative;
  background-color: #efeff1;
  padding: 30px;
  border-radius: 5px;
}

.inputs {
  position: relative;
  margin: 0 0 15px;
  text-align: center;
  white-space: nowrap;
  /*fix for 'required' elements*/
  font-size: 0;
}

.inputs:after {
  content: "";
  display: block;
  clear: both;
}

.inputs label {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  text-align: center;
  font-size: 14px;
  /*reset zeroing*/
}

.inline-form .inputs label {
  display: inline-block;
  width: auto;
  margin: 0;
  text-align: inherit;
}

.inputs input[type="text"],
.inputs input[type="email"],
.inputs input[type="tel"],
.inputs input[type="password"],
.inputs select,
.inputs textarea {
  max-width: 100%;
  background-color: #fff;
}

.inputs.custom-attributes {
  white-space: normal;
}

.inputs .option-list {
  display: inline-block;
  max-width: 95%;
  vertical-align: middle;
}

.inputs .option-list li {
  display: inline-block;
  margin: 5px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  padding: 8px 10px;
}

.inputs .option-list label {
  display: inline-block;
  width: auto !important;
  margin: 0 0 0 5px;
}

.inputs.reversed {
  margin: 0 0 20px;
  text-align: center;
}

.required {
  margin: 0 -8px 0 3px;
  /*siblings offset*/
  vertical-align: top;
  font-size: 20px;
  font-weight: normal;
  color: #e71d36;
}

.no-label {
  position: relative;
}

.no-label .required {
  position: absolute;
  right: 8px;
  margin: 0;
  top: 2px;
  line-height: 100%;
}

.message-error,
.field-validation-error,
.username-not-available-status,
.poll-vote-error,
.password-error {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #e71d36;
  margin-top: 5px;
}

.field-validation-valid,
.username-available-status {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #4cb17c;
}

.captcha-box {
  padding-top: 10px;
  text-align: center;
  line-height: 0;
  /*firefox line-height bug fix*/
}

.captcha-box > div {
  display: inline-block;
  max-width: 100%;
}

.captcha-box input {
  height: auto;
}

.price-range > input {
  flex-grow: 1;
  flex-basis: 0;
}

.price-range > input:not(:last-child) {
  margin-right: 5px;
}

/*********** GLOBAL TABLES ***********/

.table-wrapper {
  overflow-x: auto;
}

.data-table .hidden-row {
  height: 0px;
  border: none;
}

.data-table tr.hidden-row th {
  padding: 0;
  border-top: none;
  border: 0;
}

.data-table tr.hidden-row th > span {
  height: 1px;
  width: 1px;
  position: absolute;
  overflow: hidden;
  top: -10px;
}

.cart th,
.data-table th,
.forum-table th {
  border-width: 0px 0px 0;
  border-style: solid;
  border-color: #d9d9d9;
  background-color: #f6f6f8;
  padding: 10px;
  white-space: nowrap;
  font-weight: normal;
}

.cart th {
  background-color: transparent;
}

.forum-table th.replies,
.forum-table th.views,
.forum-table th.votes,
.forum-table th.latest-post,
.forum-table th.topics,
.forum-table th.posts,
.forum-table td.replies,
.forum-table td.views,
.forum-table td.votes,
.forum-table td.latest-post,
.forum-table td.topics,
.forum-table td.posts {
  display: none;
}

.forum-table td.image {
  min-width: 0;
}

.cart td,
.data-table td,
.forum-table td {
  min-width: 50px;
  border-width: 0px;
  border-style: solid;
  border-color: transparent #d9d9d9 #d9d9d9;
  padding: 20px;
  color: #242423;
}

.cart td {
  background-color: transparent;
}

.forum-table td {
  min-width: 90px;
  padding: 10px;
}

.cart a,
.data-table a,
.forum-table a {
  font-weight: normal;
  color: #0078d2;
}

.cart a:hover,
.data-table a:hover,
.forum-table a:hover {
  text-decoration: underline;
}

.cart .product,
.data-table .product,
.data-table .message,
.data-table .info,
.data-table .name {
  min-width: 225px;
  text-align: left;
}

.forum-table .forum-details,
.forum-table .topic-details {
  text-align: left;
}

.cart .product a,
.data-table .product a,
.data-table .info a {
  font-weight: bold;
  color: #242423;
}

.cart .product a:hover,
.data-table .product a:hover,
.data-table .info a:hover {
  color: #0078d2;
  text-decoration: none;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}

.cart .product .edit-item {
  margin: 10px 0 0;
}

.cart .product .edit-item a {
  font-weight: normal;
  color: #0078d2;
}

.cart .product .edit-item a:hover {
  text-decoration: underline;
}

.cart .remove-from-cart,
.cart .add-to-cart,
.data-table .select-boxes,
.data-table .order {
  text-align: center;
}

.cart td.unit-price,
.data-table td.unit-price {
  white-space: nowrap;
}

.cart td.quantity input {
  width: 50px;
  text-align: center;
}

.cart td.subtotal,
.data-table td.total {
  white-space: nowrap;
  color: #242423;
}

.cart td.subtotal .discount,
.cart td.subtotal .discount-additional-info {
  font-style: italic;
  color: #0078d2;
}

.data-table em a {
  font-weight: bold;
  color: #242423;
}

.data-table div.download {
  margin: 10px 0 0;
}

/*********** NOTIFICATIONS & POPUPS  ***********/

.bar-notification-container {
  position: fixed;
  bottom: 30px;
  right: 5%;
  z-index: 9999;
  width: auto;
  line-height: 16px;
  color: #fff;
  opacity: 1;
}

.bar-notification.success {
  background-color: #109533;
}

.bar-notification.error {
  background-color: #e71d36;
}

.bar-notification.warning {
  background-color: #fb5607;
}

.bar-notification {
  position: relative;
  display: none;
  padding: 15px 45px 15px 20px;
  border-radius: 20px;
}

.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('/Themes/NopKalles/Content/images/close.png') center no-repeat;
  cursor: pointer;
  border-radius: 100%;
}

.popup-notification {
  border-radius: 5px;
  padding: 3px;
  margin: 5px 0;
}

.popup-notification.success {
  border: 2px rgba(75, 176, 122, 0.5) solid;
}

.popup-notification.error {
  border: 2px rgba(228, 68, 76, 0.5) solid;
}

.popup-notification.warning {
  border: 2px rgba(243, 156, 18, 0.5) solid;
}

.noscript {
  border-bottom: 1px solid #333;
  background-color: #ff9;
  padding: 30px 15px;
  text-align: center;
  line-height: 22px;
  color: #242423;
}

.ajax-loading-block-window {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  background: url('/Themes/NopKalles/Content/images/loading.gif') center no-repeat;
}

.please-wait {
  background: url('/Themes/NopKalles/Content/images/ajax-loader-small.gif') no-repeat;
  padding-left: 20px;
  font-size: 14px;
}

.ui-dialog {
  max-width: 90%;
  border: 1px solid #d9d9d9;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  background-color: #fff;
  /*override jQuery UI styles, do not delete doubled properties*/
  border-radius: 0;
  padding: 0;
  font:
    normal 14px Arial,
    Helvetica,
    sans-serif;
}

.ui-dialog:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.ui-dialog-titlebar {
  border-bottom: 1px solid #d9d9d9;
  overflow: hidden;
  background-color: #ebebf0;
  padding: 10px 15px;
  /*override jQuery UI styles, do not delete doubled properties*/
  border-width: 0 0 1px;
  border-radius: 0;
  background-image: none;
  padding: 10px 15px !important;
  font-weight: normal;
  cursor: auto !important;
}

.ui-dialog-titlebar > span {
  float: left;
  font-size: 18px;
  color: #242423;
  /*override jQuery UI styles, do not delete doubled properties*/
  margin: 0 !important;
}

.ui-dialog-titlebar button {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  border: none;
  overflow: hidden;
  background: url('/Themes/NopKalles/Content/images/close.png') center no-repeat;
  font-size: 0;
  /*override jQuery UI styles, do not delete doubled properties*/
  top: 0 !important;
  right: 0 !important;
  width: 42px !important;
  height: 42px !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0;
  background: url('/Themes/NopKalles/Content/images/close.png') center no-repeat !important;
  padding: 0 !important;
}

.ui-dialog-titlebar button span {
  display: none !important;
}

.ui-dialog-content {
  padding: 15px;
  line-height: 20px;
  /*override jQuery UI styles, do not delete doubled properties*/
  background-color: #fff !important;
  padding: 15px 15px 20px 15px !important;
  color: #777;
}

.ui-dialog-content .page {
  min-height: 0;
}

.ui-dialog-content .page-title {
  min-height: 0;
  margin: 0 0 15px;
  padding: 0px 10px 10px 10px;
  text-align: center;
}

.ui-dialog-content .page-title h1 {
  font-size: 24px;
  line-height: 30px;
}

.ui-dialog-content .back-in-stock-subscription-page {
  text-align: center;
}

.ui-dialog-content .back-in-stock-subscription-page .tooltip {
  margin-bottom: 10px;
}

.ui-dialog-content .back-in-stock-subscription-page .button-1 {
  border: none;
  background-color: #0078d2;
  padding: 10px 15px;
  font-size: 15px;
  color: #fff;
}

.ui-dialog-content .back-in-stock-subscription-page .button-1:hover {
  background-color: #79358f;
}

.eu-cookie-bar-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1050;
  width: 320px;
  height: 180px;
  margin: -90px 0 0 -160px;
  border: 1px solid #ccc;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

.eu-cookie-bar-notification .text {
  margin-bottom: 20px;
  line-height: 20px;
}

.eu-cookie-bar-notification button {
  min-width: 60px;
  margin: 5px 0 10px;
  border: none;
  background-color: #0078d2;
  padding: 8px 12px;
  font-size: 14px;
  color: #fff;
}

.eu-cookie-bar-notification button:hover {
  background-color: #79358f;
}

.eu-cookie-bar-notification a {
  display: block;
  color: #0078d2;
}

.eu-cookie-bar-notification a:hover {
  text-decoration: underline;
}

/*********** HEADER ***********/

.admin-header-links {
  background-color: #333;
  text-align: center;
  color: #ebebf0;
}

.admin-header-links * {
  display: inline-block;
  margin: 0 10px;
  line-height: 35px;
  font-size: 12px;
  font-weight: bold;
}

.admin-header-links .impersonate {
  display: inline-block;
}

.admin-header-links .impersonate a {
  background-color: #555;
  padding: 0 15px;
}

.admin-header-links .impersonate a:hover {
  background-color: #666;
}

.header {
  position: relative;
  z-index: 50;
  width: 95%;
  margin: auto;
  text-align: center;
}

.header-banner {
  position: relative;
  overflow: hidden;
  /*height: 0px;*/
  background-color: #79358f;
  font-size: 12px;
  color: #fff;
}

.header-banner .row {
  min-height: 35px;
}

.header-banner a {
  color: #fff;
}

.header-banner a:hover {
  color: #fff;
  text-decoration: none;
}

.header-upper {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #d9d9d9;
}

.header-top {
  min-height: 41px;
  background-color: #0077d218;
  font-size: 12px;
}

.header-middle {
  min-height: 70px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: position 10s;
  -o-transition: position 10s;
  transition: all 0.3s ease;
}

.header-middle .dropdown-nav-container {
  z-index: 1;
}

.header-middle.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 50px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  animation: smoothScroll 0.5s forwards;
}

.header-menu-icons > li:not(:last-child) {
  position: relative;
  margin-right: 20px !important;
}

.header-menu-icons > li:first-child {
  margin-right: 10px !important;
}

.header-menu-icons > li > a,
.header-menu-icons > li > button {
  color: #242423;
}

.header-menu-icons > li > a:hover {
  text-decoration: none;
}

.header-selectors-wrapper {
  border-bottom: 1px solid #d9d9d9;
  padding: 10px 0;
}

.header-selectors-wrapper > div {
  display: block;
  width: 50%;
  margin: 10px auto;
  vertical-align: middle;
}

.header-selectors-wrapper select {
  width: 100%;
}

.language-list {
  max-width: 100%;
  margin-bottom: 0;
  font-size: 0;
}

.language-list li {
  display: inline-block;
  margin: 0 1px;
  vertical-align: middle;
}

.language-list a {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 18px;
  line-height: 0;
}

.language-list img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.header-links-wrapper {
  position: relative;
  padding: 20px 0;
}

.header-links ul {
  font-size: 0;
}

.header-links ul a.join-now {
  font-size: 16px;
}

.header-top--right .border-right {
  border-color: #ddd !important;
}

.header .language-selector > select,
.header .currency-selector > select {
  border: 0;
  background: transparent;
  color: #555a63;
  font-size: 12px;
  margin-top: -3px;
  padding: 0;
  height: auto;
}

.header-top-links > li {
  margin-right: 15px !important;
  border-color: #d9d9d9;
}

.header-top-links > li:last-child {
  margin-right: 0 !important;
}

.header-top-links > li > a {
  color: #555a63;
}

.header-top-links > li > a:hover {
  color: #0078d2;
}

.header-top-links > li > a > i {
  margin-right: 1px;
}

.header-lower {
  position: relative;
  z-index: 0;
  padding: 35px 0;
}

.header-logo {
  margin: 0 0 20px;
  text-align: center;
}

.header-logo a {
  display: inline-block;
  max-width: 100%;
  line-height: 0;
  /*firefox line-height bug fix*/
}

.header-logo a img {
  max-width: 100%;
  width: 185px;
  height: auto;
  opacity: 1;
}

.search-box-dropdown {
}

.search-box-dropdown .search-box {
  display: none;
  position: absolute;
  background: #fff;
  padding: 15px;
  left: auto !important;
  right: 0;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.2);
  z-index: 10;
  min-width: 330px;
  border-radius: 0;
  text-transform: capitalize;
  color: #787878;
  line-height: 18px;
  border: unset;
  border-top: 3px solid;
}

.search-box form {
  display: inline-block;
}

.search-box form:after {
  content: "";
  display: block;
  clear: both;
}

.search-box input.search-box-text {
  float: left;
  width: 200px;
  height: 36px;
  margin: 0 -1px 0 0;
}

.search-box .search-box-button {
  float: left;
  min-width: 86px;
  height: 36px;
  border: none;
  background-color: #0078d2;
  padding: 0 15px;
  text-align: center;
  color: #fff;
}

.search-box .search-box-button:hover {
  background-color: #79358f;
}

.search-box .ui-autocomplete-loading {
  background: #fff url('/Themes/NopKalles/Content/images/ajax-loader-small.gif') right center no-repeat;
}

.ui-helper-hidden-accessible {
  display: none !important;
}

.ui-autocomplete {
  width: 285px !important;
  border: 1px solid #d9d9d9;
  border-top: none;
  overflow: hidden;
  background-color: #fff;
  text-align: left;
  /*override jQuery UI styles, do not delete doubled properties*/
  border-radius: 0;
  padding: 0;
  font:
    normal 14px Arial,
    Helvetica,
    sans-serif;
}

.ui-autocomplete li {
  border-top: 1px solid #d9d9d9;
}

.ui-autocomplete li:first-child {
  border-top: none;
}

.ui-autocomplete a {
  display: block;
  padding: 15px;
  font-size: 14px;
  /*override jQuery UI styles, do not delete doubled properties*/
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
  padding: 15px !important;
  line-height: normal !important;
  color: #777 !important;
}

.ui-autocomplete a:hover,
.ui-autocomplete a.ui-state-focus {
  background-color: #f6f6f6 !important;
}

.ui-autocomplete img {
  display: none;
  min-width: 20px;
  margin: 0 10px 0 0;
  vertical-align: middle;
}

ul.top-menu.notmobile.without-megamenu {
  display: block;
}

ul.top-menu.mobile.without-megamenu,
.menu-toggle {
  display: none;
}

ul.top-menu.notmobile.without-megamenu > li {
  display: inline-block;
  position: relative;
}

ul.top-menu.notmobile.without-megamenu > li a {
  padding: 10px 15px;
}

ul.top-menu.notmobile.without-megamenu .sublist {
  display: none;
}

ul.top-menu.notmobile.without-megamenu li:hover .sublist {
  display: block;
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  box-shadow: 0 0 5px #000;
  z-index: 10;
}

/*********** BOTTOM TOOLBAR ***********/

.toolbar-bottom {
  position: fixed;
  bottom: 0;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
  z-index: 1000;
}

.toolbar-bottom > ul {
  min-height: 55px;
  padding: 5px 10px 3px;
}

.toolbar-bottom > ul > li {
  position: relative;
  -ms-flex: 1 0 20%;
  flex: 1 0 20%;
}

.toolbar-bottom > ul > li > * {
  color: #242423;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.toolbar-bottom > ul > li > *:hover,
.toolbar-bottom > ul > li > *:focus {
  color: #0078d2;
}

.toolbar-bottom > ul > li .title {
  padding-top: 5px;
  font-weight: 600;
}

.toolbar-bottom .counter-wrapper {
  bottom: -5px;
}

/*********** FOOTER ***********/

.footer {
  background-color: rgb(208, 218, 224) !important;
  text-align: center;
}

.footer-upper {
  width: 95%;
  margin: auto;
  border-bottom: 1px solid #d9d9d9;
  overflow: hidden;
  padding: 40px 0;
  font-size: 0;
}

.footer-block {
  width: 95%;
  margin: 1px auto;
  text-align: left;
  font-size: 14px;
  /*reset zeroing*/
  font-family: "AmericanSansVar", Arial, Helvetica, sans-serif;
}

.footer-block img {
  max-width: 200px;
}

.footer-block .title {
  margin: 0 0 1px;
  padding: 10px 0;
  font-size: 18px;
  cursor: pointer;
  color: #242423 !important;
}

.footer-block .title strong {
  font-weight: normal;
}

.footer-block .title .icons .fa-plus {
  display: block;
}

.footer-block .title .icons .fa-minus {
  display: none;
}

.footer-block .title.opened .icons .fa-plus {
  display: none;
}

.footer-block .title.opened .icons .fa-minus {
  display: block;
}

.footer-block .list {
  display: none;
  margin: 0 0 20px;
  padding: 15px 0;
}

.footer-block .list a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: rgb(24, 30, 37) !important;
  line-height: 20px;
  font-family: "AmericanSansVar", Helvetica, sans-serif;
}

.footer-block .list a:hover {
  color: rgb(0, 70, 127) !important;
  text-decoration: underline !important;
}

.follow-us {
  margin: 30px auto 0;
  text-align: center;
}

.follow-us .title {
  margin: 0 0 10px;
  background: none;
  color: #242423;
  cursor: auto;
}

.follow-us .social ul {
  margin: 0 0 30px;
  border-bottom: 1px solid #d9d9d9;
  padding: 0 0 30px;
  font-size: 0;
}

.follow-us .social li {
  display: inline-block;
  margin: 0 5px;
}

.follow-us .social a {
  display: block;
  width: 38px;
  height: 38px;
  background: url('/Themes/NopKalles/Content/images/social-sprite.png') no-repeat;
  font-size: 0;
}

.follow-us .social .facebook a {
  background-position: 0 0;
}

.follow-us .social .twitter a {
  background-position: -38px 0;
}

.follow-us .social .rss a {
  background-position: -76px 0;
}

.follow-us .social .youtube a {
  background-position: -114px 0;
}

.follow-us .social .google-plus a {
  background-position: -152px 0;
}

.footer-middle {
  border-top: 1px solid #82828f !important;
}

.footer-middle .title {
  padding: 0 0 7px;
  color: #242423 !important;
  font-size: 18px;
  font-weight: 500;
}

.footer-middle .title strong {
  font-size: 18px;
  font-weight: 500;
}

.newsletter-input-wrapper {
  background-color: #efeff1;
  min-width: 300px;
}

@media all and (max-width: 767px) {
  .footer-newsletter {
    width: 100%;
  }

  .newsletter-input-wrapper {
    width: 100%;
  }
}

.newsletter-email {
  display: flex;
  justify-content: flex-end;
  min-width: 300px;
}

.newsletter-email {
  overflow: hidden;
  border-radius: 50px;
  border: 0px solid #efeff1;
}

.newsletter-email input[type="email"] {
  width: 100%;
  height: 40px;
  padding: 0 10px 0 20px;
  background-color: #efeff1;
  color: #82828f;
  font-size: 13px;
  line-height: 18px;
  border: 0;
  outline: 0;
  border-radius: 50px;
  transition: border-color 0.5s;
  box-shadow: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.newsletter-subscribe-button,
.newsletter-email input[type="button"] {
  width: 150px;
  height: 35px;
  margin: 2px 3px 2px 2px;
  padding: 0 20px;
  text-transform: none;
  background: #000000;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  border: none;
  border-radius: 50px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.newsletter-subscribe-button:hover,
.newsletter-email input[type="button"]:hover {
  background-color: #0078d2;
}

.newsletter-email .options {
  clear: both;
  padding: 10px 0 0;
}

.newsletter-validation,
.newsletter-result {
  width: 100%;
  overflow: hidden;
  line-height: 28px;
}

.footer-lower {
  width: 95%;
  margin: auto;
  overflow: hidden;
  padding: 25px 0;
  font-size: 12px;
}

.footer-tax-shipping a {
  font-weight: bold;
  color: #0078d2;
}

.footer-tax-shipping a:hover {
  text-decoration: underline;
}

.footer-powered-by {
  margin: 10px 0 0;
}

.footer-powered-by a {
  font-weight: bold;
  color: #0078d2;
}

.footer-powered-by a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background-color: rgb(208, 218, 224) !important;
}

.footer-bottom .container {
  padding: 0 30px !important;
}

.footer-bottom .row {
  border-top: 1px solid #82828f !important;
  padding-top: 20px;
}

.footer-bottom .row .col-12 {
  padding-left: 0;
}

.theme-selector {
  margin: 10px 0 0;
}

.theme-selector select {
  width: 170px;
}

.footer-block .list > li:not(:last-child) {
  margin-bottom: 5px;
}

.footer-block.contact-info .list > li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-socials > ul > .list-inline-item:not(:last-child) {
  margin-right: 12px;
}

/*********** TOPBAR ***********/

body.tb-opened,
html.tb-opened {
  overflow: hidden;
}

.tb {
  visibility: hidden;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  -webkit-transform: translate3d(0, -105%, 0);
  transform: translate3d(0, -105%, 0);
  -webkit-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  z-index: 9100;
}

.tb.opened {
  visibility: visible;
  -webkit-transform: none !important;
  transform: none !important;
}

.tb--overlay {
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9000;
  pointer-events: auto;
  -webkit-transition:
    opacity 0.25s,
    visibility 0.25s;
  transition:
    opacity 0.25s,
    visibility 0.25s;
}

.tb--overlay.opened {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition:
    opacity 0.25s,
    visibility;
  transition:
    opacity 0.25s,
    visibility;
}

/*********** TOPBAR - SEARCH ***********/

.tb-search input[type="text"].search-box-text {
  width: 100%;
  height: 55px;
  padding: 0 40px 0 0;
  font-size: 25px;
  font-weight: 300;
  border: 0;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  outline: 0;
  transition: border-color 0.5s;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.tb-search .search-form {
  position: relative;
}

.tb-search [type="submit"]:not(:disabled).search-box-button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  width: 40px;
  border: none;
  background: #fff;
  background-color: transparent;
  color: #242423;
  font-size: 25px;
  font-weight: 600;
  min-height: 55px;
}

.tb-search [type="submit"]:not(:disabled).search-box-button:focus {
  outline: 0;
}

.tb-search [type="submit"]:not(:disabled).search-box-button::before {
  content: "\f3ee";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
}

/*********** SIDEBAR ***********/

body.sb-opened,
html.sb-opened {
  overflow: hidden !important;
  max-height: 100vh !important;
}

.sb {
  visibility: hidden;
  width: 300px;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.2s;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  z-index: 9100;
}

.sb-left {
  right: auto;
  left: 0;
  -webkit-transform: translate3d(-104%, 0, 0);
  transform: translate3d(-104%, 0, 0);
}

.sb-right {
  right: 0;
  left: auto;
  -webkit-transform: translate3d(104%, 0, 0);
  transform: translate3d(104%, 0, 0);
}

.sb.opened {
  visibility: visible;
  -webkit-transform: none !important;
  transform: none !important;
}

.sb--inner {
}

.sb--inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  z-index: 4;
  background-color: #fff;
  pointer-events: none;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.sb--header {
  min-height: 60px;
  padding: 5px 0 5px 20px;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
}

.sb--title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin: 0;
}

.sb--btn-close {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 40px;
  max-width: 100%;
  height: 50px;
  padding-right: 15px;
  font-weight: 600;
  line-height: 50px;
  text-align: right;
}

.sb--content {
}

.sb--header-inner {
  padding: 10px 20px;
  font-weight: 600;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
  box-shadow: 0 3px 10px 0 rgba(129, 129, 129, 0.2);
}

.sb--content-inner {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.sb--scroll {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.sb--scroll-inner {
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.sb--content-scroll {
  opacity: 1;
  padding: 20px;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition:
    opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s,
    -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s;
  transition:
    opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s,
    transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s,
    -webkit-transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s;
}

.sb--footer {
  text-align: left;
  border-top: 1px solid rgba(129, 129, 129, 0.2);
  -webkit-box-shadow: 0 0 10px 0 rgba(129, 129, 129, 0.2);
  -moz-box-shadow: 0 0 10px 0 rgba(129, 129, 129, 0.2);
  box-shadow: 0 0 10px 0 rgba(129, 129, 129, 0.2);
}

.sb--overlay {
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9000;
  pointer-events: auto;
  -webkit-transition:
    opacity 0.25s,
    visibility 0.25s;
  transition:
    opacity 0.25s,
    visibility 0.25s;
}

.sb--overlay.opened {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition:
    opacity 0.25s,
    visibility;
  transition:
    opacity 0.25s,
    visibility;
}

.sb .nav-tabs {
  background-color: rgba(0, 0, 0, 0.04);
}

.sb .nav-tabs .nav-link {
  height: 60px;
  padding: 5px 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.04);
}

.sb .nav-tabs .nav-link.active {
  background-color: rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid #0078d2;
}

/*** SIDEBAR - SEARCH ***/

.search-result--list > .search-result--list-item:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.search-result--list > .search-result--list-item {
  background-color: #fff;
  transition: background-color 0.3s;
}

.search-result--list > .search-result--list-item:hover {
  background-color: #f6f6f6;
}

.search-result--p-img {
  width: 85px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
}

.search-result--p-img img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.search-result--p-overview {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
}

.search-result--p-title {
  line-height: 20px;
}

/*** SIDEBAR - MINI CART ***/

.mini-cart--list > .mini-cart--list-item:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.mini-cart--list > .mini-cart--list-item {
  background-color: #fff;
  transition: background-color 0.3s;
}

.mini-cart--list > .mini-cart--list-item:hover {
  background-color: #f6f6f6;
}

.mini-cart--p-img {
  width: 120px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
}

.mini-cart--p-img img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.mini-cart--p-overview {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
}

.mini-cart--p-title {
  color: #222;
  line-height: 20px;
}

.mini-cart--p-title:hover {
  color: #0078d2;
}

.mini-cart--p-buttons button {
  color: #222;
}

.mini-cart--p-buttons button:hover,
.mini-cart--p-buttons button:focus {
  color: #0078d2;
}

.mini-cart--p-buttons .delete-item button:hover,
.mini-cart--p-buttons .delete-item button:focus {
  color: #e71d36;
}

.mini-cart--footer {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

/*********** PRODUCT GRID ***********/

.p-card {
  border: 1px solid #e3e9f2;
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.p-card:hover {
  -webkit-box-shadow: 0px 5px 20px #e9dfec;
  -moz-box-shadow: 0px 5px 20px #e9dfec;
  box-shadow: 0px 5px 20px #e9dfec;
}

.p-card .offer-content {
  top: 15px;
  right: 15px;
}

.nt-ribbon-wrapper {
  z-index: 1;
}

.nt-ribbon {
  min-width: 60px;
  min-height: 25px;
  margin-bottom: 5px;
  background-color: #e5e5e5;
  color: #ffffff;
  font-size: 12px;
  border-radius: 3px;
}

.nt-ribbon.new {
  background-color: #109533;
}

.nt-ribbon.sale {
  background-color: #fb5607;
}

.nt-ribbon.best {
  background-color: #82828f;
}

.p-card--img .nt-labels {
  top: 15px;
  right: 15px;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.p-card--img .nt-label {
  width: 60px;
  height: 60px;
  background-color: #e5e5e5;
  font-size: 14px;
  border-radius: 50%;
  z-index: 20;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.p-card--img .nt-label.new {
  background-color: #109533;
}

.p-card--img .nt-label.sale {
  background-color: #fb5607;
}

.p-card--link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.p-card:hover .p-card--link::before {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.p-card--link-img {
  padding-top: 125%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition:
    opacity 0.3s,
    -webkit-transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition:
    opacity 0.3s,
    transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-card--link + .p-card--img-hover {
  opacity: 1;
}

.p-card--img-hover {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  opacity: 0;
}

.p-card:hover .p-card--img-hover {
  opacity: 1;
}

.p-card--img-hover-inner {
  padding-top: 125%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition:
    opacity 0.3s,
    -webkit-transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition:
    opacity 0.3s,
    transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-card--btn-icons {
  top: 12px;
  left: 12px;
  z-index: 2;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.p-card--btn-icons.p-card--cp {
  top: 40px;
}

.p-card--btn-icons .add-list {
  opacity: 0;
  visibility: hidden;
  width: 20px;
  height: 22px;
  background: transparent;
  font-size: 18px;
  color: #fff;
  line-height: 1;
  border: 0;
}

.p-card--btn-icons .add-list.add-wt .fas {
  color: #e63946;
}

.p-card--btn-icons .add-list:focus {
  outline: 0;
  border: 0;
}

.p-card:hover .p-card--btn-icons .add-list {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.p-card--hvr-btn {
  top: 40%;
  left: 50%;
  max-width: 100%;
  padding: 0 5px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}

.p-card:hover .p-card--hvr-btn {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.p-card--hvr-btn .add-btn {
  margin: 2.5px 0;
  padding: 15px;
  background: #fff;
  color: #242423;
  font-size: 0;
  border-radius: 40px;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: none !important;
}

.p-card--hvr-btn .add-btn:focus {
  outline: 0;
  border: 0;
}

.p-card--hvr-btn .add-btn:hover {
  background: #0078d2;
  color: #fff;
}

.p-card--hvr-btn .add-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  margin-left: -9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left-color: #fff;
  border-radius: 50%;
  vertical-align: middle;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  opacity: 0;
}

.p-card--hvr-btn .add-btn:not(:hover):after {
  border-color: rgba(0, 0, 0, 0.3);
  border-left-color: #fff;
}

.p-card--hvr-btn .btn-icon {
  font-size: 18px;
  font-weight: 600;
}

.p-card--hvr-btn .add-btn:hover .btn-icon {
  -webkit-transform: translateY(0) translateZ(0);
  transform: translateY(0) translateZ(0);
}

.p-card--attr {
  bottom: 5px;
  left: 10px;
  right: 10px;
  text-shadow:
    -1px -1px 1px rgba(255, 255, 255, 0.1),
    1px 1px 1px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}

.p-card:hover .p-card--attr {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.p-card--info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
}

.p-card--title {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  width: 100%;
  text-align: left;
  font-family: "AmericanSans", Helvetica, Arial;
}

.p-card--title-link {
  color: #627a8b;
}

.p-card .product-rating-box {
  margin-top: 10px;
}

.p-card--ratings > ul > li {
  color: #f0ad4e;
}

.p-card--ratings > ul > li.list-inline-item:not(:last-child) {
  margin-right: 5px;
}

.p-card--prices {
  margin: 15px 0 10px;
  text-align: right;
  line-height: 27px;
  flex-grow: 2;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  width: 100%;
  color: #00467f;
  font-family: "AmericanSans", Helvetica, Arial;
}

.p-card--price.old-price {
  text-decoration: line-through;
}

.p-card .attribute-circles,
.p-card .attribute-squares {
  margin-top: 15px;
}

/****** SHOPPING CART & WISHLIST ******/

.sp-cart--header,
.wl--header {
  font-size: 14px;
  color: #242423;
  font-weight: 600;
  padding: 20px 0 10px;
}

.sp-cart--list-item,
.wl--list-item {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  border-top: 1px solid #d9d9d9;
  position: relative;
  overflow: hidden;
}

.sp-cart--img {
  min-width: 120px;
  max-width: 120px;
}

.wl--img {
  min-width: 90px;
}

.sp-cart--form .p-qty--counter,
.wl--form .p-qty--counter {
  max-width: 150px;
  align-items: center;
  flex-wrap: nowrap;
}

.sp-cart--form .p-qty--counter input,
.wl--form .p-qty--counter input {
  width: 40px;
  padding: 0;
}

.sp-cart--totals {
  padding: 15px;
  -webkit-box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.3);
}

.sp-cart--totals .btn-primary {
  height: 44px;
}

.estimate-shipping .inputs label {
  width: auto;
}

.estimate-shipping .buttons input[type="button"] {
  height: 40px;
}

/****** ORDER SUMMARY ******/

.odr-summary--overview,
.odr-summary--total {
  border-bottom: 1px solid #ddd;
}

.odr-summary--overview {
  border-top: 1px solid #ddd;
}

.odr-summary--list > li:not(:last-child) {
  margin-bottom: 10px;
}

.odr-summary--list-wrapper {
  max-height: 300px;
}

.odr-p--img-wrapper {
  width: 65px;
  height: 65px;
  border-radius: 7px;
  border: 1px solid #ebebf0;
}

.odr-p--img-container {
  border-radius: 7px;
  z-index: 1;
}

.odr-p--img-container img {
  max-width: 100%;
  max-height: 100%;
}

.odr-p--qty {
  top: -6px;
  right: -8px;
  min-width: 21px;
  height: 21px;
  padding: 0 3px;
  font-size: 12px;
  border-radius: 20px;
  z-index: 3;
}

/****** BLOG & NEWS ******/

.blog-list-homepage {
  margin-bottom: 80px;
}

.blog-item--img::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  content: "";
  z-index: 2;
}

.blog-item:hover .blog-item--img::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -moz-transition: 0.6s;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.blog-item--img-inner {
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.blog-item--title {
  font-size: 16px;
}

.blog-item--title-link {
  color: #242423;
}

/*********** FEATURED BANNER ***********/

.featured-banners {
  margin-bottom: 80px;
}

.featured-banner--link.btn-sm {
  padding-top: 8px !important;
}

.featured-banner--img {
  padding-top: 52.63157894736842%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.featured-banner--label {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.featured-banner--label h3 {
  font-weight: 500;
  letter-spacing: 1px;
}

/*********** INSTAGRAM FEED ***********/

.instagram-feed--img {
  padding-top: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/*********** SHIPPING TYPE ***********/

.shipping-types {
  margin-top: 50px;
  margin-bottom: 30px;
}

.shipping-type {
}

.shipping-type--icon {
  font-size: 36px;
  line-height: 100%;
}

.shipping-type--icon img {
  max-width: 50px;
}

.shipping-type--info {
}

.shipping-type--title {
  font-size: 14px;
}

.shipping-type--desc {
  font-size: 14px;
}

/*********** SIDE COLUMN ***********/

.block {
  min-height: 50px;
  margin: auto;
  text-align: left;
}

.side-2 .accordion {
  margin-bottom: 15px;
}

.block:not(.filter-section) .title {
  position: relative;
  margin: 0 0 10px;
  border-bottom: 1px solid #d9d9d9;
  background: #f6f6f6 url('/Themes/NopKalles/Content/images/toggle-gray.png') right 14px no-repeat;
  padding: 12px 30px 12px 10px;
  font-size: 18px;
  color: #242423;
  cursor: pointer;
}

.block .title strong {
  font-weight: normal;
}

.filter-section .title .ajaxfilter-title,
.filter-section .title h5 {
  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;
  width: 100%;
  min-height: 44px;
  padding: 5px 20px 5px;
  font-size: 14px;
  font-weight: 500;
}

.side-2 .filter-section .title .ajaxfilter-title,
.side-2 .filter-section .title h5 {
  position: relative;
  padding: 5px 10px 5px 9px;
  cursor: pointer;
}

.side-2 .filter-section .title .ajaxfilter-title::after,
.side-2 .filter-section .title h5::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 60px;
  height: 2.5px;
  background: #82828f;
}

.filter-section .title h5[data-toggle="collapse"] .fa:before,
.filter-section .title .ajaxfilter-title[data-toggle="collapse"] .fa:before {
  content: "\f068";
}

.filter-section .title h5[data-toggle="collapse"].collapsed .fa:before,
.filter-section .title .ajaxfilter-title[data-toggle="collapse"].collapsed .fa:before {
  content: "\f067";
}

.block .listbox:not(.ajaxfilter-section) {
  display: none;
  border-bottom: 1px solid #d9d9d9;
  padding: 10px 5px;
}

.block .list li {
  padding: 5px 0 5px 15px;
}

.block.filter-section .list li {
  padding: 5px 0;
}

.block.filter-section .list li .sublist li {
  padding-left: 20px;
}

.block .list a {
  display: inline-block;
  position: relative;
  padding: 5px 0;
  font-size: 16px;
  color: #242423;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.block.filter-section .list a {
  color: #82828f;
  font-size: 14px;
}

.block:not(.filter-section) .list a:before {
  content: "";
  position: absolute;
  top: 12px;
  left: -15px;
  width: 5px;
  height: 5px;
  background-color: #d9d9d9;
}

.block .list .active > a {
  color: #0078d2;
}

.block .list a:hover {
  color: #0078d2;
}

.block a.product-picture {
  display: inline-block;
  position: relative;
  width: 30%;
  max-width: 110px;
  padding-right: 10px;
  vertical-align: middle;
}

.block a.product-picture .product-picture-img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.block .sublist {
  margin: 15px 0 5px;
}

.block .sublist a {
  font-size: 14px;
}

.block.block-account .title {
  margin: 0;
  padding: 12px 30px 12px 0;
  font-weight: 500;
}

.block .list.list-account {
  margin: 0;
  padding: 0;
  border: 1px solid #ddd;
}

.block .list.list-account > li {
  padding: 0;
}

.block .list.list-account > li > a {
  display: block;
  padding: 10px 15px;
  background-color: transparent;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.block .list.list-account > li:last-child > a {
  border-bottom: 0;
}

.block .list.list-account > li > a.active {
  background-color: #f6f6f6;
}

.block .list.list-account a:before {
  display: none;
}

.block .view-all {
  margin: 10px 10px 0;
}

.block .view-all a {
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  color: #0078d2;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.block .view-all a:hover {
  color: #79358f;
}

.block .tags {
  margin: 5px 0 10px;
}

.block .tags ul {
  margin-left: -10px !important;
  font-size: 0;
}

.block .tags li,
.product-tags-all-page li {
  display: inline-block;
  position: relative;
  margin: 0 10px;
  overflow: hidden;
  font-size: 17px !important;
  /*setting base size*/
}

.block .tags > li:first-child,
.product-tags-all-page > li:first-child {
  margin-left: 0;
}

.block .tags > li:last-child,
.product-tags-all-page > li:last-child {
  margin-right: 0;
}

.block .tags li a,
.product-tags-all-page li a {
  float: left;
  line-height: 30px;
  color: #242423;
}

.block .tags li a:hover,
.product-tags-all-page li a:hover {
  color: #0078d2;
}

.poll strong {
  display: block;
  margin: 10px 0;
  background-color: #f6f6f6;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: normal;
  color: #242423;
}

.poll-options,
.poll-results {
  margin: 10px 0 15px;
  overflow: hidden;
  font-size: 15px;
  color: #242423;
}

.poll-options li,
.poll-results li {
  margin: 10px 0;
}

.poll-options li > input {
  margin: 0 5px 0 0;
  cursor: pointer;
}

.poll-options li > label {
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

.poll .buttons,
.poll-total-votes {
}

.poll .buttons input {
  border: none;
  background-color: #aaa;
  padding: 10px 20px;
  font-size: 13px;
  color: #fff;
}

.poll .buttons input:hover {
  background-color: #bbb;
}

.poll-total-votes {
  display: block;
  margin: 10px 0 0;
  font-weight: bold;
  font-style: italic;
  color: #242423;
}

.home-page-polls {
  text-align: center;
}

.home-page-polls .title {
  border-bottom: 1px solid #d9d9d9;
  color: #242423;
  font-size: 30px;
  font-weight: normal;
  margin: 0 0 30px;
  padding: 0 0 15px;
}

.home-page-polls .title strong {
  font-weight: normal;
}

.home-page-polls li {
  display: inline-block;
  margin: 10px;
}

/********** HOME PAGE - CATEGORY GRID **********/

.cat-grid--item {
  position: relative;
  overflow: hidden;
}

.cat-grid--item-1 {
  margin-bottom: 30px;
}

.cat-grid--item-link {
  display: block;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.cat-grid--item-inner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 111.1111111111111%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

.cat-grid--item:hover .cat-grid--item-inner {
  -webkit-transform: scale(1.11);
  -o-transform: scale(1.11);
  -moz-transform: scale(1.11);
  transform: scale(1.11);
}

.cat-grid--item-0 .cat-grid--item-inner {
  padding-top: 110.52631578947368%;
}

.cat-grid--item-3 .cat-grid--item-inner {
  padding-top: 233.333333%;
}

.cat-grid--item-name {
  position: absolute;
  bottom: 20px;
  left: 50%;
  min-width: 150px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  -webkit-box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  pointer-events: none;
  border-radius: 5px;
}

.cat-grid--item:hover .cat-grid--item-name {
  background: #0078d2;
  color: #fff;
}

/********** CATEGORY PAGE **********/

.cat-menu {
  position: relative;
  padding: 0 15px;
  border-top: 1px solid #dedede;
}

.cat-menu > li {
  line-height: 25px;
}

.cat-menu > li > a {
  padding: 10px 15px;
}

.cat-menu li.more-item {
  display: none;
}

.cat-menu li.more-item > span {
  padding: 10px 15px;
  cursor: pointer;
}

.cat-menu .more-menu {
  opacity: 0;
  visibility: hidden;
  min-width: 170px;
  position: absolute;
  right: 15px;
  margin: -3px 0 0;
  padding-top: 8px;
  text-align: left;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  z-index: 1000;
}

.cat-menu li.more-item:hover ul.more-menu {
  opacity: 1;
  visibility: visible;
}

.cat-menu .more-menu li a {
  display: block;
  width: 100%;
  padding: 8px 15px;
  background-color: transparent;
  color: #82828f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition:
    background-color 0.2s ease-in-out,
    color 0.2s ease-in-out;
  transition:
    background-color 0.2s ease-in-out,
    color 0.2s ease-in-out;
}

.cat-menu .more-menu li a:hover {
  background-color: rgba(86, 207, 225, 0.08);
  color: #0078d2;
}

.p-selectors {
  padding: 15px;
}

.p-selectors--inner {
  padding: 20px 10px;
  border: 1px solid #e3e9f2;
}

.category-page-header-tools .catalog-open-filters-btn {
  line-height: 1;
  color: #5c6d8a !important;
}

.category-page-header-tools .catalog-open-filters-btn:hover {
  color: #4a5a75 !important;
}

.category-page-header-tools .catalog-open-filters-btn__icon {
  font-size: 1.125rem;
  vertical-align: middle;
}

.category-page-header-tools .catalog-open-filters-btn:focus {
  box-shadow: none;
}

.vm-btn.selected {
  color: #0078d2;
  pointer-events: none;
}

.breadcrumb {
  margin: 0 0 50px;
  background-color: #f6f6f6;
  padding: 5px 10px;
}

.breadcrumb ul {
  font-size: 0;
}

.breadcrumb li {
  display: inline-block;
}

.breadcrumb li * {
  display: inline-block;
  margin: 0;
  font-size: 13px;
  /*reset zeroing*/
  line-height: 1.5;
}

.breadcrumb li .delimiter {
  margin: 0 8px;
}

.breadcrumb li a {
  color: #242423;
}

.breadcrumb strong {
  font-weight: normal;
}

.breadcrumb a:hover {
  color: #0078d2;
}

.plugin-disabled .btn-toggle-filter {
  pointer-events: none;
}

.category-description,
.manufacturer-description,
.vendor-description {
  margin: 0 0 25px;
  line-height: 22px;
}

.product-page-size select,
.product-sort-by select {
  display: inline-block;
  width: 100%;
  min-width: 65px;
  height: 32px;
  padding: 0 23px 0 15px;
  background: #fff
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
    no-repeat right 0.75rem center/8px 10px;
  vertical-align: middle;
  color: #242423;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 4px;
  border: 1px solid #ddd;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.cat-sort-dd.btn-group {
}

.contact-vendor {
  margin: 0 0 30px;
}

.contact-vendor .button-2 {
  border: none;
  background-color: #0078d2;
  padding: 10px 15px;
  font-size: 14px;
  color: #fff;
}

.contact-vendor .button-2:hover {
  background-color: #79358f;
}

.product-selectors {
  margin: 0 0 20px;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 20px 0;
}

.product-selectors:first-child {
  border-top: none;
}

.product-selectors:after {
  content: "";
  display: block;
  clear: both;
}

.product-selectors > div {
  display: inline-block;
  margin: 5px;
}

.product-selectors span {
  vertical-align: middle;
  font-size: 16px;
}

.product-selectors select {
  margin: 0 8px;
}

.product-selectors .product-viewmode {
  display: none;
  font-size: 0;
}

.product-filters {
  display: table;
  width: 100%;
  margin: 0px 0px 20px;
  border-bottom: 1px solid #d9d9d9;
}

.product-filter {
  margin: 0 0 10px;
}

.product-filter .filter-title {
  margin: 0 0 10px;
  background-color: #f6f6f6;
  padding: 10px;
  font-size: 17px;
  color: #242423;
}

.product-filter .filter-title strong {
  font-weight: normal;
}

.product-filter .filter-content {
  padding: 10px;
  color: #242423;
}

.product-filter .available-items:after {
  content: "";
  display: block;
  clear: both;
}

.product-filter .group {
  margin: 0 0 10px;
}

.product-filter .group li {
  font-size: 15px;
}

.product-filter .group li a,
.product-filter .group li strong {
  display: inline-block;
  padding: 5px 0;
}

.product-filter .group li a:hover {
  color: #0078d2;
}

.product-filter .group li.item {
  display: inline-block;
  position: relative;
  margin: 0 15px 0 0;
  padding: 0 0 0 15px;
}

.product-filter .group li.item:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #d9d9d9;
}

.product-filter .group li.color-item {
  padding: 0;
  display: inline-block;
}

.product-filter .group li.color-item a {
  padding: 0;
}

.product-filter .group li.color-item:before {
  display: none;
}

.filtered-items .title {
  margin: 0 0 5px;
  font-style: italic;
}

.filtered-items .item {
  color: #0078d2;
}

.remove-filter {
  margin: 15px 0;
}

.remove-filter a {
  display: inline-block;
  background-color: #aaa;
  padding: 10px 20px;
  font-size: 13px;
  color: #fff;
}

.remove-filter a:hover {
  background-color: #999;
}

.item-grid:after {
  content: "";
  display: block;
  clear: both;
}

.item-box {
  position: relative;
  width: 100%;
  float: left;
  margin: 0 0 20px;
  text-align: left;
}

.item-box .picture {
  z-index: 1;
  overflow: hidden;
  background-color: #fff;
  margin: 0 0 20px;
}

.item-box .picture a {
  display: block;
  position: relative;
}

.item-box .picture a:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.item-box .picture a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateZ(0) scale(1, 1);
}

.item-box:hover .picture a img {
  opacity: 0.85;
}

.item-box .details {
  padding: 0 10px;
}

.item-box .product-title {
  margin: 0 0 10px;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.2;
  font-weight: normal;
  color: #0078d2;
}

.item-box .product-title a {
  display: block;
}

.item-box .product-title a:hover {
  color: #79358f;
}

.item-box .sku {
  margin: 0 0 15px;
}

.item-box .product-rating-box,
.p-card .product-rating-box {
  display: inline-block;
  width: 100%;
  text-align: left;
}

.item-box .rating,
.p-card .rating {
  background: url('/Themes/NopKalles/Content/images/rating1.png') repeat-x;
  width: 95px;
  height: 14px;
}

.item-box .rating div,
.p-card .rating div {
  background: url('/Themes/NopKalles/Content/images/rating2.png') repeat-x;
  height: 14px;
}

.item-box .description,
.p-card .description {
  display: none;
}

.item-box .description a,
.p-card .description a {
  display: block;
  overflow: hidden;
}

.item-box .prices {
  margin: 0 0 10px;
  overflow: hidden;
}

.item-box .old-price {
  text-decoration: line-through;
}

.item-box .tax-shipping-info a {
  color: #0078d2;
}

.item-box .tax-shipping-info a:hover {
  text-decoration: underline;
}

.item-box .buttons {
  margin: 0;
  font-size: 0;
}

.item-box input[type="button"] {
  display: inline-block;
  height: 40px;
  border: none;
  vertical-align: middle;
}

.item-box .product-box-add-to-cart-button {
  width: 60%;
  background-color: #0078d2;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

.item-box .product-box-add-to-cart-button:hover {
  background-color: #79358f;
}

.item-box .add-to-compare-list-button,
.item-box .add-to-wishlist-button {
  width: 20%;
  border-left: 1px solid #fff !important;
  background-color: #eaeaea;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
}

.item-box .add-to-compare-list-button {
  background-image: url('/Themes/NopKalles/Content/images/compare-button.png');
}

.item-box .add-to-wishlist-button {
  background-image: url('/Themes/NopKalles/Content/images/wishlist-button.png');
}

.item-box .add-to-compare-list-button:hover,
.item-box .add-to-wishlist-button:hover {
  background-color: #d9d9d9;
}

.home-page-category-grid,
.sub-category-grid,
.manufacturer-grid,
.vendor-grid {
  margin: 0 0 20px;
}

.home-page-category-grid {
  margin-bottom: 76px;
}

.home-page-category-grid .title,
.sub-category-grid .title {
  text-align: center;
  font-size: 22px;
  font-weight: normal;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home-page-category-grid .title a,
.sub-category-grid .title a {
  display: block;
  padding: 0 0 15px;
}

.home-page-category-grid .picture,
.sub-category-grid .picture {
  margin: 0;
}

.home-page-category-grid .picture a:before,
.sub-category-grid .picture a:before {
  padding-top: 65%;
}

.product-grid,
.product-list {
  margin: 0 0 50px;
}

.product-grid .title {
  margin: 0 0 30px;
  border-bottom: 1px solid #d9d9d9;
  padding: 0 0 15px;
  font-size: 30px;
  font-weight: normal;
  color: #242423;
}

.product-grid .title strong {
  font-weight: normal;
}

.manufacturer-grid .title {
  margin: 0 0 15px;
  text-align: center;
  font-size: 16px;
}

.manufacturer-grid .title a:hover {
  color: #0078d2;
}

.manufacturer-grid .picture {
  border: 1px solid #d9d9d9;
}

.vendor-grid .title {
  margin: 0 0 15px;
  text-align: center;
  font-size: 16px;
}

.vendor-grid .title a:hover {
  color: #0078d2;
}

.vendor-grid .picture {
  border: 1px solid #d9d9d9;
}

.pager {
  margin: 0 0 30px;
}

.pager ul {
  text-align: center;
  font-size: 0;
}

.pager li {
  display: inline-block;
  margin: 0 5px 10px;
  vertical-align: top;
}

.pager li a,
.pager li span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 35px;
  height: 35px;
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
  font-size: 14px;
  /*reset zeroing*/
  cursor: pointer;
  border-radius: 100%;
}

.pager li a {
  color: #242423;
}

.pager li span {
  border-color: transparent;
  background-color: #0078d2;
  color: #fff;
}

.pager li.previous-page *,
.pager li.next-page *,
.pager li.first-page *,
.pager li.last-page * {
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
  color: #fff;
  border-radius: 0;
  border: 0;
}

.pager li.first-page * {
  background-image: url('/Themes/NopKalles/Content/images/first.png');
}

.pager li.last-page * {
  background-image: url('/Themes/NopKalles/Content/images/last.png');
}

.pager li a:hover {
  border-color: transparent;
  background-color: #ebebf0;
  color: #242423;
}

.pager li.previous-page > a::before,
.pager li.next-page > a::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 900;
  display: block;
  color: #82828f;
}

.pager li.previous-page > a::before {
  content: "\f30a";
}

.pager li.next-page > a::before {
  content: "\f30b";
}

/********** PRODUCT PAGE **********/

.product-details-page {
  padding: 20px 0 0;
}

.product-essential:after {
  content: "";
  display: block;
  clear: both;
}

.gallery .picture-thumbs .thumb-item {
  display: inline-block;
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 5px 10px;
  overflow: hidden;
  cursor: pointer;
}

.gallery .picture-thumbs .thumb-item img {
  width: 100px;
  max-width: 100%;
}

.gallery .picture-thumbs .thumb-item:first-child {
  margin-left: 0;
}

.gallery .picture-thumbs .thumb-item:last-child {
  margin-right: 0;
}

.overview {
  position: relative;
  margin: 0 0 0;
}

.overview .discontinued-product {
  background: #f3f3f3;
  margin: 0 0 20px;
}

.overview .discontinued-product h4 {
  display: inline-block;
  font-size: 14px;
  padding: 17px 17px 17px 40px;
  background: url('/Themes/NopKalles/Content/images/discontinued-product-icon.png') no-repeat 13px center;
  color: #de444c;
}

.overview .product-name h1 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
}

.overview .short-description {
  line-height: 22px;
}

.product-no-reviews,
.product-reviews-overview {
  margin: 0 0 10px;
  color: #242423;
}

.product-review-box {
  display: inline-block;
  margin: 0 0 8px;
}

.product-review-box .rating {
  width: 95px;
  height: 14px;
  background: url('/Themes/NopKalles/Content/images/rating1.png') repeat-x;
}

.product-review-box .rating div {
  height: 14px;
  background: url('/Themes/NopKalles/Content/images/rating2.png') repeat-x;
}

.product-review-links a:hover {
  color: #0078d2;
}

.overview .value a,
.variant-overview .value a {
  color: #0078d2;
}

.overview .value a:hover,
.variant-overview .value a:hover {
  text-decoration: underline;
}

.overview-buttons {
  margin: 3px 0 0;
  margin-left: -12px;
  font-size: 0;
}

.overview-buttons div {
  margin: 0 auto 3px;
}

.overview-buttons .btn {
  font-size: 14px;
}

.overview-buttons .btn-link {
  color: #0078d2;
}

.overview-buttons .btn-link:hover {
  color: #242423;
  text-decoration: none;
}

.overview .button-2,
.variant-overview .button-2 {
  display: block;
  width: 100%;
  border: none;
  background-color: #eaeaea;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 12px 15px 12px 40px;
  text-align: left;
  font-size: 14px;
  /*reset zeroing*/
  color: #666;
}

.overview .button-2:hover,
.variant-overview .button-2:hover {
  background-color: #d9d9d9;
}

.overview .subscribe-button,
.variant-overview .subscribe-button {
  background-image: url('/Themes/NopKalles/Content/images/email-button.png');
}

.overview .download-sample-button,
.variant-overview .download-sample-button {
  background-image: url('/Themes/NopKalles/Content/images/download-button.png');
}

.overview .add-to-wishlist-button,
.variant-overview .add-to-wishlist-button {
  background-image: url('/Themes/NopKalles/Content/images/wishlist-button.png');
}

.overview .manufacturers {
  margin: 0 0 20px;
}

.overview .availability,
.variant-overview .availability {
  margin: 0 0 20px;
  overflow: hidden;
}

.overview .availability .stock,
.variant-overview .availability .stock {
  margin: 0 0 10px;
}

.overview .availability .back-in-stock-subscription,
.variant-overview .availability .back-in-stock-subscription {
  display: inline-block;
}

.overview .additional-details,
.variant-overview .additional-details {
  margin: 0 0 20px;
}

.variant-overview .additional-details {
  margin: 0 0 10px !important;
}

.overview .delivery,
.variant-overview .delivery {
  overflow: hidden;
}

.overview .free-shipping,
.variant-overview .free-shipping {
  display: inline-block;
  margin: 10px 0;
  padding: 2px 0 2px 28px;
  font-weight: bold;
  color: #242423;
}

.overview .free-shipping.invisible,
.variant-overview .free-shipping.invisible {
  display: none;
}

.overview .delivery-date,
.variant-overview .delivery-date {
  margin: 10px 0;
}

.overview .min-qty-notification,
.variant-overview .min-qty-notification {
  margin: 10px 0;
  font-style: italic;
  color: #242423;
}

.overview .download-sample,
.variant-overview .download-sample {
  display: inline-block;
  margin: 0 0 25px;
}

.overview .prices,
.variant-overview .prices {
  margin: 0 0 10px;
  overflow: hidden;
}

.variant-overview .prices {
  margin: 0 0 10px !important;
}

.overview .prices > div > span,
.variant-overview .prices > div > span {
  vertical-align: middle;
  line-height: 22px;
  font-weight: 600;
}

.overview .old-product-price,
.variant-overview .old-product-price,
.overview .non-discounted-price,
.variant-overview .non-discounted-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.overview .product-price,
.variant-overview .product-price {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: normal;
  color: #696969;
}

.overview .tax-shipping-info a,
.variant-overview .tax-shipping-info a {
  color: #0078d2;
}

.overview .tax-shipping-info a:hover,
.variant-overview .tax-shipping-info a:hover {
  text-decoration: underline;
}

.customer-entered-price {
  margin: 0 0 20px;
  overflow: hidden;
}

.customer-entered-price .price-input label {
  display: block;
  margin: 0 0 5px;
  font-weight: bold;
  color: #242423;
}

.customer-entered-price .price-input input {
  width: 170px;
  text-align: center;
}

.customer-entered-price .price-range {
  margin: 5px 0 0;
  color: #777;
}

.tier-prices {
  margin: 0 0 20px;
}

.tier-prices .title {
  display: none;
}

.tier-prices table td {
  border: 1px solid #d9d9d9;
  padding: 10px;
  color: #242423;
}

.tier-prices .field-header {
  min-width: 80px;
}

.tier-prices .item-price {
  background-color: #efeff1;
  font-size: 16px;
  color: #e4434b;
}

.p-qty--counter {
  width: auto;
  border: 1px solid #242423;
  border-radius: 40px;
}

.p-qty--counter.qty--counter-sm {
  max-width: 115px;
}

.p-qty--counter input {
  width: 32px;
  height: 40px;
  background-color: transparent;
  color: #242423;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 0;
}

.p-qty--counter.qty--counter-sm input {
  width: 39px;
  height: 34px;
  padding: 5px 3px;
}

.p-qty--counter input:focus {
  outline: 0;
  box-shadow: none;
}

.p-qty--counter .btn {
  width: 37px;
  min-width: 37px;
  height: 40px;
  background-color: transparent;
  font-size: 12px;
  color: #0078d2;
}

.p-qty--counter.qty--counter-sm .btn {
  width: 35px;
  height: 34px;
  min-width: 35px;
}

.p-qty--counter .btn-minus {
  border-radius: 4px 0 0 4px;
}

.p-qty--counter .btn-plus {
  border-radius: 0 4px 4px 0;
}

.p-qty--counter .btn:focus {
  outline: 0;
  box-shadow: none;
}

.overview .add-to-cart-panel,
.variant-overview .add-to-cart-panel {
  display: flex;
  position: relative;
  margin-bottom: 12px;
  gap: 12px;
}

.overview .add-to-cart-panel > *,
.variant-overview .add-to-cart-panel > * {
  float: left;
}

.overview .add-to-cart-panel .input-group {
  flex-wrap: nowrap;
}

.overview .qty-label,
.variant-overview .qty-label {
  display: none !important;
}

.overview .qty-dropdown,
.variant-overview .qty-dropdown {
  height: 43px;
  padding: 0 12px;
  font-size: 15px;
  color: #242423;
  background: #fff
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
    no-repeat right 0.75rem center/8px 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.overview .add-to-cart-button,
.variant-overview .add-to-cart-button {
  min-width: 160px;
  height: 40px;
  padding: 5px 25px;
  background-color: #0078d2;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 930px) {
  .overview .add-to-cart-button,
  .variant-overview .add-to-cart-button {
    min-width: 0;
    padding: 5px 10px;
  }
}

@media (max-width: 730px) {
  .overview .add-to-cart-button,
  .variant-overview .add-to-cart-button {
    min-width: auto;
    padding: 5px 25px;
  }

  .header-logo a img {
    width: 155px;
  }
}

.overview .add-to-cart-button:hover,
.variant-overview .add-to-cart-button:hover {
  background-color: #242423;
}

.product-share-button {
  display: inline-block;
  overflow: hidden;
}

.full-description {
  clear: both;
  line-height: 24px;
}

.product-collateral .title {
  margin: 0 0 10px;
  font-size: 18px;
  color: #242423;
}

.product-collateral .title strong {
  font-weight: normal;
}

.product-variant-line:after {
  content: "";
  display: block;
  clear: both;
}

.variant-overview {
  width: 100%;
}

.variant-overview .variant-name {
  margin: 0 0 5px;
  padding: 10px 0;
  font-size: 16px;
  font-weight: bold;
  color: #0078d2;
}

.variant-overview .variant-description {
  margin: 0 0 15px;
  line-height: 22px;
}

.variant-overview .stock-availability {
  justify-content: center;
  margin-bottom: 10px;
}

.variant-overview .add-to-wishlist {
  margin: 0 0 25px;
}

.variant-overview .add-to-wishlist > button {
  font-size: 13px;
  text-transform: capitalize !important;
}

.variant-overview .add-to-wishlist-button {
  display: inline-block;
  width: auto;
}

.variant-overview .add-to-cart-panel {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.variant-overview .product-price {
  -ms-flex-pack: distribute;
  justify-content: center;
}

.variant-overview .add-to-cart-panel .p-qty--counter input {
  width: 40px;
  padding: 8px 0;
}

.product-specs-box {
  margin: 0 0 40px;
}

.product-specs-box td {
  border: 0px solid #d9d9d9;
  padding: 10px;
}

.product-tags-list {
  font-size: 0;
}

.product-tags-list li {
  display: inline-block;
  font-size: 14px;
  /*reset zeroing*/
}

.product-tags-list li.separator {
  margin: 0 5px 0 3px;
}

.product-tags-list a {
  display: inline-block;
  line-height: 24px;
  text-transform: capitalize;
}

.product-tags-list a:hover {
  color: #0078d2;
}

.attributes {
  margin: 20px 0;
}

.attributes dl {
  overflow: hidden;
  padding: 0 2px;
  /* fix for Chrome in Mac, the checkboxes get cut off */
}

.attributes dt,
.attribute-label {
  display: block;
  margin: 0 0 5px;
  white-space: nowrap;
  font-weight: bold;
  color: #696969;
  line-height: 100%;
}

.attributes dd,
.attribute-data {
  margin: 0 0 0;
}

.attributes dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.attributes li {
  display: inline-block;
  margin: 0 3px 5px 0;
}

.attributes select {
  width: auto;
  min-width: 100px;
  max-width: 100%;
}

.attributes .option-list label {
  margin: 0 5px;
}

.attributes .datepicker {
  width: 280px;
  text-align: center;
  color: #242423;
}

.attributes .qty-box input {
  width: 48px;
  height: 32px;
  text-align: center;
}

.ui-datepicker {
  width: 280px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  text-align: center;
  /*override jQuery UI styles, do not delete doubled properties*/
  border: none;
  border-radius: 0;
  padding: 0;
  font:
    normal 14px Arial,
    Helvetica,
    sans-serif;
  color: #777;
}

.ui-datepicker-header {
  position: relative;
  height: 32px;
  background-color: #0078d2;
  color: #fff;
  /*override jQuery UI styles, do not delete doubled properties*/
  border: none;
  border-radius: 0;
  background-image: none;
  padding: 0 !important;
  font-weight: normal;
}

.ui-datepicker-header a {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 0;
  /*override jQuery UI styles, do not delete doubled properties*/
  top: 0 !important;
  width: 32px !important;
  height: 32px !important;
  border: none !important;
}

.ui-datepicker-header a.ui-datepicker-prev {
  left: 0;
  background: url('/Themes/NopKalles/Content/images/calendar-prev.png') center no-repeat;
}

.ui-datepicker-header a.ui-datepicker-next {
  right: 0;
  background: url('/Themes/NopKalles/Content/images/calendar-next.png') center no-repeat;
}

.ui-datepicker-header a span {
  /*override jQuery UI styles, do not delete doubled properties*/
  display: none !important;
}

.ui-datepicker-title {
  position: relative;
  z-index: 0;
  line-height: 32px;
  font-weight: bold;
  /*override jQuery UI styles, do not delete doubled properties*/
  line-height: 32px !important;
}

.ui-datepicker-calendar {
  /*override jQuery UI styles, do not delete doubled properties*/
  margin: 0 !important;
  font-size: 14px !important;
}

.ui-datepicker-calendar th {
  background-color: #ebebf0;
}

.ui-datepicker-calendar th,
.ui-datepicker-calendar td {
  width: 14.285%;
  border: 1px solid #d9d9d9;
  /*override jQuery UI styles, do not delete doubled properties*/
  padding: 0;
}

.ui-datepicker-calendar th span,
.ui-datepicker-calendar td a {
  display: block;
  min-height: 32px;
  line-height: 32px;
  color: #242423;
}

.ui-datepicker-calendar td a {
  /*override jQuery UI styles, do not delete doubled properties*/
  border: none !important;
  background: none !important;
  padding: 0;
  text-align: center;
  color: #242423 !important;
}

.ui-datepicker-calendar .ui-state-active {
  outline: 2px solid #0078d2;
  font-weight: bold;
  color: #0078d2;
  color: #0078d2 !important;
}

.attributes > ul:first-child li:first-child {
  margin-left: 0;
}

.attributes > ul:last-child li:last-child {
  margin-right: 0;
}

.attribute-circles {
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.attribute-circles li {
  display: inline-block;
  margin: 0 5px 5px;
  text-align: center;
}

.attribute-circles .attribute-circle-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 0px solid #82828f;
  background-color: #696969;
  position: relative;
  z-index: 0;
  border-radius: 50%;
}

.attribute-circles label {
  display: block;
  margin: 0 !important;
}

.attribute-circles .attribute-circle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 14px !important;
  height: 14px !important;
  border-radius: 50%;
  cursor: pointer;
}

.attribute-circles .selected-value .attribute-circle-container {
  background-color: #242423 !important;
}

.attribute-circles li input {
  position: absolute;
  left: -9999px;
}

.attribute-squares {
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0;
}

.attribute-squares li {
  display: inline-block;
  margin: 0 5px 5px;
  text-align: center;
}

.attribute-squares .attribute-square-container {
  display: block;
  position: relative;
  z-index: 0;
  padding: 1px;
}

.attribute-squares label {
  display: block;
  margin: 0 !important;
  overflow: hidden;
}

.attribute-squares .attribute-square {
  display: table !important;
  width: 28px !important;
  height: 28px !important;
  border: 1px solid #ddd !important;
  cursor: pointer;
}

.attribute-squares .selected-value .attribute-square-container {
  background-color: #0078d2;
}

.attribute-squares li input {
  position: relative;
  z-index: -1;
  margin: -32px 0 0;
}

.tooltip-container {
  position: absolute;
  width: 200px;
  color: #000000;
  background: #ffffff;
  border: 1px solid #ebebf0;
  text-align: center;
  visibility: hidden;
  border-radius: 5px;
}

.tooltip-container:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -7px;
  width: 0;
  height: 0;
  border-bottom: 7px solid #ebebf0;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}

.tooltip-container:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-bottom: 6px solid #ffffff;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}

.attribute-squares li:hover .tooltip-container {
  visibility: visible;
  margin-left: -83px;
  margin-top: 5px;
  z-index: 999;
}

.tooltip-container .tooltip-header {
  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;
  background-color: #f6f6f6;
  height: 25px;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  padding: 5px;
  text-align: left;
  width: 198px;
  font-size: 15px;
  text-align: center;
  border-bottom: 1px #ebebf0 solid;
}

.tooltip-container .tooltip-body {
  margin: 5px;
}

.tooltip-container .tooltip-body img {
  border: 0px #fff;
  width: 190px;
}

.giftcard {
  margin: 0 0 20px;
  overflow: hidden;
}

.giftcard div {
  margin: 0 0 10px;
}

.giftcard label {
  display: block;
  margin: 0 auto 5px;
  font-weight: bold;
  color: #242423;
}

.giftcard input,
.giftcard textarea {
  width: 350px;
  max-width: 100%;
}

.giftcard textarea {
  height: 150px;
}

/********** PRODUCT REVIEWS **********/

.modal-add-review {
  max-width: 420px;
}

.rv-add--product {
  border: 1px solid #ebebf0;
}

.rv-add--product-img {
  width: 50px;
}

.rv-add--product-img img {
  width: 50px;
  max-width: 100%;
}

.rv-add--form .form-fields {
  background-color: transparent;
}

.product-reviews-page h1 a {
  color: #0078d2;
}

.product-reviews-page h1 a:before,
.product-reviews-page h1 a:after {
  content: "''";
}

.product-reviews-page .title {
  margin: 0 0 20px;
  font-size: 20px;
  color: #242423;
}

.product-reviews-page .title strong {
  font-weight: normal;
}

.write-review {
  margin: 0 0 60px;
}

.write-review .fieldset {
  margin: 0 0 30px;
}

.tooltip {
  position: initial;
  display: inline-block;
  color: #242423;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: auto;
  background: #f0f0f0 no-repeat 100% 5%;
  border: #c0c0c0 1px dotted;
  text-align: Left;
  padding: 10px 10px 5px 5px;
  position: absolute;
  z-index: 1;
  left: 10%;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  cursor: help;
}

.write-review .review-rating div.first {
  color: #e4444c;
}

.write-review .review-rating div.rating-options {
  padding-top: 2px;
}

.write-review .review-rating div.rating-options input {
  vertical-align: baseline;
}

.write-review .review-rating div.last {
  color: #4cb17c;
}

.write-review .captcha-box {
  margin: 15px 0 0;
}

.write-review .button-1 {
  border: none;
  background-color: #0078d2;
  padding: 10px 25px;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

.write-review .button-1:hover {
  background-color: #79358f;
}

.write-review .review-rating .rating-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-reviews-page .result,
.product-reviews-page .message-error {
  margin: 0 0 20px;
}

.product-review-list {
  overflow: hidden;
}

.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 #d9d9d9;
  overflow: hidden;
  background-color: transparent;
  padding: 15px;
}

.product-review-item .review-title {
  line-height: 20px;
  font-size: 15px;
  color: #242423;
}

.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;
  color: #242423;
}

.product-review-item .reply {
  margin: 15px 0;
  border-top: 1px solid #d9d9d9;
}

.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: 5px 10px;
  color: #82828f;
  cursor: pointer;
  border: 1px solid #82828f;
}

.product-review-helpfulness .question {
  margin: 0 5px 0 0;
  font-style: italic;
}

.product-review-helpfulness .result {
  margin: 0 0 0 10px;
}

/********** WISHLIST & COMPARE LIST **********/

.wishlist-page .page-title {
  margin: 0 0 -1px;
}

.wishlist-content .message-error {
  margin: 20px 0;
}

.wishlist-content .table-wrapper {
  margin: 0 0 30px;
}

.wishlist-content .product-content {
  min-width: 300px;
  text-align: left;
}

.wishlist-content .tax-shipping-info {
  margin: 0 0 20px;
  text-align: center;
}

.wishlist-content .tax-shipping-info a {
  color: #4ab3f1;
}

.wishlist-content .tax-shipping-info a:hover {
  text-decoration: underline;
}

.wishlist-content .buttons {
  font-size: 0;
}

.wishlist-content .button-2 {
  display: block;
  width: 250px;
  margin: 0 auto 3px;
  border: none;
  padding: 10px 25px;
  text-align: center;
  line-height: 20px;
  font-size: 15px;
  color: #fff;
}

.wishlist-page .share-info span {
  display: block;
  margin: 0 0 5px;
}

.wishlist-page .share-info a {
  font-weight: bold;
  color: #242423;
}

.wishlist-page .share-info a:hover {
  color: #0078d2;
}

.compare-products-page {
  position: relative;
  overflow: hidden;
}

.compare-products-page .clear-list {
  display: inline-block;
  margin: 0 0 20px;
  background-color: #0078d2;
  padding: 10px 15px;
  font-size: 12px;
  color: #fff;
}

.compare-products-page .clear-list:hover {
  background-color: #79358f;
}

.compare-products-page .table-wrapper {
  margin: 30px 0;
  padding: 0 0 1px;
  /*IE mobile table border fix*/
}

.compare-products-table td {
  min-width: 150px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  padding: 20px;
  text-align: center;
  vertical-align: top;
  color: #242423;
}

.compare-products-table td:first-child {
  min-width: 0;
  background-color: #f6f6f6;
  border: 0;
  text-align: right;
}

.compare-products-table td label {
  margin-bottom: 0;
  color: #242423;
  font-weight: 500;
}

.compare-products-table .remove-button {
  display: inline-block;
  border: none;
  background: transparent;
  padding: 0;
  font-size: 12px;
  color: #82828f;
}

.compare-products-table .remove-button i {
  color: #e71d36;
}

.compare-products-table .remove-button:hover {
  color: #e71d36;
}

.compare-products-table .picture {
  display: block;
  position: relative;
  max-width: 200px;
  height: 200px;
  overflow: hidden;
  margin: auto;
}

.compare-products-table .picture img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.compare-products-table .product-name td {
  font-weight: bold;
}

.compare-products-table .product-name td a:hover {
  color: #0078d2;
}

.compare-products-table .short-description td {
  line-height: 22px;
}

.compare-products-table .full-description td {
  display: none;
}

.compare-products-page .no-data {
  margin: 25px 0 0;
}

/*********** TOPICS ***********/

.topic-block {
  margin: 0 0 25px;
}

.topic-block-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 50px;
  margin: 0 0 20px;
  border-bottom: 1px solid #d9d9d9;
  padding: 0 0 10px;
}

.topic-block-title h2 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: normal;
}

.topic-block-body {
  text-align: justify;
  line-height: 24px;
  font-size: 14px;
}

.topic-page .page-body {
  text-align: justify;
  line-height: 22px;
}

.topic-block a,
.topic-page a {
  text-decoration: underline;
}

.topic-block strong,
.topic-page strong {
  color: #242423;
}

.home-page .topic-block {
  margin: 0 0 50px;
}

.popup-window .topic-page {
  padding: 15px;
}

.not-found-page p {
  margin: 30px 15px;
}

.topic-password {
  text-align: center;
}

.enter-password-title {
  margin: 0 0 20px;
  color: #242423;
}

.enter-password-form {
  display: inline-block;
  overflow: hidden;
}

.enter-password-form input[type="password"] {
  float: left;
  width: 200px;
  height: 40px;
  margin: 0 -1px 0 0;
}

.enter-password-form input[type="submit"] {
  float: left;
  width: auto;
  min-width: 86px;
  height: 40px;
  border: none;
  background-color: #0078d2;
  padding: 0 15px;
  color: #fff;
}

.enter-password-form input[type="submit"]:hover {
  background-color: #79358f;
}

/*********** CONTACT & EMAIL A FRIEND & APPLY FOR VENDOR ACCOUNT ***********/

.contact-page .page-title,
.email-a-friend-page .page-title,
.apply-vendor-page .page-title {
  margin: 0 0 -1px;
}

.contact-page .result,
.contact-page .message-error,
.email-a-friend-page .result,
.email-a-friend-page .message-error,
.apply-vendor-page .result,
.apply-vendor-page .message-error {
  margin: 20px 0;
}

.contact-page .button-1,
.email-a-friend-page .button-1,
.apply-vendor-page .button-1 {
  min-width: 140px;
  border: none;
  background-color: #0078d2;
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

.contact-page .button-1:hover,
.email-a-friend-page .button-1:hover,
.apply-vendor-page .button-1:hover {
  background-color: #79358f;
}

.contact-page .topic-block,
.email-a-friend-page .title,
.apply-vendor-page .title {
  margin: 25px 0;
}

.email-a-friend-page .title h2 {
  font-weight: normal;
  color: #0078d2;
}

.apply-vendor-page .terms-of-service {
  text-align: center;
}

.apply-vendor-page .terms-of-service > * {
  display: inline-block;
  line-height: 32px;
}

.apply-vendor-page .terms-of-service span,
.apply-vendor-page .terms-of-service a {
  color: #0078d2;
  cursor: pointer;
}

/********** REGISTRATION, LOGIN, ACCOUNT PAGES  **********/

.gender {
  display: inline-block;
}

.gender span {
  display: inline-block;
  margin: 0 5px;
}

.gender span > * {
  display: inline !important;
  margin: 0 5px;
  line-height: 32px;
}

.date-of-birth .date-picker-wrapper {
  display: inline;
}

.date-of-birth select {
  width: 31%;
  /*always single line*/
  max-width: 126px;
}

.date-of-birth select + select {
  margin: 0 0 0 10px;
}

.date-of-birth .select-wrapper + .select-wrapper {
  margin: 0 0 0 10px;
}

#check-availability-button {
  margin: 10px 0 0;
  border: none;
  background-color: #888;
  padding: 10px 15px;
  font-size: 12px;
  color: #fff;
}

#check-availability-button:hover {
  background-color: #999;
}

.inputs.accept-consent {
  text-align: center;
}

.inputs.accept-consent > * {
  display: inline-block;
  line-height: 32px;
}

.inputs.accept-consent span,
.inputs.accept-consent a {
  color: #0078d2;
  cursor: pointer;
  font-size: 14px;
}

.inputs.accept-consent label {
  width: auto;
  margin-left: 10px;
  margin-bottom: 0;
}

.registration-page .button-1,
.registration-result-page .button-1,
.login-page .button-1,
.password-recovery-page .button-1,
.account-page .button-1,
.return-request-page .button-1 {
  min-width: 140px;
  border: none;
  background-color: #0078d2;
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

.registration-page .button-1:hover,
.registration-result-page .button-1:hover,
.login-page .button-1:hover,
.password-recovery-page .button-1:hover,
.account-page .button-1:hover,
.return-request-page .button-1:hover {
  background-color: #79358f;
}

.return-request-page h1 a {
  color: #0078d2;
}

.return-request-page .return-request-file {
  font-size: 14px;
}

.return-request-page .return-request-file .uploadedfileinput {
  display: inline-block;
}

.registration-page .message-error,
.login-page .message-error,
.account-page .message-error {
  margin: 0 0 10px;
}

.registration-result-page .result {
  margin: 0 0 30px;
  padding: 30px 0;
  text-align: center;
  font-size: 16px;
  color: #4cb17c;
}

.customer-info-page .email-to-revalidate,
.customer-info-page .readonly-username,
.customer-info-page .vat-status {
  margin: 0 5px;
  font-size: 14px;
}

.customer-info-page .vat-status {
  display: block;
}

.registration-page .vat-note,
.customer-info-page .vat-note,
.customer-info-page .email-to-revalidate-note {
  display: block;
  font-size: 14px;
  margin-top: 7px;
  white-space: normal;
}

.registration-page .vat-note {
  text-align: right;
  padding-right: 15px;
}

.login-page .customer-blocks {
  margin-bottom: 30px;
}

.login-page .title {
  margin: 0 0 15px;
  padding: 0;
  font-size: 20px;
  color: #242423;
}

.login-page .title strong {
  font-weight: normal;
}

.login-page .new-wrapper {
  margin: 0 0 50px;
}

.login-page .new-wrapper .text {
  margin: 0;
  background-color: #efeff1;
  padding: 30px;
  line-height: 22px;
  border-radius: 5px;
}

.login-page .new-wrapper .topic-block {
  margin: 0;
}

.login-page .new-wrapper .topic-block-body strong {
  color: #242423;
}

.login-page .new-wrapper .button-1 {
  margin: 0 0 5px;
}

.login-page .returning-wrapper {
  margin: 0;
}

.login-page .returning-wrapper .form-fields {
  overflow: hidden;
  padding: 30px 15px 0;
}

.login-page .returning-wrapper .inputs.reversed {
  white-space: normal;
}

.login-page .returning-wrapper .inputs.reversed * {
  width: auto;
  font-size: 14px;
  /*reset zeroing*/
  color: #242423;
}

.login-page .returning-wrapper .inputs.reversed a:hover {
  color: #0078d2;
}

.login-page .captcha-box {
  margin: -15px 0 20px;
}

.external-authentication {
  margin: 0 0 50px;
  overflow: hidden;
  text-align: center;
}

.external-authentication .title {
  margin: 0 0 15px;
  font-size: 20px;
  color: #242423;
}

.external-authentication .buttons {
  margin: 0 0 30px;
  border-top: 1px solid #e6e6e6;
  padding: 30px;
}

.external-auth-errors {
  color: #e4444c;
}

.external-auth-association {
  color: #242423;
}

.external-auth-association a {
  color: #0078d2;
}

.external-auth-association a:hover {
  text-decoration: underline;
}

.password-recovery-page .result {
  margin: 0 0 5px;
  font-weight: bold;
  color: #242423;
}

.password-recovery-page .tooltip {
  margin: 0 0 15px;
  opacity: 1;
}

.add-more-external-records {
  text-align: center;
}

.add-more-external-records a {
  color: #0078d2;
}

.add-more-external-records a:hover {
  text-decoration: underline;
}

.account-page .buttons {
  text-align: center;
}

.account-page .description {
  margin: 0 0 25px;
  padding: 0 10px;
}

.account-page .table-wrapper {
  margin: 0 0 30px;
}

.gdpr-tools-page .result {
  margin: 20px 0;
  font-size: 13px;
  color: #e4434b;
}

.gdpr-tools-page .buttons {
  margin-top: 20px;
}

.address-list-page .info,
.order-list-page .info {
  margin: 0 0 10px;
  padding: 30px;
  background-color: #efeff1;
  line-height: 26px;
  color: #242423;
  border-radius: 5px;
}

.address-list-page .info .name,
.order-list-page .info .name {
  font-size: 16px;
  font-weight: bold;
}

.address-list-page .button-2,
.order-list-page .button-2 {
  display: inline-block;
  margin: 0 0 0 10px;
  border: none;
  padding: 0 0 0 18px;
  font-size: 12px;
  color: #242423;
}

.edit-address-button {
  background: url('/Themes/NopKalles/Content/images/edit.png') left center no-repeat;
}

.delete-address-button,
.cancel-recurring-order-button {
  background: url('/Themes/NopKalles/Content/images/remove.png') left center no-repeat;
}

.retry-recurring-order-button {
  background: url('/Themes/NopKalles/Content/images/retry.png') left center no-repeat;
}

.return-items-button {
  background: url('/Themes/NopKalles/Content/images/return.png') left center no-repeat;
}

.order-details-button {
  background: url('/Themes/NopKalles/Content/images/details.png') left center no-repeat;
}

.address-list-page .button-2:hover,
.order-list-page .button-2:hover {
  color: #0078d2;
}

.address-list-page .add-button {
  margin: 0 0 20px;
  text-align: center;
}

.address-edit-page .page-title {
  margin: 0 0 -1px;
}

.address-edit-page .message-error {
  margin: 20px 0;
}

.address-edit-page .edit-address {
  margin: 0 0 30px;
  background-color: #efeff1;
  padding: 30px !important;
  border-radius: 5px;
}

.recurring-payments table td {
  white-space: nowrap;
}

.recurring-payments table td:first-child {
  min-width: 120px;
  white-space: normal;
}

.recurring-payments .button-2 {
  font-size: 14px;
}

.return-request-list-page .details {
  border-top: 1px solid #e6e6e6;
  background-color: #efeff1;
  padding: 20px;
  line-height: 22px;
  color: #242423;
}

.return-request-list-page label {
  margin: 0 5px 0 0;
}

.return-request-list-page a {
  color: #0078d2;
}

.return-request-list-page a:hover {
  text-decoration: underline;
}

.return-request-list-page .comments div {
  margin: 10px 0 0;
  font-size: 15px;
  font-style: italic;
  color: #242423;
}

.downloadable-products-page table td {
  color: #242423;
}

.reward-points-overview {
  margin: 0 0 25px;
}

.reward-points-history table td {
  color: #242423;
}

.reward-points-history table td:first-child {
  min-width: 120px;
}

.change-password-page .page-title {
  margin: 0 0 -1px;
}

.change-password-page .result,
.change-password-page .message-error {
  margin: 20px 0;
}

.change-password-page .fieldset {
  margin: 0 0 30px;
}

.avatar-page .page-title {
  margin: 0;
}

.avatar-page .page-body {
  margin: 0 0 30px;
  overflow: hidden;
  background-color: #efeff1;
  padding: 30px 25px;
}

.avatar-page .message-error {
  margin: 0 0 10px;
}

.avatar-page .image {
  margin: 0 0 10px;
}

.avatar-page .image img {
  border: 1px solid #ccc;
}

.avatar-page .button-1 {
  font-size: 14px;
}

.avatar-page .button-2 {
  border: none;
  background-color: #888;
  padding: 10px 15px;
  font-size: 14px;
  color: #fff;
}

.avatar-page .button-2:hover {
  background-color: #999;
}

.avatar-page .info {
  color: #242423;
}

.vendorinfo-page .button-2 {
  border: medium none;
  background-color: #888;
  padding: 10px 15px;
  font-size: 14px;
  color: #fff;
}

.vendorinfo-page .button-2:hover {
  background-color: #999;
}

.vendorinfo-page .vendor-picture {
  width: 400px;
  margin: 0 auto;
}

.vendorinfo-page .vendor-picture * {
  display: block;
  margin-top: 15px;
}

.check-gift-card-balance-page .page-title {
  margin: 0 0 -1px;
}

.check-gift-card-balance-page .result,
.check-gift-card-balance-page .message-error {
  margin: 20px 0;
}

.check-gift-card-balance-page .fieldset {
  margin: 0 0 30px;
}

/********** SHOPPING CART **********/

.order-progress {
  margin: 0 0 50px;
  background-color: #f6f6f6;
  padding: 15px 0;
  text-align: center;
}

.order-progress ul {
  font-size: 0;
}

.order-progress li {
  display: inline-block;
  margin: 10px;
}

.order-progress a {
  display: block;
  min-width: 70px;
  font-size: 14px;
  /*reset zeroing*/
  color: #242423;
}

.order-progress a:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  border: 1px solid #bbb;
  background: #fff url('/Themes/NopKalles/Content/images/pointer.png') center no-repeat;
}

.order-progress li.active-step a {
  cursor: pointer;
}

.order-progress li.inactive-step a {
  opacity: 0.3;
  cursor: default;
}

.shopping-cart-page .page-title {
  margin: 0 0 -1px;
  padding: 10px;
}

.shopping-cart-page .message-error {
  margin: 20px 0;
}

.shopping-cart-page td .message-error {
  margin: 10px 0 0;
  text-align: left;
}

.shopping-cart-page .checkout-attributes a {
  color: #4ab3f1;
}

.shopping-cart-page .checkout-attributes a:hover {
  text-decoration: underline;
}

.shopping-cart-page .tax-shipping-info {
  margin: 20px 0;
  text-align: center;
}

.shopping-cart-page .tax-shipping-info a {
  color: #4ab3f1;
}

.shopping-cart-page .tax-shipping-info a:hover {
  text-decoration: underline;
}

.shopping-cart-page .common-buttons {
  font-size: 0;
}

.shopping-cart-page .common-buttons input {
  display: inline-block;
  min-width: 180px;
  margin: 5px;
  border: none;
  background-color: #aaa;
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}

.shopping-cart-page .common-buttons input:hover {
  background-color: #999;
}

.shopping-cart-page .common-buttons input:first-child {
  background-color: #0078d2;
}

.shopping-cart-page .common-buttons input:first-child:hover {
  background-color: #0078d2;
  opacity: 0.8;
}

.checkout-attributes {
  color: #242423;
}

.checkout-attributes dt {
  margin: 0 0 5px;
  font-weight: bold;
}

.checkout-attributes dd {
  margin: 0 0 20px;
}

.checkout-attributes input[type="text"],
.checkout-attributes select {
  min-width: 170px;
  width: 100%;
  height: 40px;
  font-size: 14px;
}

.checkout-attributes ul {
  font-size: 0;
}

.checkout-attributes li {
  display: inline-block;
  margin: 5px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  padding: 8px 10px;
  font-size: 14px;
  /*reset zeroing*/
}

.checkout-attributes .attribute-squares li {
  border: none;
  padding: 0;
  line-height: 0;
}

.checkout-attributes li label {
  display: inline-block;
  margin: 0 0 0 5px;
}

.selected-checkout-attributes {
  margin: 30px 0;
  color: #242423;
}

.selected-checkout-attributes br {
  content: "";
  display: block;
  margin: 3px;
}

.cart-footer {
  margin: 0 0 50px;
  border-top: 1px solid #d9d9d9;
}

.cart-footer:after {
  content: "";
  display: block;
  clear: both;
}

.cart-footer .totals {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 50px;
  background-color: #efeff1;
  padding: 10px;
  color: #242423;
}

.cart-footer .total-info {
  margin: 0 0 20px;
  border-bottom: 1px solid #d9d9d9;
  padding: 5px 30px 15px;
}

.cart-total td {
  width: 50%;
  padding: 5px 0;
  text-align: right;
}

.cart-total td:first-child {
  text-align: left;
}

.cart-total .giftcard-remaining {
  display: block;
  font-style: italic;
}

.cart-total .order-total {
  font-size: 20px;
  color: #000 !important;
}

.cart-total .order-total strong {
  font-weight: normal;
}

.min-amount-warning {
  margin: 0 0 20px;
  padding: 0 30px;
  color: #e4434b;
}

.terms-of-service {
  margin: 0 0 12px;
  padding: 0 30px;
}

.terms-of-service label {
  cursor: pointer;
}

.terms-of-service .custom-checkbox label {
  color: #242423;
  font-size: 14px;
}

.terms-of-service .custom-checkbox [type="checkbox"]:not(:checked) + label,
.terms-of-service .custom-checkbox [type="checkbox"]:checked + label {
  padding-left: 30px;
}

.terms-of-service .custom-checkbox label:hover {
  color: #242423;
}

.terms-of-service a {
  color: #0078d2;
  font-size: 13px;
  display: inline !important;
}

.terms-of-service a:hover {
  color: #16b0c7;
}

.cart-footer .checkout-buttons {
  padding: 0 10px;
}

.cart-footer .checkout-disabled {
  font-size: 20px;
  text-align: center;
  background: #ffa500;
  border: 1px solid #c3891e;
  color: #fff;
  padding: 15px 50px;
}

.cart-footer .checkout-button {
  display: inline-block;
  min-width: 160px;
  border: none;
  background-color: #0078d2;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
}

.cart-footer .checkout-button:hover {
  background-color: #79358f;
}

.cart-footer .addon-buttons {
  margin: 20px 0 0;
  padding: 0 10px;
}

.cart-collaterals {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 50px;
  padding: 25px 0 0;
}

.cart-collaterals .button-2 {
  display: inline-block;
  border: none;
  background-color: #0078d2;
  padding: 10px 15px;
  color: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cart-collaterals .button-2:hover {
  background-color: #0078d2;
  color: #fff;
}

.cart-collaterals .title strong {
  font-weight: normal;
}

.cart-collaterals .hint {
  margin: 0 0 10px;
}

.cart-collaterals .deals > div {
  margin: 0 0 20px;
}

.cart-collaterals .coupon-code {
  overflow: hidden;
}

.cart-collaterals .coupon-code input[type="text"] {
  float: left;
  width: calc(100% - 150px);
  height: 40px;
  /*safari padding fix*/
  margin: 0 -1px 0 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.cart-collaterals .coupon-code input[type="submit"] {
  float: left;
  min-width: 150px;
  height: 40px;
  /*safari padding fix*/
  padding: 0 15px;
}

.cart-collaterals .message-failure {
  margin: 5px 0 0;
  font-size: 12px;
  color: #e4434b;
}

.cart-collaterals .message-success {
  margin: 5px 0 0;
  font-size: 12px;
  color: #4cb17c;
}

.cart-collaterals .current-code {
  margin: 5px 0 0;
  color: #4cb17c;
}

.remove-discount-button,
.remove-gift-card-button {
  width: 16px;
  height: 16px;
  border: 1px solid #999;
  background: #fff url('/Themes/NopKalles/Content/images/close.png') center no-repeat;
  cursor: pointer;
}

.cart-collaterals .shipping select {
  height: 36px;
}

.cart-collaterals .shipping-results {
  margin: 30px 0 0;
}

.cart-collaterals .shipping-results li {
  margin: 20px 0;
}

.cart-collaterals .shipping-results li strong {
  display: block;
  margin: 0 0 5px;
  color: #242423;
}

.shopping-cart-page .no-data {
  margin: 25px 0 0;
}

/********** CHECKOUT **********/

.checkout-page .section.new-shipping-address {
  padding-right: 0 !important;
}

.checkout-page .new-address-next-step-button {
  margin-right: 3px;
}

.checkout-page .section.order-summary {
  margin: 100px 0 30px;
}

.checkout-page .cart-options {
  min-height: 60px;
  overflow: hidden;
}

.checkout-page .cart-footer {
  border-top: none;
}

.checkout-page .total-info {
  margin: 0;
  border-bottom: none;
  padding: 5px 20px 10px;
}

.checkout-page .button-1 {
  display: inline-block;
  min-width: 140px;
  border: none;
  background-color: #0078d2;
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

.checkout-page .button-1:hover {
  background-color: #79358f;
}

.checkout-page .address-item {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 40px;
}

.checkout-page .address-item ul {
  margin: 0 0 15px;
  background-color: #efeff1;
  padding: 20px;
  color: #242423;
}

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

.checkout-page .ship-to-same-address .selector {
  margin: 0 0 5px;
  color: #242423;
}

.checkout-page .pickup-in-store .selector {
  margin: 0 0 5px;
  color: #242423;
}

.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 {
  text-align: center;
}

.shipping-method .method-list li,
.payment-method .method-list li {
  margin: 0 0 20px;
  font-size: 14px;
  /*reset zeroing*/
}

.shipping-method .method-list li label,
.payment-method .method-list li label {
  margin-bottom: 0;
  color: #242423;
  border-radius: 5px;
}

.shipping-method .method-title,
.payment-method .method-title {
  padding: 17px 15px 15px 45px;
  font-weight: 500;
}

.shipping-method .custom-radio-2 .check,
.payment-method .custom-radio-2 .check {
  top: 15px;
  left: 14px;
}

.shipping-method .custom-radio-2 input[type="radio"]:checked ~ label,
.payment-method .custom-radio-2 input[type="radio"]:checked ~ label {
  background-color: #0078d2;
  color: #fff;
}

.shipping-method .custom-radio-2 input[type="radio"]:checked ~ .check,
.payment-method .custom-radio-2 input[type="radio"]:checked ~ .check {
  border-color: #fff;
}

.shipping-method .custom-radio-2 input[type="radio"]:checked ~ .check::before,
.payment-method .custom-radio-2 input[type="radio"]:checked ~ .check::before {
  background: #fff;
}

.shipping-method .method-description,
.payment-method .payment-description {
  padding: 15px;
}

.payment-method .use-reward-points {
  margin: 0 0 30px;
  text-align: center;
  color: #242423;
}

.payment-method .payment-logo {
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
}

.payment-method .payment-logo label {
  display: block;
  font-size: 0 !important;
}

.payment-method .payment-details {
  min-width: 180px;
  display: inline-block;
  margin: 0 0 0 10px;
  text-align: left;
  vertical-align: middle;
}

.payment-info .info {
  padding: 30px 15px;
  color: #242423;
}

.payment-info .info tr {
  display: block;
  margin: 0 0 15px;
  font-size: 0;
}

.payment-info .info td {
  display: inline-block;
  width: 100% !important;
  max-width: 400px !important;
  font-size: 14px;
  /*reset zeroing*/
}

.payment-info .info td:only-child {
  width: 100% !important;
  max-width: 100% !important;
}

.payment-info .info td input[type="text"] {
  width: 100% !important;
}

.payment-info .info td input[name="CardCode"] {
  width: 65px !important;
}

.payment-info .info td select {
  min-width: 70px;
}

.payment-info .info td:first-child {
  margin: 0 0 10px;
}

.payment-info .info p {
  text-align: center;
}

.confirm-order .buttons {
  padding: 10px 0;
}

.confirm-order .button-1 {
  font-size: 16px;
}

.order-review-data > div,
.order-details-area > div,
.shipment-details-area > div {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 40px;
  background-color: #efeff1;
  padding: 20px;
  color: #242423;
}

.order-review-data li,
.order-details-area li,
.shipment-details-area li {
  padding: 3px 0;
}

.order-review-data .title,
.order-details-area .title,
.shipment-details-area .title {
  margin: 0 0 5px;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
}

.order-review-data .title strong,
.order-details-area .title strong,
.shipment-details-area .title strong {
  font-weight: 700;
}

.order-review-data .payment-method-info,
.order-review-data .shipping-method-info,
.order-details-area .payment-method-info,
.order-details-area .shipping-method-info {
  margin-top: 20px;
}

.order-completed .details {
  margin: 0 0 30px;
  padding: 30px 15px;
  text-align: center;
  color: #242423;
}

.order-completed .details div {
  margin: 5px 0;
}

.order-completed .details strong {
  font-weight: normal;
}

.order-completed .details a {
  color: #0078d2;
}

.order-completed .details a:hover {
  text-decoration: underline;
}

.stepper .step {
  padding-bottom: 20px;
}

.stepper .step:last-child {
  padding-bottom: 0;
}

.stepper .step::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 13px;
  width: 1px;
  height: 100%;
  background-color: #d9d9d9;
}

.stepper .step.active::after {
}

.step--number {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background-color: #d9d9d9;
  line-height: 28px;
  text-align: center;
  border-radius: 100%;
}

.stepper .step.allow .step--number {
  background-color: #0078d2;
}

.stepper .step.active .step--number {
  background-color: #0078d2;
}

.step--title {
  padding-left: 15px;
  color: #d9d9d9;
  font-size: 20px;
  font-weight: 300;
}

.stepper .step.allow .step--title {
  color: #242423;
}

.stepper .step.active .step--title {
  color: #242423;
}

.step--content {
  display: none;
  padding-left: 43px;
}

.stepper .step.active .step--content {
  display: block;
}

.opc .step-title {
  margin: 0 0 1px;
  overflow: hidden;
  background-color: #f6f6f6;
}

.opc .allow .step-title {
  background-color: #0078d2;
  cursor: pointer;
}

.opc .step-title .number,
.opc .step-title .title {
  float: left;
  min-height: 40px;
  padding: 10px 15px;
  line-height: 20px;
  font-size: 16px;
  font-weight: normal;
}

.opc .allow .step-title .number,
.opc .allow .step-title .title {
  color: #fff;
  cursor: pointer;
}

.opc .step-title .number {
  width: 42px;
  border-right: 1px solid #fff;
  text-align: center;
}

.opc .allow .step-title .number {
  background-color: #79358f;
}

.opc .step {
  margin: 10px 0;
  padding: 30px 15px;
  text-align: center;
}

.opc .section {
  margin: 0 0 30px;
}

.opc .section > label {
  display: block;
  margin: 0 0 10px;
}

.opc input[type="text"],
.opc select {
  max-width: 100%;
}

.opc .buttons {
  margin-bottom: 0;
}

.opc .back-link {
  margin: 0 0 10px;
}

.opc .back-link small {
  display: none;
}

.opc .back-link a {
  display: inline-block;
  margin: 0 0 0 -15px;
  background: url('/Themes/NopKalles/Content/images/back-button.png') left center no-repeat;
  padding: 0 0 0 18px;
  color: #242423;
}

.opc .back-link a:hover {
  color: #0078d2;
}

.opc .buttons .please-wait {
  display: block;
  margin: 10px 0 0;
  background: none;
}

.opc .section.ship-to-same-address {
  margin: 0 0 30px;
  padding: 0;
}

.opc .section.pickup-in-store {
  margin: 0 0 30px;
  padding: 0;
}

.opc .payment-info .info tr {
  text-align: left;
}

.opc .section.order-summary {
  margin: 0;
}

/****** ORDER DETAILS & SHIPPING DETAILS ******/

.order-details-page .page-header a {
  min-width: 150px;
}

.order-details-page .order-overview {
  margin: 0 0 50px;
  line-height: 26px;
  text-align: center;
  font-size: 16px;
  color: #242423;
}

.order-details-page .order-overview .order-number {
  margin: 0 0 10px;
}

.order-details-page .order-overview .order-total strong {
  font-weight: normal;
  color: #0078d2;
}

.order-details-page .repost .button-2 {
  display: inline-block;
  margin: 10px 0;
  border: none;
  background-color: #0078d2;
  padding: 10px 15px;
  font-size: 12px;
  color: #fff;
}

.order-details-page .repost .button-2:hover {
  background-color: #79358f;
}

.order-details-page .download a {
  font-weight: normal;
  color: #0078d2;
}

.order-details-page .download a:hover {
  text-decoration: underline;
}

.user-agreement-page .terms-of-agreement {
  margin: 0 0 20px;
  padding: 20px;
  text-align: center;
}

.user-agreement-page .button-1 {
  min-width: 140px;
  border: none;
  background-color: #0078d2;
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

.user-agreement-page .button-1:hover {
  background-color: #79358f;
}

.order-details-page .tax-shipping-info {
  margin: 30px 0;
}

.order-details-page .tax-shipping-info a {
  color: #0078d2;
}

.order-details-page .tax-shipping-info a:hover {
  text-decoration: underline;
}

.order-details-page .actions {
  margin: 30px 0 0;
  font-size: 0;
}

.order-details-page .actions input {
  display: inline-block;
  min-width: 165px;
  margin: 5px;
  border: none;
  background-color: #aaa;
  background-image: none;
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}

.order-details-page .actions input:hover {
  background-color: #999;
}

.order-details-page .actions input:first-child {
  background-color: #0078d2;
}

.order-details-page .actions input:first-child:hover {
  background-color: #79358f;
}

.order-details-page .totals.section {
  width: 370px;
  padding: 0 10px;
  max-width: 100%;
  margin: 0 auto 50px;
}

.order-details-page .total-info {
  background-color: #efeff1;
  padding: 15px 20px;
  color: #242423;
}

/****** SEARCH & SITEMAP ******/

.search-page .page-title {
  margin: 0 0 -1px;
}

.search-input .fieldset {
  margin: 0 0 30px;
}

.search-input .form-fields {
  padding: 30px 15px 10px;
}

.search-input input + label {
  display: inline;
  margin: 0 0 0 5px;
}

.advanced-search {
  margin: 30px 0 0;
}

.advanced-search .price-range {
  display: inline-block;
}

.advanced-search .price-range input {
  width: 80px;
  margin: 3px;
}

.search-input .buttons {
  text-align: center;
}

.search-input .button-1 {
  min-width: 140px;
  border: none;
  background-color: #0078d2;
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

.search-results .warning,
.search-results .no-result {
  margin: 10px 0;
  color: #e4434b;
}

.sitemap-page .description {
  margin: 0 0 30px;
  text-align: center;
}

.sitemap-page .entity {
  margin: 0 0 30px;
}

.sitemap-page .entity-title {
  margin: 0 0 15px;
  padding: 0 10px;
  text-align: center;
}

.sitemap-page .entity-title h2 {
  font-size: 18px;
  font-weight: normal;
  color: #242423;
}

.sitemap-page .entity-body {
  border-top: 0px solid #e6e6e6;
  background-color: #efeff1;
  padding: 30px;
  text-align: center;
  border-radius: 5px;
}

.sitemap-page .entity ul {
  margin-bottom: 0;
  font-size: 0;
}

.sitemap-page .entity li {
  display: inline-block;
  position: relative;
  margin: 0 8px;
  padding: 0 12px;
  line-height: 50px;
  font-size: 14px;
  /*reset zeroing*/
}

.sitemap-page .entity li:before {
  content: "";
  position: absolute;
  top: 23px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #d9d9d9;
}

.sitemap-page .entity a {
  color: #242423;
}

.sitemap-page .entity a:hover {
  color: #0078d2;
}

.sitemap-page .entity a:empty {
  display: none;
}

/****** BLOG & NEWS ******/

.block-blog-archive .number {
  display: block;
  color: #242423;
  cursor: auto;
}

.block-blog-archive .sublist {
  margin: 5px 0 5px 15px;
}

.block-blog-archive li.month {
  padding: 3px 0 3px 15px;
}

.blog-page .page-title,
.news-list-page .page-title {
  margin: 0;
}

.blog-page .post,
.news-items .news-item {
  margin: 0 0 30px;
}

.blog-page .post:after {
  content: "";
  display: block;
  clear: both;
}

.post-title,
.news-title {
  display: inline-block;
  padding: 10px 0 5px;
  line-height: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #242423;
}

.post-title:hover,
.news-title:hover {
  color: #0078d2;
}

.post-date,
.news-date {
  display: block;
  padding: 0 0 15px;
}

.post-body,
.news-body {
  margin: 0 0 20px;
  padding: 0 0 20px;
  line-height: 22px;
  border-bottom: 1px solid #ddd;
}

.blog-page .tags,
.blogpost-page .tags {
  margin: 0 0 15px;
  overflow: hidden;
  padding: 0 10px;
}

.blog-page .tags label,
.blogpost-page .tags label {
  display: inline-block;
  margin: 0 3px 3px 0;
  font-weight: normal;
  color: #82828f;
}

.blog-page .tags ul,
.blogpost-page .tags ul {
  display: inline-block;
  margin: 0 0 3px 3px;
  font-size: 0;
}

.blog-page .tags li,
.blogpost-page .tags li {
  display: inline-block;
  font-size: 14px;
  /*reset zeroing*/
}

.blog-page .tags li.separator,
.blogpost-page .tags li.separator {
  margin: 0 8px 0 0;
}

.blog-page .tags a,
.blogpost-page .tags a {
  display: block;
  color: #0078d2;
}

.blog-page .tags a:hover,
.blogpost-page .tags a:hover {
  text-decoration: underline;
}

.blog-posts .buttons,
.news-items .buttons {
  margin: 0;
  padding: 0;
}

.blog-posts .buttons .read-comments {
  display: block;
  margin: 0 0 15px;
  font-weight: normal;
  color: #82828f;
}

.blog-posts .buttons .read-comments:hover {
  color: #0078d2;
}

.new-comment {
  margin: 50px 0 60px;
}

.new-comment .notifications {
  margin: 0 0 10px;
}

.new-comment .result {
  color: #690;
}

.new-comment .form-fields {
  margin: 0 0 20px;
}

.new-comment .button-1 {
  border: none;
  background-color: #0078d2;
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

.new-comment .button-1:hover {
  background-color: #79358f;
}

.comment-list {
  margin: 0 0 100px;
}

.comment-list .title {
  margin: 0 0 15px;
  padding: 0 10px;
  font-size: 20px;
  color: #242423;
}

.comment-list .title strong {
  font-weight: normal;
}

.comment-list .comment {
  margin: 0 0 40px;
  border-top: 0px solid #d9d9d9;
}

.comment-list .comment:after {
  content: "";
  display: block;
  clear: both;
}

.comment-info {
  width: 150px;
  margin: 20px auto;
}

.comment-info .username {
  display: block;
  margin: 0 0 -1px;
  border: 1px solid #d9d9d9;
  background-color: #f6f6f6;
  padding: 11px 0;
  font-weight: bold;
  color: #242423;
}

.comment-info a.username:hover {
  color: #0078d2;
}

.comment-info .avatar {
  position: relative;
  width: 150px;
  height: 150px;
  border: 1px solid #d9d9d9;
  overflow: hidden;
}

.comment-info .avatar img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  border: solid 2px #cedbe1 !important;
}

.comment-time {
  margin: 0 0 15px;
  font-size: 13px;
  font-weight: bold;
}

.comment-time span {
  color: #242423;
}

.comment-title {
  margin: 0 0 15px;
  font-size: 16px;
  color: #242423;
}

.comment-body {
  line-height: 22px;
}

.news-list-homepage {
  margin: 0 0 75px;
}

.news-list-homepage .title {
  margin: 0 0 -1px;
  border-bottom: 1px solid #d9d9d9;
  padding: 0 0 15px;
  font-size: 30px;
  font-weight: normal;
  color: #242423;
}

.news-list-homepage .title strong {
  font-weight: normal;
}

.news-list-homepage .view-all {
  text-align: center;
}

.news-list-homepage .view-all a {
  color: #242423;
  text-decoration: underline;
}

.news-list-homepage .view-all a:hover {
  color: #0078d2;
}

/*** FORUM & PROFILE ***/

.forums-main-page .topic-block {
  margin: 0 0 35px;
  text-align: center;
}

.forums-main-page .topic-block p {
  text-align: center;
}

.forums-main-page .pager {
  display: none;
}

.breadcrumb.forum-breadcrumb {
  margin: 0;
  background-color: transparent;
}

.breadcrumb.forum-breadcrumb ul {
  margin: 0;
}

.breadcrumb.forum-breadcrumb li .delimiter {
  color: #fff;
}

.breadcrumb.forum-breadcrumb li a {
  color: #f6f6f6;
}

.breadcrumb.forum-breadcrumb li a:hover {
  color: #0078d2;
}

.forums-header {
  margin: 0 0 50px;
  overflow: hidden;
}

.forums-header:after {
  content: "";
  display: block;
  clear: both;
}

.forums-header .current-time {
  margin: 0 0 15px;
  color: #242423;
}

.forum-search-box .basic {
  overflow: hidden;
  margin: 0 0 10px;
}

.forum-search-box .advanced a {
  line-height: 22px;
  color: #242423;
  text-decoration: underline;
}

.forum-search-box .advanced a:hover {
  color: #0078d2;
}

.forum-search-page .page-title {
  margin: 0 0 -1px;
}

.forum-search-page .search-error,
.forum-search-page .no-result {
  margin: 0 0 15px;
  text-align: center;
  color: #e4434b;
}

/* forum group */

.forums-table-section {
  margin: 0 0 60px;
}

.forums-table-section + .pager {
  margin: -30px 0 30px;
}

.forums-table-section-title {
  margin: 0 0 15px;
  padding: 0 10px;
}

.forums-table-section-title a,
.forums-table-section-title strong {
  font-size: 22px;
  font-weight: normal;
  color: #242423;
}

.forums-table-section-title a:hover {
  color: #0078d2;
}

.forums-table-section .image div {
  width: 38px;
  height: 32px;
  margin: auto;
  background: url('/Themes/NopKalles/Content/images/topic-type1.png') center no-repeat;
}

.forums-table-section .image div.sticky {
  background: url('/Themes/NopKalles/Content/images/topic-type2.png') center no-repeat;
}

.forums-table-section .image div.announcement {
  background: url('/Themes/NopKalles/Content/images/topic-type3.png') center no-repeat;
}

.forums-table-section .forum-title,
.forums-table-section .topic-title {
  margin: 5px 0;
}

.forums-table-section .forum-title a,
.forums-table-section .topic-title a {
  font-size: 16px;
  font-weight: bold;
  color: #242423;
}

.forums-table-section .forum-title a:hover,
.forums-table-section .topic-title a:hover {
  color: #0078d2;
  text-decoration: none;
}

.forums-table-section .topic-title span {
  display: block;
  color: #777;
}

.forums-table-section .forum-description,
.forums-table-section .topic-starter {
  margin: 5px 0;
}

.forums-table-section .latest-post {
  white-space: nowrap;
}

.forums-table-section .latest-post div {
  margin: 5px 0;
}

.forums-table-section .latest-post label {
  color: #777;
}

.forums-table-section .view-all {
  margin: 30px 0 0;
  padding: 0 10px;
}

.forums-table-section .view-all a {
  background-color: #0078d2;
  padding: 10px 15px;
  font-size: 12px;
  color: #fff;
}

.forums-table-section .view-all a:hover {
  background-color: #79358f;
}

/* forum-page, topic page */

.forum-page .forum-info {
  margin: 0 0 30px;
}

.forum-page .forum-name,
.forum-topic-page .topic-name {
  margin: 0 0 25px;
  border-bottom: 1px solid #d9d9d9;
  padding: 0 0 10px;
}

.forum-page .forum-name h1,
.forum-topic-page .topic-name h1 {
  font-size: 20px;
  font-weight: normal;
}

.forum-actions,
.topic-actions {
  margin: 0 0 30px;
  font-size: 0;
}

.forum-actions .actions a,
.topic-actions .actions a {
  display: inline-block;
  margin: 1px;
  padding: 10px 10px 10px 33px;
  font-size: 14px;
}

.forum-actions .actions .new-topic {
  background: #ebebf0 url('/Themes/NopKalles/Content/images/new.png') left center no-repeat;
}

.forum-actions .actions .watch-forum,
.topic-actions .actions .watch-forum {
  background: #ebebf0 url('/Themes/NopKalles/Content/images/watch.png') left center no-repeat;
}

.forum-actions .actions a:hover,
.topic-actions .actions a:hover {
  background-color: #e6e6e6;
}

.forum-actions .pager.upper,
.topic-actions .pager.upper {
  display: none;
  margin: 0;
}

.topic-actions .reply-topic-button {
  background: #ebebf0 url('/Themes/NopKalles/Content/images/reply.png') left center no-repeat;
}

.topic-actions .watch-topic-button {
  background: #ebebf0 url('/Themes/NopKalles/Content/images/watch.png') left center no-repeat;
}

.topic-actions .move-topic-button {
  background: #ebebf0 url('/Themes/NopKalles/Content/images/move.png') left center no-repeat;
}

.topic-actions .edit-topic-button {
  background: #ebebf0 url('/Themes/NopKalles/Content/images/edit_.png') left center no-repeat;
}

.topic-actions .delete-topic-button {
  background: #ebebf0 url('/Themes/NopKalles/Content/images/remove_.png') left center no-repeat;
}

.topic-actions.lower .actions {
  display: none;
}

.active-discussions-page .forums-table-section-title {
  margin: 0 0 25px;
  border-bottom: 1px solid #d9d9d9;
  padding: 0 10px 10px;
}

.active-discussions-page .forums-table-section-title strong {
  font-size: 20px;
  font-weight: normal;
}

.active-discussions-page .forums-table-section-body {
  margin: 0 0 20px;
}

/* topic post */

.topic-post {
  margin: 0 0 30px;
  border-top: 1px solid #d9d9d9;
}

.topic-post:last-child {
  border-bottom: 1px solid #d9d9d9;
}

.topic-post:after {
  content: "";
  display: block;
  clear: both;
}

.topic-post .post-info {
  margin: 30px 0;
}

.topic-post .user-info {
  width: 150px;
  margin: 0 auto 15px;
}

.topic-post .username {
  display: block;
  margin: 0 0 -1px;
  border: 1px solid #d9d9d9;
  background-color: #f6f6f6;
  padding: 11px 0;
  font-weight: bold;
  color: #242423;
}

.topic-post a.username:hover {
  color: #0078d2;
}

.topic-post .avatar,
.profile-info-box .avatar {
  position: relative;
  width: 150px;
  height: 150px;
  border: 1px solid #d9d9d9;
  overflow: hidden;
}

.topic-post .avatar img,
.profile-info-box .avatar img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.topic-post .avatar img {
  border: solid 2px #cedbe1 !important;
}

.topic-post .user-stats {
  margin: 0 0 15px;
}

.topic-post .user-stats li {
  display: inline-block;
  margin: 0 10px;
}

.topic-post .user-stats span,
.profile-info-box .profile-stats span {
  margin: 0 0 0 3px;
  font-weight: bold;
  color: #242423;
}

.topic-post .pm-button,
.profile-info-box .pm-button {
  display: inline-block;
  border: none;
  background-color: #888;
  padding: 10px 20px;
  font-size: 12px;
  color: #fff;
}

.topic-post .pm-button:hover,
.profile-info-box .pm-button:hover {
  background-color: #999;
}

.topic-post .post-time {
  margin: 0 0 15px;
  background-color: #f6f6f6;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: bold;
}

.topic-post .post-time span {
  color: #242423;
}

.topic-post .post-actions {
  margin: 0 0 15px;
  font-size: 0;
}

.topic-post .post-actions > div {
  display: inline-block;
}

.topic-post .post-actions a {
  display: inline-block;
  margin: 1px 5px;
  font-size: 14px;
}

.topic-post .post-actions .edit-post-button,
.topic-post .post-actions .delete-post-button {
  padding: 10px 10px 10px 33px;
}

.topic-post .post-actions .edit-post-button {
  background: url('/Themes/NopKalles/Content/images/edit_.png') left center no-repeat;
}

.topic-post .post-actions .delete-post-button {
  background: url('/Themes/NopKalles/Content/images/remove_.png') left center no-repeat;
}

.topic-post .post-actions .edit-post-button:hover,
.topic-post .post-actions .delete-post-button:hover {
  color: #0078d2;
}

.topic-post .post-actions .post-link-button {
  padding: 10px;
  font-weight: bold;
  color: #0078d2;
}

.topic-post .post-actions .post-link-button:hover {
  text-decoration: underline;
}

.topic-post .post-actions .quote-post-button {
  background-color: #888;
  padding: 10px 20px;
  color: #fff;
}

.topic-post .post-actions .quote-post-button:hover {
  background-color: #999;
  color: #fff;
}

.topic-post .post-text {
  /*topic post-text also gets style from blog post-body*/
  padding: 0 10px 20px;
  line-height: 22px;
  color: #242423;
  margin-bottom: 0;
}

.topic-post .post-vote {
  text-align: center;
  display: table;
  margin: 0 auto 20px;
}

.topic-post .user-posted-image,
.latest-posts .user-posted-image {
  max-width: 100%;
  height: auto;
}

.topic-post .quote,
.latest-posts .quote {
  margin: 10px 0;
  border: 1px dashed #ccc;
  background-color: #efeff1;
  padding: 10px;
  color: #777;
}

.topic-post .signature {
  border-top: 1px solid #d9d9d9;
  padding: 20px;
  font-size: 13px;
  font-style: italic;
  clear: both;
}

.topic-post .post-vote span.vote {
  cursor: pointer;
  display: block;
  width: 40px;
  height: 24px;
}

.topic-post .post-vote span.up {
  background: url('/Themes/NopKalles/Content/images/vote-up.png') no-repeat 50% 50%;
}

.topic-post .post-vote span.vote.up.selected {
  background: url('/Themes/NopKalles/Content/images/vote-up-selected.png') no-repeat 50% 50%;
}

.topic-post .post-vote span.down {
  background: url('/Themes/NopKalles/Content/images/vote-down.png') no-repeat 50% 50%;
}

.topic-post .post-vote span.vote.down.selected {
  background: url('/Themes/NopKalles/Content/images/vote-down-selected.png') no-repeat 50% 50%;
}

.topic-post .vote-count-post {
  display: block;
  font-size: 160%;
}

/* forum edit & send message */

.forum-edit-page .page-title,
.move-topic-page .page-title,
.private-message-send-page .page-title {
  margin: 0 0 -1px;
}

.move-topic-page label {
  white-space: normal;
}

.forum-edit-page .message-error,
.private-message-send-page .message-error {
  margin: 20px 0;
}

.forum-edit-page .inputs strong {
  display: inline-block;
  max-width: 400px;
  font-size: 22px;
  /*reset zeroing*/
  font-weight: normal;
  color: #242423;
  white-space: normal;
}

.forum-edit-page .inputs .topic-subject {
  font-size: 17px;
}

.forum-edit-page .inputs.reversed {
  margin: 0;
}

.forum-edit-page .inputs.reversed label {
  width: auto;
  margin: 5px;
  font-size: 14px;
  /*reset zeroing*/
  white-space: normal;
}

.forum-edit-page .bb-code-editor-wrapper,
.private-message-send-page .bb-code-editor-wrapper {
  max-width: 400px;
  margin: 20px auto;
  background-color: #d9d9d9;
  padding: 10px;
}

.forum-edit-page .toolbar .button,
.private-message-send-page .toolbar .button {
  margin: 0 2px 0 0;
  border: #cec6b5 1px solid;
  padding: 2px;
}

.forum-edit-page .toolbar .button:hover,
.private-message-send-page .toolbar .button:hover {
  border: #333 1px solid;
}

.forum-edit-page textarea,
.private-message-send-page textarea {
  display: block;
  margin: auto;
}

.forum-edit-page .buttons input,
.move-topic-page .buttons input,
.private-messages .buttons input {
  min-width: 140px;
  border: none;
  background-color: #999;
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

.forum-edit-page .buttons input:hover,
.move-topic-page .buttons input:hover,
.private-messages .buttons input:hover {
  background-color: #888;
}

.forum-edit-page .buttons .button-1,
.move-topic-page .buttons .button-1,
.private-messages .buttons .button-1 {
  background-color: #0078d2;
}

.forum-edit-page .buttons .button-1:hover,
.move-topic-page .buttons .button-1:hover,
.private-messages .buttons .button-1:hover {
  background-color: #79358f;
}

.private-message-send-page a {
  font-size: 14px;
  color: #0078d2;
}

.private-message-send-page span {
  font-size: 14px;
}

/* jQuery tabs */

.ui-tabs {
  /*override jQuery UI styles, do not delete doubled properties*/
  border: none;
  border-radius: 0;
  background: none;
  padding: 0;
  font:
    normal 14px Arial,
    Helvetica,
    sans-serif;
  color: #777;
}

.ui-widget.ui-widget-content.ui-tabs {
  border: none;
}

.ui-tabs-nav {
  margin: 0 0 30px;
  border-bottom: 1px solid #d9d9d9;
  overflow: hidden;
  font-size: 0;
  /*override jQuery UI styles, do not delete doubled properties*/
  margin: 0 0 30px !important;
  border-width: 0 0 1px;
  border-radius: 0;
  background: none;
  padding: 0 !important;
  line-height: normal;
  font-weight: normal;
  color: #242423;
}

.ui-tabs-nav li {
  margin: 0 0 -1px;
  /*override jQuery UI styles, do not delete doubled properties*/
  float: none !important;
  margin: 0 0 -1px !important;
  border: none !important;
  border-radius: 0;
  background: none !important;
  padding: 0 !important;
}

.ui-tabs-nav li a {
  display: block;
  border: 1px solid #d9d9d9;
  padding: 12px 24px;
  text-align: center;
  font-size: 18px;
  color: #242423;
  /*override jQuery UI styles, do not delete doubled properties*/
  float: none !important;
  padding: 12px 24px !important;
}

.ui-tabs-nav li.ui-state-active a {
  background-color: #ebebf0;
  color: #0078d2;
}

.ui-tabs-panel {
  /*override jQuery UI styles, do not delete doubled properties*/
  padding: 0 !important;
}

/* inbox & view message */

.private-messages-page .table-wrapper,
.private-message-view-page .view-message {
  margin: 0 0 30px;
}

.private-messages-page th.select {
  text-align: center;
}

.private-messages-page td.from,
.private-messages-page td.to,
.private-messages-page td.subject {
  min-width: 150px;
}

.private-messages-page td.date {
  white-space: nowrap;
}

.private-messages-page td.subject a {
  color: #242423;
}

.private-messages-page td.subject a.pm-unread {
  color: #0078d2;
}

.private-messages-page .pager {
  margin: 0 0 30px;
}

.private-messages-page .buttons,
.private-message-view-page .buttons {
  font-size: 0;
}

.private-messages-page .buttons .button-1,
.private-messages-page .buttons .button-2,
.private-message-view-page .buttons .button-1,
.private-message-view-page .buttons .button-2 {
  display: block;
  width: 250px;
  margin: 0 auto 3px;
  font-size: 15px;
  /*reset zeroing*/
}

.private-message-view-page .view-message {
  margin: 0 0 30px;
}

.private-message-view-page .message-head {
  margin: 0 0 20px;
  line-height: 22px;
}

.private-message-view-page .message-head span {
  font-weight: bold;
  color: #242423;
}

.private-message-view-page .message-body {
  border-top: 1px solid #d9d9d9;
  background-color: #efeff1;
  padding: 30px 20px;
  line-height: 22px;
  text-align: justify;
}

.private-message-view-page .back-pm-button {
  text-transform: capitalize !important;
}

/* profile page  */

.profile-info-box {
  overflow: hidden;
  /*override jQuery UI styles, do not delete doubled properties*/
  line-height: normal;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: #777;
}

.profile-info-box .user-details {
  margin: 0 0 30px;
}

.profile-info-box .avatar {
  margin: 0 auto 15px;
}

.profile-info-box .title {
  margin: 0 0 10px;
  font-size: 18px;
  color: #242423;
}

.profile-info-box .stats {
  margin: 0 0 15px;
}

.latest-posts {
  /*override jQuery UI styles, do not delete doubled properties*/
  line-height: normal;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: #777;
}

.latest-posts .topic {
  margin: 0 0 35px;
}

.latest-posts .topic-title {
  margin: 0 0 20px;
  border-top: 1px solid #d9d9d9;
  background: #f6f6f6;
  padding: 10px;
  font-size: 16px;
}

.latest-posts .topic-title a {
  font-weight: bold;
  color: #242423;
}

.latest-posts .topic-title a:hover {
  color: #0078d2;
}

.latest-posts .topic-body {
  margin: 0 0 15px;
  line-height: 22px;
}

.latest-posts .topic-data {
  color: #242423;
}

/* BB codes */

pre {
  white-space: pre-wrap;
  white-space: normal;
  word-wrap: break-word;
}

.csharpcode {
  margin: 10px 0;
  border: 1px dashed #ccc;
  background-color: #fff;
  padding: 10px;
  font-family: "Courier New", Courier, monospace;
  color: #000;
}

.csharpcode .rem {
  color: green;
}

.csharpcode .kwrd {
  color: #00f;
}

.csharpcode .str {
  color: #006080;
}

.csharpcode .op {
  color: #00c;
}

.csharpcode .preproc {
  color: #c63;
}

.csharpcode .asp {
  background-color: #ff0;
}

.csharpcode .html {
  color: maroon;
}

.csharpcode .attr {
  color: red;
}

.csharpcode .alt {
  width: 100%;
  margin: 0;
  background-color: #f6f6f6;
}

.csharpcode .lnum {
  color: #666;
}

/*** ESTIMATE SHIPPING POPUP COMMON ***/

.estimate-shipping-popup {
  position: relative;
  background: #fff;
  padding: 25px 10px;
  width: auto;
  max-width: 800px;
  margin: 0 auto;
}

.estimate-shipping-popup-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}

.estimate-shipping-popup-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.estimate-shipping-popup-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}

.estimate-shipping-popup-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.estimate-shipping-popup-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}

.estimate-shipping-popup-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.shipping-options-loading {
  background: url('/Themes/NopKalles/Content/images/ajax-loader-small.gif') no-repeat;
  width: 16px;
  height: 16px;
  position: relative;
  right: 8px;
  margin: 4% 50%;
}

.shipping-address .required {
  margin-left: 0px;
}

.estimate-shipping-row {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}

.estimate-shipping-row.shipping-option {
  cursor: pointer;
}

.estimate-shipping-row.shipping-option.active {
  font-weight: 700;
}

.estimate-shipping-row-item {
  flex: 0 1 100%;
}

.estimate-shipping-row-item.shipping-item {
  padding: 8px 0;
  overflow: hidden;
  overflow-wrap: break-word;
}

.estimate-shipping-row-item.shipping-header-item {
  padding: 12px 0;
  border-bottom: 1px solid #f2f2f2;
  align-self: flex-end;
}

.estimate-shipping-row-item.address-item + .estimate-shipping-row-item.address-item {
  padding-left: 15px;
}

.estimate-shipping-row-item + .estimate-shipping-row-item {
  padding-left: 10px;
}

.estimate-shipping-row-item-radio {
  flex: 0 0 35px;
}

.ship-to-title {
  margin-bottom: 10px;
}

.choose-shipping-title {
  margin-top: 20px;
}

.estimate-shipping-address-control {
  width: 100%;
  height: 36px;
}

.estimate-shipping-radio {
  display: none;
}

.estimate-shipping-radio + label {
  -webkit-appearance: none;
  background-color: #fafafa;
  border: 1px solid #cacece;
  padding: 9px;
  border-radius: 50px;
  display: inline-block;
  position: relative;
}

.estimate-shipping-radio:checked + label:after {
  content: " ";
  width: 6px;
  height: 6px;
  border-radius: 50px;
  position: absolute;
  top: 6px;
  left: 6px;
  background: #ffffff;
}

.estimate-shipping-radio:checked + label {
  background-color: #4ab2f1;
  color: #99a1a7;
  border: 1px solid #adb8c0;
  border-color: #4ab2f1;
}

.apply-shipping-button {
  border: none;
  padding: 8px 25px;
  background-color: #0078d2;
  color: #fff;
}

.apply-shipping-button-container {
  margin-top: 15px;
  text-align: center;
}

.shipping-options-header {
  top: 0;
  z-index: 1;
  position: sticky;
  background-color: #fff;
}

.shipping-options {
  position: relative;
  z-index: 1;
  overflow: hidden;
  overflow-y: auto;
  max-height: 200px;
  background: #fff no-repeat;
  background-image:
    -webkit-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)),
    -webkit-radial-gradient(50% 100%, farthest-side, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
  background-image:
    -moz-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)),
    -moz-radial-gradient(50% 100%, farthest-side, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
  background-image:
    radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)),
    radial-gradient(farthest-side at 50% 100%, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
  background-position:
    0 0,
    0 100%;
  background-size: 100% 7px;
}

.shipping-options:before,
.shipping-options:after {
  content: "";
  position: relative;
  z-index: -1;
  display: block;
  height: 30px;
  margin: 0 0 -30px;
  background: -webkit-linear-gradient(top, #fff, #fff 30%, rgba(255, 255, 255, 0));
  background: -moz-linear-gradient(top, #fff, #fff 30%, rgba(255, 255, 255, 0));
  background: linear-gradient(to bottom, #fff, #fff 30%, rgba(255, 255, 255, 0));
}

.shipping-options:after {
  margin: -30px 0 0;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #fff 70%, #fff);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), #fff 70%, #fff);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 70%, #fff);
}

.no-shipping-options {
  text-align: center;
  margin: 4% 0;
}

.estimate-shipping-popup .message-failure {
  margin: 5px 0 -5px;
  font-size: 12px;
  color: #e4434b;
}

.navbar-nav {
}

@media all and (max-width: 769px) {
  /*** ESTIMATE SHIPPING POPUP ***/
  .shipping-address {
    flex-flow: column;
  }

  .address-item {
    width: 100%;
  }

  .estimate-shipping-row-item.address-item + .estimate-shipping-row-item.address-item {
    padding-left: 0px;
    padding-top: 8px;
  }
}

.product-details-page .offer-content {
  margin-top: 5px;
  z-index: 10000;
}

.product-item .offer-content,
.product-details-page .offer-content {
  position: absolute;
  top: 5px;
  left: 25px;
  width: auto;
}

.product-filter.product-spec-filter {
  display: block;
}

.product-filter.price-range-filter {
  display: inline;
}

span.to {
  float: right;
}

/*filter css*/

.nop-ajax-filters {
  margin-bottom: 15px;
}

.ajax-products {
  position: relative;
}

.ajaxfilter-title {
  font-size: 16px;
  font-weight: bold;
}

.ajaxfilter-title i {
  color: #b8b8b8;
}

.ajax-products .spinner {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  background-color: #fff;
  opacity: 0.7;
  padding-top: 10%;
  display: none;
}

.ajax-products .spinner > div {
  width: 40px;
  height: 40px;
}

.spinner {
  margin: 0px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #1d1d1d;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.filter-section {
  max-width: 600px;
  text-align: left;
  margin-bottom: 20px;
  margin: auto;
}

.filter-section .title {
  overflow: hidden;
}

.filter-section .filter-section .title a.ajax-filter-clear-all {
  cursor: pointer;
  padding-right: 5px;
}

.filter-section .title,
.vendors-section .ajaxfilter-title {
  letter-spacing: 0;
  text-align: left;
  position: relative;
  padding: 8px 0;
  font-size: 18px;
  color: #000;
  cursor: pointer;
  display: inline-block;
  width: 100%;
}

.filter-section .title a {
  margin-left: 5px;
  font-size: 100%;
  cursor: pointer;
}

.filter-section .listbox ul {
  margin: 0;
  padding: 0 0 0 2px;
  color: #fff;
  background-color: inherit;
}

.ui-slider-horizontal {
  height: 4px;
}

.ajaxfilter-price-range-section {
  line-height: 10px;
  font-size: 18px;
}

.ajaxfilter-section {
  font-size: 13px;
  padding: 11px 0px 10px;
  line-height: 18px;
  margin: 0;
  border-color: #000;
}

.ajaxfilter-section select {
  min-width: 100%;
  margin-top: 0;
}

.ajaxfilter-price-section {
  height: 20px;
}

#slider-range {
  margin: 20px auto 20px;
  max-width: calc(100% - 50px);
}

.ajaxfilter-section ul {
  margin: 0;
  padding: 10px 0px 0px 2px;
  color: #fff;
  background-color: inherit;
  line-height: 20px;
}

.ajaxfilter-section li {
  background: none;
  list-style: none;
  color: #000000;
  z-index: 1;
}

.ajaxfilter-section li:not(.square) {
  bottom: 19px;
  position: relative;
  z-index: 0;
  left: 2px;
  line-height: 18px;
}

.ajaxfilter-section li.colorLi {
  bottom: 20px;
  position: relative;
  z-index: 0;
  margin-bottom: -20px;
}

.square {
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid #b8b8b8;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
  margin-right: 10px;
}

input[type="checkbox"]:checked + label::before {
  content: "\f14a";
}

.square::after {
  content: "";
  font-size: 11px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #4caf50;
  z-index: 100;
  visibility: hidden;
  text-shadow: 0px 0px 3px #fff;
  font: normal normal normal 14px/1 FontAwesome;
  transform: translate(-50%, -50%);
  line-height: 11px;
  background: #4caf50;
  width: 10px;
  height: 10px;
}

.square.active:after {
  visibility: visible;
}

.ajaxfilter-section label,
.vendors-section label {
  letter-spacing: 1px;
  text-align: left;
  color: #444;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  line-height: 15px;
  padding: 10px 0px 10px 13px;
  margin-bottom: 0;
  width: 95%;
  position: relative;
  top: 2px;
  display: inline-table;
}

.ajaxfilter-section input[type="checkbox"] {
  display: none;
}

.ajaxfilter-section input[type="checkbox"] ~ label::before {
  float: right;
  line-height: 22px;
  color: #4caf50;
  content: "";
  display: inline-block;
}

.ajaxfilter-section label i {
  font-style: normal;
  max-width: 70%;
  display: inline-block;
  vertical-align: middle;
  line-height: 22px;
  letter-spacing: 0;
}

.ajaxfilter-section label input {
  visibility: hidden;
}

.white-popup {
  position: relative;
  background: #fff;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
}

.products-count {
  text-align: center;
  font-size: medium;
  padding: 5px;
  background: aliceblue;
  font-weight: bold;
}

.searchProcess {
  position: absolute;
  background: url('/Themes/NopKalles/Content/css/images/ajaxLoader.gif') no-repeat fixed 50% 50% #ffffff;
  width: auto;
  height: auto;
  filter: alpha(opacity=70);
  opacity: 0.7;
  z-index: 1;
  clear: both;
  position: fixed;
  top: 0;
}

#price-current-min {
  width: 60px;
  border: 1px solid #cccccc;
  text-align: center;
  float: left;
  font-size: 14px;
  height: 24px;
}

#price-current-max {
  width: 60px;
  border: 1px solid #cccccc;
  text-align: center;
  float: right;
  font-size: 14px;
  height: 24px;
}

#ajaxfilter-form .ajax-filter-section .filter-section .ajaxfilter-section input[type="checkbox"],
#ajaxfilter-form input[type="radio"],
#ajaxfilter-form input[type="checkbox"] + *,
#ajaxfilter-form input[type="radio"] + * {
  vertical-align: top;
}

#ajaxfilter-form .ajax-filter-section .filter-section {
  border: 1px solid #e6e9ee;
  border-radius: 5px;
  margin-bottom: 5px;
}

.arrowHold {
  position: absolute;
  height: 20px;
  width: 20px;
  right: 8px;
  background: transparent url('/Themes/NopKalles/Content/Content/images/toggle-gray.png') center no-repeat;
  -webkit-transition: all 500ms linear;
  -moz-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  top: 6px;
}

.arrowHold.rotate {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.regular-checkbox {
  background-color: transparent;
  border: 1px solid transparent;
  box-shadow:
    0 1px 2px transparent,
    inset 0px -15px 10px -12px transparent;
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  z-index: -1;
}

.regular-checkbox:checked {
  background-color: transparent;
  border: 1px solid transparent;
  /*box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);*/
  color: #99a1a7;
}

.clearHolder {
  width: 100%;
  text-align: center;
  position: relative;
  bottom: 17px;
  font-size: 12px;
  display: none;
}

.ajaxfilter-price-section input {
  padding: 0;
}

.clearAllfilters {
  background: white;
  margin: auto;
  margin-top: auto;
  margin-bottom: auto;
  border: none;
  cursor: pointer;
  color: #4caf50;
  width: auto;
  padding: 3px 10px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 30px;
  border-radius: 5px;
  border: 1px solid #4caf50;
  width: 100%;
  margin-top: 15px;
}

.selectedOptions div {
  width: 100%;
  display: inline-flex;
  text-align: left;
}

.selectedOptions .btn {
  text-align: left;
  background-color: #fff;
  line-height: 1.25;
  vertical-align: middle;
  border: 1px solid #ccc;
  border-radius: 0;
  margin-top: 2px;
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  cursor: pointer;
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #cccccc;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-bottom-color: #b3b3b3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: left;
  background-color: #fff;
  line-height: 1.25;
  vertical-align: middle;
  border: 1px solid #ccc;
  border-radius: 0;
  margin-top: 2px;
}

.selectedOptions .btn:hover {
  background-image: linear-gradient(to bottom, #e6e6e6, #fff);
}

.selectedOptions .btn:first-of-type {
  width: 75%;
  padding: 6px;
}

.selectedOptions .btn:nth-child(2) {
  text-align: center;
  width: 25%;
  margin-left: -1px;
}

.closeAllFilters {
  background-color: #4ab2f1;
  width: 60%;
  text-align: center;
  font-size: 15px;
  color: #fff;
  border: none;
  padding: 10px;
  width: 100%;
  margin-top: 1px;
}

input[type="checkbox"]:disabled ~ label {
  text-decoration: line-through;
}

.remover {
  cursor: pointer;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #fff;
  font-weight: normal;
  color: #454545;
  height: 20px;
  width: 20px;
  border-radius: 50% !important;
  top: 50% !important;
  transform: translateY(-50%);
  cursor: e-resize;
}

.ui-state-default,
.ui-widget-content .ui-slider-handle {
  border: 1px solid #0c90ea;
  color: #0c90ea;
  background: #0c90ea;
  border-radius: 50%;
}

.ui-slider .ui-slider-range {
  background: #cdcdcd;
}

.price-range-max,
.price-range-min {
  padding: 0 20px;
}

li.color {
  display: inline-block;
}

span.color-box {
  display: block;
  height: 27px;
  width: 27px;
  font-size: 0;
  position: relative;
}

.filter-section .title,
.vendors-section .ajaxfilter-title {
  padding: 13px 15px 8px;
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
}

.vendors-section .ajaxfilter-title {
  margin-bottom: 10px !important;
}

li.color input[type="checkbox"]:checked ~ label .color-box::before {
  content: "";
  display: block;
  border: 2px solid #f8f7f7;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 48%;
  left: 49%;
  transform: translate(-50%, -50%);
}

#ajaxfilter-form .filter-title {
  background: #000;
  color: #fff;
  cursor: pointer;
}

#ajaxfilter-form .filter-title h4 {
  font-size: 18px;
  margin: 0;
  line-height: 18px;
  font-weight: 700;
  padding: 13px 15px;
}

.ajaxfilter-section label .square {
  float: left;
}

.accordion h4[aria-expanded="true"] .fa-angle-down {
  transform: rotate(180deg);
  transition: 0.5s;
}

.accordion h4[aria-expanded="false"] .fa-angle-down {
  transform: rotate(0deg);
  transition: 0.5s;
}

.nop-ajax-filters {
  width: 100%;
  margin-top: 15px;
}

.ajax-products {
  position: relative;
}

.ajaxfilter-title {
  font-size: 16px;
  font-weight: bold;
}

.ajax-products .spinner {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  background-color: #fff;
  opacity: 0.7;
  padding-top: 10%;
  display: none;
}

.ajax-products .spinner > div {
  width: 40px;
  height: 40px;
}

.spinner {
  margin: 0px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #1d1d1d;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.filter-section {
  max-width: 600px;
  text-align: left;
  margin-bottom: 20px;
  margin: auto;
}

.filter-section .title {
  overflow: hidden;
}

.filter-section .filter-section .title a.ajax-filter-clear-all {
  cursor: pointer;
  padding-right: 5px;
}

.filter-section .title,
.vendors-section .ajaxfilter-title {
  letter-spacing: 0;
  text-align: left;
  position: relative;
  padding: 8px 0;
  font-size: 18px;
  color: #000;
  cursor: pointer;
  display: inline-block;
  width: 100%;
}

.filter-section .title a {
  margin-left: 5px;
  font-size: 100%;
  cursor: pointer;
}

.filter-section .listbox ul {
  margin: 0;
  padding: 0;
  color: #fff;
  background-color: inherit;
}

.ui-slider-horizontal {
  height: 4px;
}

.ajaxfilter-price-range-section {
  font-size: 18px;
}

.ajaxfilter-section {
  padding: 10px 20px 15px;
  margin: 0;
}

.ajaxfilter-section select {
  min-width: 100%;
  margin-top: 0;
}

.ajaxfilter-price-section {
  height: 20px;
}

#slider-range {
  margin: 13px auto 12px;
  max-width: calc(100% - 30px);
}

.ajaxfilter-section ul {
  margin: 0;
  padding: 0;
  color: #fff;
  background-color: inherit;
  line-height: 20px;
}

.ajaxfilter-section li {
  background: none;
  list-style: none;
  color: #000000;
  z-index: 1;
}

input[type="checkbox"]:checked + label::before {
  content: "\f14a";
}

.ajaxfilter-section input[type="checkbox"] ~ label::before {
  position: relative;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 1px solid #d4d6d8;
  background: #fff;
  border-radius: 4px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  text-indent: -9000px;
  overflow: hidden;
}

.ajaxfilter-section input[type="checkbox"] ~ label::after {
  content: "\2713\0020";
  position: absolute;
  /* top: .15em;
    left: 15px;*/
  top: 0.8em;
  left: 16px;
  opacity: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 0.8;
  color: #0078d2;
  transition: all 0.2s;
  text-indent: initial;
}

.ajaxfilter-section input[type="checkbox"]:checked ~ label::before {
  border-color: #0078d2;
}

.ajaxfilter-section input[type="checkbox"]:checked ~ label::after {
  opacity: 1;
  transform: scale(1);
}

.circle {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  padding: 2px;
  border: 2px solid #d9d9d9;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
  text-indent: -9000px;
  overflow: hidden;
}

.circle:not(.color)::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  display: inline-block;
  width: 17px;
  height: 17px;
  background-color: #f6f6f6;
  border-radius: 50%;
}

input.active ~ label .circle,
.circle.active {
  border-color: #0078d2;
}

input.active ~ label .circle:not(.color)::after,
.circle:not(.color).active::after {
  background-color: #0078d2;
}

.ajaxfilter-section label,
.vendors-section label {
  letter-spacing: 1px;
  text-align: left;
  color: #444;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ajaxfilter-section li:not(:last-child),
.vendors-section li:not(:last-child) {
  margin-bottom: 15px;
}

.ajaxfilter-section .list-categories li:not(:last-child),
.ajaxfilter-section .list-manufacturer li:not(:last-child),
.ajaxfilter-section .list-tags li:not(:last-child) {
  margin-bottom: 0;
}

.ajaxfilter-section label span {
  padding-left: 5px;
  color: #878787;
  font-size: 12px;
}

.ajaxfilter-section label i {
  font-style: normal;
  letter-spacing: 0;
}

.ajaxfilter-section label input {
  visibility: hidden;
}

.white-popup {
  position: relative;
  background: #fff;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
}

.products-count {
  text-align: center;
  font-size: medium;
  padding: 5px;
  background: aliceblue;
  font-weight: bold;
}

.searchProcess {
  position: absolute;
  background: url('/Themes/NopKalles/Content/css/images/ajaxLoader.gif') no-repeat fixed 50% 50% #ffffff;
  width: auto;
  height: auto;
  filter: alpha(opacity=70);
  opacity: 0.7;
  z-index: 1;
  clear: both;
  position: fixed;
  top: 0;
}

#price-current-min {
  width: 60px;
  border: 1px solid #cccccc;
  text-align: center;
  float: left;
  font-size: 14px;
  height: 24px;
}

#price-current-max {
  width: 60px;
  border: 1px solid #cccccc;
  text-align: center;
  float: right;
  font-size: 14px;
  height: 24px;
}

#ajaxfilter-form .ajax-filter-section .filter-section .ajaxfilter-section input[type="checkbox"],
#ajaxfilter-form input[type="radio"],
#ajaxfilter-form input[type="checkbox"] + *,
#ajaxfilter-form input[type="radio"] + * {
  vertical-align: top;
}

#ajaxfilter-form .ajax-filter-section .filter-section,
.accordion .filter-section {
  border-bottom: 1px solid #e5e5e5;
  border-radius: 5px;
  margin-bottom: 10px;
  padding-bottom: 7px;
}

.arrowHold {
  position: absolute;
  height: 20px;
  width: 20px;
  right: 8px;
  background: transparent url('/Themes/NopKalles/Content/Content/images/toggle-gray.png') center no-repeat;
  -webkit-transition: all 500ms linear;
  -moz-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  top: 6px;
}

.arrowHold.rotate {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.regular-checkbox {
  background-color: transparent;
  border: 1px solid transparent;
  box-shadow:
    0 1px 2px transparent,
    inset 0px -15px 10px -12px transparent;
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  z-index: -1;
}

.regular-checkbox:checked {
  background-color: transparent;
  border: 1px solid transparent;
  color: #99a1a7;
}

.clearHolder {
  width: 100%;
  text-align: center;
  position: relative;
  bottom: 17px;
  font-size: 12px;
  display: none;
}

.ajaxfilter-price-section input {
  padding: 0;
}

.clearAllfilters {
  margin: 10px auto;
}

.selectedOptions div {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: left;
}

.selectedOptions .btn {
  text-align: left;
  background-color: #fff;
  line-height: 1.25;
  vertical-align: middle;
  border: 1px solid #ccc;
  border-radius: 0;
  margin-top: 2px;
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  cursor: pointer;
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #cccccc;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-bottom-color: #b3b3b3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: left;
  background-color: #fff;
  line-height: 1.25;
  vertical-align: middle;
  border: 1px solid #ccc;
  border-radius: 0;
  margin-top: 2px;
}

.selectedOptions .btn:hover {
  background-image: linear-gradient(to bottom, #e6e6e6, #fff);
}

.selectedOptions .btn:first-of-type {
  width: 75%;
  padding: 6px;
}

.selectedOptions .btn:nth-child(2) {
  text-align: center;
  width: 25%;
  margin-left: -1px;
}

.closeAllFilters {
  background-color: #4ab2f1;
  width: 60%;
  text-align: center;
  font-size: 15px;
  color: #fff;
  border: none;
  padding: 10px;
  width: 100%;
  margin-top: 1px;
}

input[type="checkbox"]:disabled ~ label {
  text-decoration: line-through;
}

.remover {
  cursor: pointer;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #fff;
  font-weight: normal;
  color: #454545;
  height: 20px;
  width: 20px;
  border-radius: 50% !important;
  top: 50% !important;
  transform: translateY(-50%);
  cursor: e-resize;
}

.ui-state-default,
.ui-widget-content .ui-slider-handle {
  border: 1px solid #0078d2;
  color: #0078d2;
  background: #0078d2;
  border-radius: 50%;
}

.ui-slider .ui-slider-range {
  background: #ddd;
}

.price-range-max,
.price-range-min {
  padding: 0 5px;
}

li.color {
  display: inline-block;
}

span.color-box {
  display: block;
  height: 27px;
  width: 27px;
  font-size: 0;
  position: relative;
}

.filter-section .title,
.vendors-section .ajaxfilter-title {
  padding: 0;
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
}

.filter-section .title .ajaxfilter-title,
.filter-section .title h5 {
  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;
  width: 100%;
  min-height: 44px;
  padding: 5px 20px 5px;
  font-size: 14px;
  font-weight: 500;
}

/* .filter-section .title .ajaxfilter-title:not(.collapsed)::after,
.filter-section .title h5:not(.collapsed)::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 60px;
    height: 2.5px;
    background: #242423;
} */

.filter-section .title h5[data-toggle="collapse"] .fa:before,
.filter-section .title .ajaxfilter-title[data-toggle="collapse"] .fa:before {
  content: "\f068";
}

.filter-section .title h5[data-toggle="collapse"].collapsed .fa:before,
.filter-section .title .ajaxfilter-title[data-toggle="collapse"].collapsed .fa:before {
  content: "\f067";
}

li.color input[type="checkbox"]:checked ~ label .color-box::before {
  content: "";
  display: block;
  border: 2px solid #f8f7f7;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 48%;
  left: 49%;
  transform: translate(-50%, -50%);
}

#ajaxfilter-form .filter-title {
  background: #000;
  color: #fff;
  cursor: pointer;
}

#ajaxfilter-form .filter-title h4 {
  display: none;
  font-size: 18px;
  margin: 0;
  line-height: 18px;
  font-weight: 700;
  padding: 13px 15px;
}

.ajaxfilter-section label .square {
  float: left;
}

.accordion h4[aria-expanded="true"] .fa-angle-down {
  transform: rotate(180deg);
  transition: 0.5s;
}

.accordion h4[aria-expanded="false"] .fa-angle-down {
  transform: rotate(0deg);
  transition: 0.5s;
}

p.one {
  display: inline-block;
}

p.two {
  float: right;
  display: inline-block;
}

/*ajax filter css*/

.nop-ajax-filters {
  width: 100%;
  margin-top: 15px;
}

.ajax-products {
  position: relative;
}

.ajaxfilter-title {
  font-size: 16px;
  font-weight: bold;
}

.ajax-products .spinner {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  background-color: #fff;
  opacity: 0.7;
  padding-top: 10%;
  display: none;
}

.ajax-products .spinner > div {
  width: 40px;
  height: 40px;
}

.spinner {
  margin: 0px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #1d1d1d;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.filter-section {
  max-width: 600px;
  text-align: left;
  margin-bottom: 20px;
  margin: auto;
}

.filter-section .title {
  overflow: hidden;
}

.filter-section .filter-section .title a.ajax-filter-clear-all {
  cursor: pointer;
  padding-right: 5px;
}

.filter-section .title,
.vendors-section .ajaxfilter-title {
  letter-spacing: 0;
  text-align: left;
  position: relative;
  padding: 8px 0;
  font-size: 18px;
  color: #000;
  cursor: pointer;
  display: inline-block;
  width: 100%;
}

.filter-section .title a {
  margin-left: 5px;
  font-size: 100%;
  cursor: pointer;
}

.filter-section .listbox ul {
  margin: 0;
  padding: 0;
  color: #fff;
  background-color: inherit;
}

.ui-slider-horizontal {
  height: 4px;
}

.ajaxfilter-price-range-section {
  font-size: 18px;
}

.ajaxfilter-section {
  padding: 10px 20px 15px;
  margin: 0;
}

.ajaxfilter-section select {
  min-width: 100%;
  margin-top: 0;
}

.ajaxfilter-price-section {
  height: 20px;
}

#slider-range {
  margin: 13px auto 12px;
  max-width: calc(100% - 30px);
}

.ajaxfilter-section ul {
  margin: 0;
  padding: 0;
  color: #fff;
  background-color: inherit;
  line-height: 20px;
}

.ajaxfilter-section li {
  background: none;
  list-style: none;
  color: #000000;
  z-index: 1;
}

input[type="checkbox"]:checked + label::before {
  content: "\f14a";
}

.square {
  position: relative;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 1px solid #d4d6d8;
  background: #fff;
  border-radius: 4px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  text-indent: -9000px;
  overflow: hidden;
}

.square::after {
  content: "\2713\0020";
  position: absolute;
  top: 0.15em;
  left: 0.22em;
  opacity: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 0.8;
  color: #0078d2;
  transition: all 0.2s;
  text-indent: initial;
}

.square.active {
  border-color: #0078d2;
}

.square.active:after {
  opacity: 1;
  transform: scale(1);
}

.circle {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  padding: 2px;
  border: 2px solid #d9d9d9;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
  text-indent: -9000px;
  overflow: hidden;
}

.circle:not(.color)::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  display: inline-block;
  width: 17px;
  height: 17px;
  background-color: #f6f6f6;
  border-radius: 50%;
}

input.active ~ label .circle,
.circle.active {
  border-color: #0078d2;
}

input.active ~ label .circle:not(.color)::after,
.circle:not(.color).active::after {
  background-color: #0078d2;
}

.ajaxfilter-section label,
.vendors-section label {
  letter-spacing: 1px;
  text-align: left;
  color: #444;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ajaxfilter-section li:not(:last-child),
.vendors-section li:not(:last-child) {
  margin-bottom: 15px;
}

.ajaxfilter-section .list-categories li:not(:last-child),
.ajaxfilter-section .list-manufacturer li:not(:last-child),
.ajaxfilter-section .list-tags li:not(:last-child) {
  margin-bottom: 0;
}

.ajaxfilter-section label span {
  padding-left: 5px;
  color: #878787;
  font-size: 12px;
}

.ajaxfilter-section label i {
  font-style: normal;
  letter-spacing: 0;
}

.ajaxfilter-section label input {
  visibility: hidden;
}

.white-popup {
  position: relative;
  background: #fff;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
}

.products-count {
  text-align: center;
  font-size: medium;
  padding: 5px;
  background: aliceblue;
  font-weight: bold;
}

.searchProcess {
  position: absolute;
  background: url('/Themes/NopKalles/Content/css/images/ajaxLoader.gif') no-repeat fixed 50% 50% #ffffff;
  width: auto;
  height: auto;
  filter: alpha(opacity=70);
  opacity: 0.7;
  z-index: 1;
  clear: both;
  position: fixed;
  top: 0;
}

#price-current-min {
  width: 60px;
  border: 1px solid #cccccc;
  text-align: center;
  float: left;
  font-size: 14px;
  height: 24px;
}

#price-current-max {
  width: 60px;
  border: 1px solid #cccccc;
  text-align: center;
  float: right;
  font-size: 14px;
  height: 24px;
}

#ajaxfilter-form .ajax-filter-section .filter-section .ajaxfilter-section input[type="checkbox"],
#ajaxfilter-form input[type="radio"],
#ajaxfilter-form input[type="checkbox"] + *,
#ajaxfilter-form input[type="radio"] + * {
  vertical-align: top;
}

#ajaxfilter-form .ajax-filter-section .filter-section,
.accordion .filter-section {
  border-bottom: 1px solid #e5e5e5;
  border-radius: 5px;
  margin-bottom: 10px;
  padding-bottom: 7px;
}

.arrowHold {
  position: absolute;
  height: 20px;
  width: 20px;
  right: 8px;
  background: transparent url('/Themes/NopKalles/Content/Content/images/toggle-gray.png') center no-repeat;
  -webkit-transition: all 500ms linear;
  -moz-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  top: 6px;
}

.arrowHold.rotate {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.regular-checkbox {
  background-color: transparent;
  border: 1px solid transparent;
  box-shadow:
    0 1px 2px transparent,
    inset 0px -15px 10px -12px transparent;
  padding: 9px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  z-index: -1;
}

.regular-checkbox:checked {
  background-color: transparent;
  border: 1px solid transparent;
  color: #99a1a7;
}

.clearHolder {
  width: 100%;
  text-align: center;
  position: relative;
  bottom: 17px;
  font-size: 12px;
  display: none;
}

.ajaxfilter-price-section input {
  padding: 0;
}

.clearAllfilters {
  margin: 10px auto;
}

.selectedOptions div {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: left;
}

.selectedOptions .btn {
  text-align: left;
  background-color: #fff;
  line-height: 1.25;
  vertical-align: middle;
  border: 1px solid #ccc;
  border-radius: 0;
  margin-top: 2px;
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  cursor: pointer;
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #cccccc;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-bottom-color: #b3b3b3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: left;
  background-color: #fff;
  line-height: 1.25;
  vertical-align: middle;
  border: 1px solid #ccc;
  border-radius: 0;
  margin-top: 2px;
}

.selectedOptions .btn:hover {
  background-image: linear-gradient(to bottom, #e6e6e6, #fff);
}

.selectedOptions .btn:first-of-type {
  width: 75%;
  padding: 6px;
}

.selectedOptions .btn:nth-child(2) {
  text-align: center;
  width: 25%;
  margin-left: -1px;
}

.closeAllFilters {
  background-color: #4ab2f1;
  width: 60%;
  text-align: center;
  font-size: 15px;
  color: #fff;
  border: none;
  padding: 10px;
  width: 100%;
  margin-top: 1px;
}

input[type="checkbox"]:disabled ~ label {
  text-decoration: line-through;
}

.remover {
  cursor: pointer;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #fff;
  font-weight: normal;
  color: #454545;
  height: 20px;
  width: 20px;
  border-radius: 50% !important;
  top: 50% !important;
  transform: translateY(-50%);
  cursor: e-resize;
}

#price-filter-section .filter-section .ui-slider-handle {
  border: 1px solid #0078d2;
  color: #0078d2;
  background: #0078d2;
  border-radius: 50%;
}

#price-range-slider {
  margin: 13px auto 12px;
  max-width: calc(100% - 30px);
  height: 4px;
}

.ui-slider .ui-slider-range {
  background: #ddd;
}

.price-range-max,
.price-range-min {
  padding: 0 5px;
}

li.color {
  display: inline-block;
}

span.color-box {
  display: block;
  height: 27px;
  width: 27px;
  font-size: 0;
  position: relative;
}

.filter-section .title,
.vendors-section .ajaxfilter-title {
  padding: 0;
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
}

.filter-section .title .ajaxfilter-title,
.filter-section .title h5 {
  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;
  width: 100%;
  min-height: 44px;
  padding: 5px 20px 5px;
  font-size: 14px;
  font-weight: 500;
}

/* .filter-section .title .ajaxfilter-title:not(.collapsed)::after,
.filter-section .title h5:not(.collapsed)::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 60px;
    height: 2.5px;
    background: #242423;
} */

.filter-section .title h5[data-toggle="collapse"] .fa:before,
.filter-section .title .ajaxfilter-title[data-toggle="collapse"] .fa:before {
  content: "\f068";
}

.filter-section .title h5[data-toggle="collapse"].collapsed .fa:before,
.filter-section .title .ajaxfilter-title[data-toggle="collapse"].collapsed .fa:before {
  content: "\f067";
}

li.color input[type="checkbox"]:checked ~ label .color-box::before {
  content: "";
  display: block;
  border: 2px solid #f8f7f7;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 48%;
  left: 49%;
  transform: translate(-50%, -50%);
}

#ajaxfilter-form .filter-title {
  background: #000;
  color: #fff;
  cursor: pointer;
}

#ajaxfilter-form .filter-title h4 {
  display: none;
  font-size: 18px;
  margin: 0;
  line-height: 18px;
  font-weight: 700;
  padding: 13px 15px;
}

.ajaxfilter-section label .square {
  float: left;
}

.accordion h4[aria-expanded="true"] .fa-angle-down {
  transform: rotate(180deg);
  transition: 0.5s;
}

.accordion h4[aria-expanded="false"] .fa-angle-down {
  transform: rotate(0deg);
  transition: 0.5s;
}

.ajaxfilter-section .color input[type="checkbox"] ~ label::before,
.ajaxfilter-section .color input[type="checkbox"] ~ label::before {
  display: none;
}

.email-a-friend-page .page-title {
  margin: 0 0 0px;
}

.email-a-friend-page .form-fields {
  position: relative;
  background-color: #efeff1;
  padding: 30px;
  border-radius: 5px;
  display: inline-block;
}

.email-a-friend-page .buttons {
  margin-bottom: 10px;
}

.email-a-friend-page .form-fields {
  position: relative;
  background-color: white;
  padding: 30px;
  border-radius: 5px;
  display: inline-block;
}

.email-a-friend-page input#FriendEmail {
  width: 100%;
}

.email-a-friend-page input#YourEmailAddress {
  width: 100%;
}

.email-a-friend-page input#PersonalMessage {
  width: 100%;
}

.order-review-data .title {
  text-align: left;
}

.sp-cart--product-info,
.sp-cart--list-item span {
  padding: 0.5rem;
}

.please-wait {
  position: absolute;
  right: 0;
  bottom: -2%;
}

.step--content {
  position: relative;
}

.email-a-friend-page .page-body {
  max-width: 1000px;
  margin: 10px auto;
}

.return-request-page {
  margin-bottom: 20px;
}

.return-request-page .form-fields {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.return-request-page .fieldset {
  background-color: #efeff1;
}

.return-request-page .inputs label {
  display: block;
  text-align: center;
}

.return-request-page .inputs select,
.return-request-page .inputs textarea {
  text-align: center;
  width: 100%;
}

.page.store-closed-page {
  text-align: center;
}

.search-page .search-input input[type="checkbox"]:checked + label::before {
  display: none;
}

.shipping-method .method-list li,
.payment-method .method-list li {
  margin: 20px 15px;
  font-size: 14px;
  background: #fff;
  border: 1px solid #e6e9eb;
  box-shadow: 1px 2px 10px 2px #eaf1f7;
  border-radius: 3px;
  padding: 20px;
  text-align: left;
}

@media (max-width: 991px) {
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel .owl-nav button.owl-prev {
    top: calc(50% - 110px);
  }
}

@media (min-width: 769px) {
  .shipping-method .method-list li,
  .payment-method .method-list li {
    display: inline-block;
    width: 30%;
    vertical-align: top;
    min-height: 140px;
  }
}

@media (min-width: 992px) {
  .return-request-page,
  .page.checkout-page {
    max-width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
  }

  .search-page .inputs.reversed {
    text-align: left;
  }

  .search-input .form-fields {
    padding-left: 50px;
  }

  .header-menu .sb--overlay-menu.opened {
    opacity: 0 !important;
  }

  .header-menu .sb-menu.opened {
    display: none !important;
  }
}

@media (min-width: 1469px) {
  .return-request-page,
  .page.checkout-page {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section.shipping-method .section.pickup-in-store {
  text-align: center;
}

.p-qty--counter {
  margin-bottom: 0px;
}

.attributes .attribute-squares.color-squares .tooltip-container {
  display: none;
}

.owl-carousel.ocarousel .owl-nav button.owl-next,
.owl-carousel.ocarousel .owl-nav button.owl-prev {
  top: calc(50% - 75px);
}

/* category page*/

.sub-category-item .picture a {
  display: block;
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.sub-category-item .picture a::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.sub-category-item .picture a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/*picture zoom*/

.col-12.picture-thumbs {
  position: relative;
  z-index: 1000;
}

/*ocarousel for category*/

.OCarousel-category-slider .category-list-img {
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.OCarousel-category-slider .category-list-img .category-add-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  text-align: center;
  padding: 10px;
  z-index: 30;
}

.OCarousel-category-slider .category-list-img img {
  position: absolute;
  top: calc(50% - 15px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}

.OCarousel-category-slider .category-list-img::before {
  content: "";
  display: block;
  padding-top: 110%;
  background: #ddd;
}

label {
  margin-bottom: 0 !important;
}

.vote-options {
  display: block;
  margin: 8px 0;
}

.product-review-helpfulness .result {
  margin: 0;
}

/*** loader css ***/

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid #890076;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #890076;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

.pickup-in-store {
  text-align: center;
}

.pickup-in-store input[type="checkbox"]:checked + label::before {
  content: none;
}

.ship-to-same-address {
  text-align: left;
}

.address-grid {
  display: flex;
  flex-wrap: wrap;
}

.shipping-address-page .pickup-in-store .custom-checkbox [type="checkbox"]:checked ~ label:after,
.shipping-method-page .pickup-in-store .custom-checkbox [type="checkbox"]:checked ~ label:after {
  border: 1px solid #0078d2;
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.cross-sells .item-grid {
  display: flex;
  flex-wrap: wrap;
}

.mini-cart--p-overview a,
.ocarousel .item-box .p-card--title a,
.p-cards .p-card--title a {
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.private-messages-page .ui-widget-header {
  background: transparent;
}

.private-messages-page .ui-tabs-nav li.ui-state-active a {
  background-color: #343a40;
  color: #ffffff;
}

.private-messages-page .tab-content {
  min-height: 15vh;
}

.private-messages-box .no-items {
  text-align: center;
}

.footer-margin-text {
  margin: 6px 0px;
}

.product-details-page .product-essential .gallery {
  width: 100%;
}

.newsletter .options {
  margin-top: 5px;
}

.newsletter .options .subscribe {
  margin-right: 10px;
}

span.password-eye {
  content: "";
  display: block;
  height: 24px;
  width: 24px;
  background-image: url('/Themes/NopKalles/Content/images/eye-closed.png');
  position: absolute;
  top: calc(70% - 18px);
  right: 64px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  cursor: pointer;
  opacity: 0.75;
}

.password-eye.password-eye-open {
  background-image: url('/Themes/NopKalles/Content/images/eye.png');
}

.change-password-recovery-link {
  color: blue;
  font-size: 14px;
  text-align: right;
  padding: 10px;
}

.change-password-recovery-link a {
  color: blue;
  text-decoration: none;
}

.change-password-recovery-link a:hover {
  text-decoration: underline;
}
