:root {
  --btn-default-color: rgb(24, 130, 201);
  --btn-hover-color: rgb(26, 145, 224);
  --btn-active-color: rgb(19, 99, 153);
}

body {
  /* font-family: 'Open Sans', Arial, sans-serif; */
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  /* font-size: 12px; */
  line-height: 20px;
  width: 100%;
}

.panel-heading {
  padding: 0;
  border: 0;
}
.panel-title,
.panel-title:active {
  display: block;
  color: var(--btn-default-color) !important;
  font-size: 1em;
  text-decoration: none;
  cursor: pointer !important;
}

.caret {
  transition: transform 0.2s;
}

.rotate-180 {
  transform: rotate(-180deg);
}

.bdr-0 {
  border: 0;
}

ol.counters {
  counter-reset: item;
}
ol.counters li {
  display: block;
}

ol.counters li:before {
  content: counters(item, ".") " ";
  counter-increment: item;
}

ul.simple {
  list-style-type: "⎯ ";
}

ul.simple li:before {
  content: "";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #444;
}

h2.lzcap {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: center;
  position: relative;
  padding: 0 0 20px;
  margin: 0 0 40px;
}

h2.lzcap:after {
  position: absolute;
  content: "";
  width: 70px;
  height: 2px;
  background: #067fca;
  left: 50%;
  bottom: 0;
  margin: 0 0 0 -35px;
}

#snackbar {
  visibility: hidden;
  /* min-width: 250px; */
  /* margin-left: -125px; */
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  /* left: 50%;  */
  /* left: calc(50% - 20px); */
  bottom: 30px;
  z-index: 11000;

  left: 50%;
  margin-right: auto;
  max-width: 568px;
  min-width: 288px;
  transform: translate(-50%, 0);
  width: auto;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

.input-quantity {
  text-align: center;
  border-left: 0;
  border-right: 0;
}
.suggestions-nowrap {
  white-space: nowrap;
}
.suggestions-input {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.suggestions-input::-ms-clear {
  display: none;
}
.p-0 {
  padding: 0;
}
.pl-1e {
  padding-left: 1em;
}
.pl-2e {
  padding-left: 2em;
}

.suggestions-wrapper {
  position: relative;
  margin: 0;
  padding: 0;
  vertical-align: top;
  -webkit-text-size-adjust: 100%;
}
.suggestions-suggestions {
  background: #fff;
  border: 1px solid #ccc;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: default;
  left: 0;
  min-width: 100%;
  position: absolute;
  z-index: 9999;
  -webkit-text-size-adjust: 100%;
  box-shadow: rgba(36, 36, 36, 0.3) 0px 4px 6px 0px !important;
}
.suggestions-suggestions strong {
  font-weight: 400;
  color: #39f;
}
.suggestions-suggestions.suggestions-mobile {
  border-style: none;
}
.suggestions-suggestions.suggestions-mobile .suggestions-suggestion {
  border-bottom: 1px solid #ddd;
}
.suggestions-suggestion {
  padding: 4px 4px;
  overflow: hidden;
}
.suggestions-suggestion:hover {
  background: #f7f7f7;
}
.suggestions-selected {
  background: #f0f0f0;
}
.suggestions-selected:hover {
  background: #f0f0f0;
}
.suggestions-hint {
  padding: 4px 4px;
  white-space: nowrap;
  overflow: hidden;
  color: #777;
  font-size: 85%;
  line-height: 20px;
}
.suggestions-subtext {
  color: #777;
}
.suggestions-subtext_inline {
  display: inline-block;
  min-width: 6em;
  vertical-align: bottom;
  margin: 0 0.5em 0 0;
}
.suggestions-subtext-delimiter {
  display: inline-block;
  width: 2px;
}
.suggestions-subtext_label {
  margin: 0 0 0 0.25em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 0 3px;
  background: #f5f5f5;
  font-size: 85%;
}
.suggestions-value[data-suggestion-status="LIQUIDATED"] {
  position: relative;
}
.suggestions-value[data-suggestion-status="LIQUIDATED"]:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  content: "";
}

.suggestions-promo {
  display: none !important;
}

.lz-pull-right {
  float: right !important;
}
@media (max-width: 767px) {
  .btn-xs-block {
    display: block;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .btn-sm-block {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .lz-pull-right {
    float: none !important;
  }
}

.live-search {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  box-shadow: rgba(36, 36, 36, 0.3) 0px 4px 6px 0px !important;
}

.flcp:first-letter {
  text-transform: capitalize;
}

.history-search {
  position: absolute;
  display: none;
  margin-top: 40px;
  width: 100%;
  clear: both;
  background-color: white;
  z-index: 100;
  box-shadow: rgba(36, 36, 36, 0.3) 0px 4px 6px 0px;
}

.history-search ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  margin-bottom: 1em;
}

.history-search li {
  list-style: none;
  margin: 0;
  padding: 12px;
  line-height: 1em;
  background-color: white;
}

/* default font size */
.fa {
  font-size: 14px;
}

body.modal-open .modal {
  display: flex !important;
  align-items: center;
  height: 100%;
}

body.modal-open .modal .modal-dialog {
  margin: auto;
}

.select {
  border: 0 !important;
  border-bottom: 1px var(--btn-default-color) solid !important;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0 !important;
  -webkit-appearance: none;
}

.modal-content {
  margin: 12px;
}

.btn[disabled] {
  background-color: var(--btn-hover-color);
  color: white;
  border-color: var(--btn-default-color);
}

@font-face {
  font-family: "EuropeExt";
  src: url("/market/fonts/EuropeExt_Normal.ttf") format("truetype");
}
.lzfullscreen {
  min-height: 100vh !important;
  display: flex;
  flex-flow: column;
}

.lzpadding {
  padding-left: 0.45rem !important;
}

.lzrpadding {
  padding-right: 0.45rem !important;
}

.lzfiller {
  flex: 1;
  overflow: auto;
}

.lzinfo {
  display: flex;
  flex-wrap: wrap;
}
.lzitema {
  display: flex;
  order: 1;
}
.lzitemb {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  order: 2;
}

.lzitemb > div {
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.lzitemb > div > h1:first-child {
  font-family: EuropeExt;
  font-size: 18px;
  margin-top: 24px;
  padding: 0;
}

.price {
  font-weight: bold;
  padding-bottom: 0;
  margin-bottom: 0;
}

.btn-basket {
  padding: 1.25rem 4rem;
  font-size: 14px;
  width: 100%;
  text-transform: uppercase;
}

.ml-3 {
  margin-left: 1rem;
}
.product-icon {
  padding: 0 !important;
  border-radius: 50% !important;
  border: 0 !important;
  z-index: 100 !important;
  opacity: 0;
  transition: opacity 0.5s;
}
.mr-3 {
  margin-right: 1rem;
}
.ml-a {
  margin-left: auto;
  z-index: 100;
}

.zoom {
  transition: transform 0.26s ease;
  width: 128px !important;
  height: auto;
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.024);
}

.tb {
  margin: 0;
  padding: 1.2rem;
}

.lzitemb > div > p:last-child {
  padding: 0;
  margin: 0 !important;
}

.lzitemc {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 3;
}

.lzitemc > div > p {
  margin: 6px !important;
}

.lzitemc > div > p:first-child {
  margin-top: 24px !important;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.pb-2 {
  padding-bottom: 1rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.lzmgnt {
  margin-top: 5rem;
}

.lzmgnt > div > div > p:last-child {
  margin-top: 3rem;
}

.lztac {
  text-align: center;
}
.lzvideo {
  width: 640px;
  height: 360px;
}
.lzcontacts {
  margin-top: 12px;
}

@media (max-width: 1200px) {
  .lzvideo {
    width: 520px;
    height: 293px;
  }
}
@media (max-width: 767px) {
  .lzitema {
    flex: 1;
  }
  .lzitemb {
    order: 3;
    flex-basis: 100%;
    align-items: center;
    justify-content: center;
  }
  .lzitemc {
    flex: 1;
    order: 2;
    justify-content: flex-end;
  }

  .lzvideo {
    width: 320px !important;
    height: 180px !important;
  }

  .lziframevideo {
    text-align: center;
    height: 0px;
    padding-bottom: 56.2%;
    position: relative;
  }

  .lziframevideo iframe {
    width: 100%;
    height: 100%;
  }
}

/* Override the bootstrap defaults */
h1 {
  font-size: 33px;
}
h2 {
  font-size: 27px;
}
h3 {
  font-size: 21px;
}
h4 {
  font-size: 15px;
}
h5 {
  font-size: 12px;
}
h6 {
  font-size: 10.2px;
}
a {
  color: var(--btn-default-color);
}
a:hover {
  text-decoration: none;
  color: var(--btn-hover-color);
}
legend {
  font-size: 18px;
  padding: 7px 0px;
}
label {
  font-size: 12px;
  font-weight: normal;
}
select.form-control,
textarea.form-control,
input[type="text"].form-control,
input[type="password"].form-control,
input[type="datetime"].form-control,
input[type="datetime-local"].form-control,
input[type="date"].form-control,
input[type="month"].form-control,
input[type="time"].form-control,
input[type="week"].form-control,
input[type="number"].form-control,
input[type="email"].form-control,
input[type="url"].form-control,
input[type="search"].form-control,
input[type="tel"].form-control,
input[type="color"].form-control {
  font-size: 12px;
}
.input-group input,
.input-group select,
.input-group .dropdown-menu,
.input-group .popover {
  font-size: 12px;
}
.input-group .input-group-addon {
  font-size: 12px;
  height: 30px;
}

.input-group-addon {
  background-color: transparent;
  border: none;
}

/* Fix some bootstrap issues */
span.hidden-xs,
span.hidden-sm,
span.hidden-md,
span.hidden-lg {
  display: inline;
}
.close {
  right: 0 !important;
  top: 0 !important;
}

.form-control {
  border-radius: 0px !important;
}

.nav-tabs {
  margin-bottom: 15px;
}
div.required .control-label:before {
  content: "* ";
  color: #f00;
  font-weight: bold;
}
/* Gradent to all drop down menus */
.dropdown-menu li > a:hover {
  text-decoration: none;
  color: #ffffff;
  background-color: var(--btn-default-color);
  /* background-image: linear-gradient(to bottom, #23a1d1, #1f90bb); */
  background-repeat: repeat-x;
}
/* top */
#top {
  background-color: rgb(238, 238, 238);
  /* border-bottom: 1px solid #e2e2e2; */
  /* padding: 4px 0px 3px 0; */
  margin: 0 0 20px 0;
  min-height: 40px;
  padding: 16px 0;
  border: 0;
}
#top ul {
  padding: 0;
  margin: 0;
}

#top .container {
  padding: 0 20px;
}
#top #form-currency .currency-select,
#top #form-language .language-select {
  text-align: left;
}
#top #form-currency .currency-select:hover,
#top #form-language .language-select:hover {
  text-shadow: none;
  color: #ffffff;
  background-color: var(--btn-default-color);
  /* background-image: linear-gradient(to bottom, #23a1d1, #1f90bb); */
  background-repeat: repeat-x;
}
#top .btn-link,
#top-links li,
#top-links a {
  /* color: #888; */
  /* text-shadow: 0 1px 0 #fff; */
  text-decoration: none;
}

.lzvertalign {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .lzvertalign {
    display: block;
  }
}

#content .btn-group > * {
  margin-right: 4px;
}

#top-links > ul > li {
  padding: 0 0 0 2rem;
  margin: 0;
}

#top .btn-link:hover,
#top-links a:hover {
  color: var(--btn-hover-color);
}
#top-links .dropdown-menu a {
  text-shadow: none;
}
#top-links .dropdown-menu a:hover {
  color: #fff;
}
#top .btn-link strong {
  font-size: 14px;
  line-height: 14px;
}
#top-links {
  padding: 0px !important;
}
#top-links a + a {
  margin-left: 15px;
}
/* logo */
#logo {
  /* margin: 0 0 10px 0; */
  padding: 0;
}

/* search */
#search {
  margin-bottom: 10px;
}
#search .input-lg {
  height: 40px;
  line-height: 20px;
  padding: 0 10px;
  border-radius: 0;
}
#search .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 10px 35px;
  /* text-shadow: 0 1px 0 #fff; */
}
/* cart */
#cart {
  margin-bottom: 10px;
}
#cart > .btn {
  font-size: 12px;
  line-height: 18px;
  color: #fff;
}
#cart > .btn:hover {
  background-color: var(--btn-hover-color);
  background-image: none;
  border-color: var(--btn-hover-color);
}

#cart.open > .btn {
  background-image: none;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  color: #666;
  box-shadow: none;
  text-shadow: none;
}
#cart.open > .btn:hover {
  color: #444;
}
#cart .dropdown-menu {
  background: #eee;
  z-index: 1001;
}
#cart .dropdown-menu {
  min-width: 100%;
}
@media (max-width: 478px) {
  #cart .dropdown-menu {
    width: 100%;
  }
}
#cart .dropdown-menu table {
  margin-bottom: 10px;
}
#cart .dropdown-menu li > div {
  min-width: 427px;
  padding: 0 10px;
}
@media (max-width: 478px) {
  #cart .dropdown-menu li > div {
    min-width: 100%;
  }
}
#cart .dropdown-menu li p {
  margin: 20px 0;
}
.bx-0 {
  border-left: 0;
  border-right: 0;
}
/* menu */
#menu {
  background-color: var(--btn-default-color);
  /* background-image: linear-gradient(to bottom, #23a1d1, #1f90bb); */
  background-repeat: repeat-x;
  /* border-color: #1f90bb #1f90bb #145e7a; */
  min-height: 40px;
}
#menu .nav > li > a {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  padding: 10px 15px 10px 15px;
  min-height: 15px;
  background-color: transparent;
}
#menu .nav > li > a:hover,
#menu .nav > li.open > a {
  background-color: rgba(0, 0, 0, 0.1);
}
#menu .dropdown-menu {
  padding-bottom: 0;
}
#menu .dropdown-inner {
  display: table;
}
#menu .dropdown-inner ul {
  display: table-cell;
}
#menu .dropdown-inner a {
  min-width: 160px;
  display: block;
  padding: 3px 20px;
  clear: both;
  line-height: 20px;
  color: #333333;
  font-size: 12px;
}
#menu .dropdown-inner li a:hover {
  color: #ffffff;
}
#menu .see-all {
  display: block;
  margin-top: 0.5em;
  border-top: 1px solid #ddd;
  padding: 3px 20px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 3px 3px;
  font-size: 12px;
}
#menu .see-all:hover,
#menu .see-all:focus {
  text-decoration: none;
  color: #ffffff;
  background-color: var(--btn-default-color);
  /* background-image: linear-gradient(to bottom, #23a1d1, #1f90bb); */
  background-repeat: repeat-x;
}
#menu #category {
  float: left;
  padding-left: 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
#menu .btn-navbar {
  font-size: 15px;
  font-stretch: expanded;
  color: #fff;
  padding: 2px 18px;
  float: right;
  background-color: var(--btn-default-color);
  /* background-image: linear-gradient(to bottom, #23a1d1, #1f90bb); */
  background-repeat: repeat-x;
  /* border-color: #1f90bb #1f90bb #145e7a; */
}
#menu .btn-navbar:hover,
#menu .btn-navbar:focus,
#menu .btn-navbar:active,
#menu .btn-navbar.disabled,
#menu .btn-navbar[disabled] {
  color: #ffffff;
  background-color: var(--btn-default-color);
}
@media (min-width: 768px) {
  #menu .dropdown:hover .dropdown-menu {
    display: block;
  }
}
@media (max-width: 767px) {
  #menu {
    border-radius: 4px;
  }
  #menu div.dropdown-inner > ul.list-unstyled {
    display: block;
  }
  #menu div.dropdown-menu {
    margin-left: 0 !important;
    padding-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.1);
  }
  #menu .dropdown-inner {
    display: block;
  }
  #menu .dropdown-inner a {
    width: 100%;
    color: #fff;
  }
  #menu .dropdown-menu a:hover,
  #menu .dropdown-menu ul li a:hover {
    background: rgba(0, 0, 0, 0.1);
  }
  #menu .see-all {
    margin-top: 0;
    border: none;
    border-radius: 0;
    color: #fff;
  }
}
/* content */
#content {
  min-height: 600px;
}
/* footer */
footer {
  margin-top: 30px;
  /* padding-top: 30px; */
  background-color: rgb(238, 238, 238);
  color: rgb(68, 68, 68);
  /* height: auto !important; */
  padding: 16px;
  /* border-top: 1px solid #ddd; */
  /* color: #e2e2e2; */
}

footer hr {
  border-top: none;
  border-bottom: 1px solid #666;
}

footer a {
  color: var(--btn-default-color);
  /* text-shadow: 0 1px 0 rgb(255, 255, 255); */
  text-decoration: none;
}

footer a:hover {
  color: var(--btn-hover-color);
}

footer > div {
  display: flex;
}
footer > div > p {
  padding: 0;
  margin: 0;
}
footer > div > ul {
  display: flex;
  margin-left: auto !important;
  list-style: none;
  padding: 0;
  margin: 0;
}

footer > div > ul > li {
  margin: 0;
  padding: 0 0 0 2rem;
}

footer > div > ul > li {
  margin: 0;
  padding: 0 0 0 2rem;
}

footer h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
}

#lz-table th {
  padding: 12px 0px;
}

@media only screen and (max-width: 991px) {
  .lz-block {
    margin: 0 !important;
    display: block;
    width: 100%;
    margin-top: 5px !important;
  }

  .py-md-3 {
    padding: 1rem 0;
  }

  .breadcrumb {
    display: none;
  }

  .lz-container {
    width: 100%;
  }

  .lz-scroll {
    overflow-x: auto !important;
  }

  #lz-table table {
    border: none;
  }
  #lz-table table,
  #lz-table thead,
  #lz-table tbody,
  #lz-table th,
  #lz-table td,
  #lz-table tr {
    display: block;
  }

  #lz-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  #lz-table tr {
    border: 1px solid #ccc;
  }

  #lz-table td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50% !important;
    white-space: normal;
    text-align: left;
  }

  #lz-table td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45% !important;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }

  #lz-table td:before {
    content: attr(data-title);
  }
}

.table-condensed {
  margin: 0;
  padding: 0;
  margin-bottom: 12px;
}
/* alert */
.alert {
  padding: 8px 14px 8px 14px;
}

.icon-fix {
  padding: 5px 0 0 1px;
}

.lz-break {
  height: 24px !important;
  width: 100% !important;
}

.lz-menu-button {
  width: 40px !important;
  height: 40px !important;
}
/* breadcrumb */
.breadcrumb {
  margin: 0 0 20px 0;
  padding: 8px 0;
  border: 1px solid #ddd;
}
.breadcrumb i {
  font-size: 15px;
}
.breadcrumb > li {
  text-shadow: 0 1px 0 #fff;
  padding: 0 20px;
  position: relative;
  white-space: nowrap;
}
.breadcrumb > li + li:before {
  content: "";
  padding: 0;
}
.breadcrumb > li:after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  right: -5px;
  width: 26px;
  height: 26px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.pagination {
  margin: 0;
}
/* buttons */
.buttons {
  margin: 1em 0;
}
.btn {
  padding: 7.5px 12px;
  font-size: 12px;
  border-radius: 0;
  /* border: 1px solid #cccccc; */
  /* border-radius: 2px; */
  /* box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05); */
}
.btn-xs {
  font-size: 9px;
}
.btn-sm {
  font-size: 10.2px;
}
.btn-lg {
  padding: 10px 16px;
  font-size: 15px;
}
.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover {
  font-size: 12px;
}
.btn-group > .btn-xs {
  font-size: 9px;
}
.btn-group > .btn-sm {
  font-size: 10.2px;
}
.btn-group > .btn-lg {
  font-size: 15px;
}
.btn-default {
  /* color: #777; */
  color: white;
  /* text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); */
  /* background-color: #e7e7e7; */
  background-color: var(--btn-default-color);
  /* background-image: linear-gradient(to bottom, rgb(50, 159, 231), var(--btn-default-color)); */
  background-repeat: repeat-x;
  border-color: var(--btn-default-color);
  /* border-color: #dddddd #dddddd #b3b3b3 #b7b7b7; */
}

.btn-default.focus,
.btn-default:focus {
  color: white;
  background-color: var(--btn-hover-color);
  border-color: var(--btn-hover-color);
}

.btn-default:hover {
  /* opacity: 85%; */
  color: white;
  background-color: var(--btn-hover-color);
  border-color: var(--btn-hover-color);
}

.btn-default.active,
.btn-default:active,
.open > .dropdown-toggle.btn-default {
  color: white;
  background-color: var(--btn-hover-color);
  border-color: var(--btn-hover-color);
}

.btn-primary {
  color: #ffffff;
  /* text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); */
  background-color: var(--btn-default-color);
  /* background-image: linear-gradient(to bottom, #23a1d1, #1f90bb); */
  /* background-repeat: repeat-x; */
  border-color: var(--btn-default-color);
  /* border-color: #1f90bb #1f90bb #145e7a; */
}
.btn-primary:hover,
.btn-primary.disabled,
.btn-primary[disabled] {
  background-color: var(--btn-hover-color) !important;
  background-position: 0 -15px;
  border-color: var(--btn-default-color) !important;
}

.close.external {
  color: #000000 !important;
  opacity: 1 !important;
}

.close.external:hover {
  color: #ff0000 !important;
  opacity: 0.6 !important;
}

.btn-primary:active,
.btn-primary.active {
  background-color: #da4f49 !important;
}

.btn-warning {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #faa732;
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  border-color: #f89406 #f89406 #ad6704;
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-danger {
  color: #ffffff;
  /* text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); */
  background-color: #da4f49;
  /* background-image: linear-gradient(to bottom, #ee5f5b, #bd362f); */
  /* background-repeat: repeat-x; */
  border-color: #da4f49;
}
.btn-danger:hover,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-success {
  color: #ffffff;
  /* text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); */
  background-color: #5bb75b;
  /* background-image: linear-gradient(to bottom, #62c462, #51a351); */
  /* background-repeat: repeat-x; */
  border-color: #5bb75b;
}
.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-info {
  color: #ffffff;
  background-color: #01dfd7;
  /* text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); */
  /* background-image: linear-gradient(to bottom, #e06342, #dc512c); */
  /* border-color: #df5c39; */
  /* background-repeat: repeat-x; */
}
.p-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.p-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  background-image: none;
  background-color: #05b6b0;
}
.btn-link {
  border-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  color: #23a1d1;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled] {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  box-shadow: none;
}
.btn-inverse {
  color: #ffffff;
  /* text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); */
  background-color: rgb(23, 129, 203);
  /* background-image: linear-gradient(to bottom, #444444, #222222); */
  /* background-repeat: repeat-x; */
  /* border-color: #222222 #222222 #000000; */
}
.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  background-color: #222222;
  background-image: linear-gradient(to bottom, #333333, #111111);
}
/* list group */
.list-group a {
  border: 1px solid #dddddd;
  color: #888888;
  padding: 8px 12px;
}
.list-group a.active,
.list-group a.active:hover,
.list-group a:hover {
  color: #444444;
  background: #eeeeee;
  border: 1px solid #dddddd;
  text-shadow: 0 1px 0 #fff;
}
/* carousel */
.carousel-caption {
  color: #ffffff;
  text-shadow: 0 1px 0 #000000;
}
.carousel-control .icon-prev:before {
  content: "\f053";
  font-family: FontAwesome;
}
.carousel-control .icon-next:before {
  content: "\f054";
  font-family: FontAwesome;
}
.product-thumb .quiqview-btns {
    text-align: center;
    position: absolute;
    top: 20px;
    right: 20px;
}
.product-thumb .quiqview-btns .icon-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
    background: #ffffff;
    font-weight: bold;
    color: #808080;
    padding: 0;
    border: 1px solid#dddddd;
    line-height: 50px;
    position: relative;
    text-align: center;
    display: block;
    border-radius: 50%;
    margin-bottom: 10px;
}
/* product list */
.product-thumb {
  margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    transition: 0.3s all;
    border: 1px solid#ededed;
    overflow: hidden;
}
.product-thumb:hover {
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.product-thumb:hover .product-icon {
  opacity: 1;
}

.product-thumb .image {
  text-align: center;
  margin-top: -34px;
}
.product-thumb .image a {
  display: block;
}
.product-thumb .image a:hover {
  opacity: 0.8;
}
.product-thumb .image img {
  width:100%;
  margin-left: auto;
  margin-right: auto;
}
.product-grid .product-thumb .image {
  float: none;
}
@media (min-width: 767px) {
  .product-list .product-thumb .image {
    float: left;
    padding: 0 15px;
  }
}
.product-thumb h4 {
  font-weight: bold;
}
.product-thumb .caption {
  padding: 0 20px;
  /*min-height: 180px;*/
}
.product-list .product-thumb .caption {
  margin-left: 230px;
}

.wpa-240 {
  width: 240px;
}

select option:disabled {
  color: #bebebe;
}

.fogossmail:after {
  content: attr(data-name) "@" attr(data-domain) "." attr(data-tld);
}

.fogossmail-hd:after {
  content: attr(data-name) "@" attr(data-domain) "." attr(data-tld);
}

@media (max-width: 767px) {
  .fogossmail-hd:after {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .fogossmail-hd:after {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  .product-grid .product-thumb .caption {
    min-height: 210px;
    padding: 0 10px;
  }
  .wpa-240 {
    width: auto;
  }
}

@media (max-width: 767px) {
  .product-list .product-thumb .caption {
    min-height: 180px;
    margin-left: 0;
    padding: 0 10px;
  }
  .product-grid .product-thumb .caption {
    min-height: 180px;
  }
}

.product-thumb .rating {
  padding-bottom: 10px;
}
.rating .fa-stack {
  font-size: 8px;
}
.rating .fa-star-o {
  color: #999;
  font-size: 15px;
}
.rating .fa-star {
  color: #fc0;
  font-size: 15px;
}
.rating .fa-star + .fa-star-o {
  color: #e69500;
}
h2.price {
  margin: 0;
}
.product-thumb .price {
  color: #444;
}
.product-thumb .price-new {
  font-weight: 600;
}
.product-thumb .price-old {
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
}
.product-thumb .price-tax {
  color: #999;
  font-size: 12px;
  display: block;
}
.product-thumb .button-group {
  border-top: 1px solid #ddd;
  background-color: #eee;
  overflow: auto;
}
.product-list .product-thumb .button-group {
  border-left: 1px solid #ddd;
}
@media (max-width: 768px) {
  .product-list .product-thumb .button-group {
    border-left: none;
  }
}
.product-thumb .button-group button {
  width: 60%;
  border: none;
  display: inline-block;

  background-color: #eee;
  color: #888;
  line-height: 38px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
.product-thumb .button-group button + button {
  width: 20%;
  border-left: 1px solid #ddd;
}
.product-thumb .button-group button:hover {
  color: #444;
  background-color: #ddd;
  text-decoration: none;
  cursor: pointer;
}
.btn-float {
  z-index: 100;
  position: fixed;
  right: 5%;
  bottom: 5%;
  box-shadow: 5px 5px 5px 1px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
  .product-thumb .button-group button,
  .product-thumb .button-group button + button {
    width: 33.33%;
  }
  .btn-float {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .right-side {
    width: 90%;
  }
  .product-thumb .button-group button,
  .product-thumb .button-group button + button {
    width: 33.33%;
  }
}
.thumbnails {
  overflow: auto;
  clear: both;
  list-style: none;
  padding: 0;
  margin: 0;
}
.thumbnails > li {
  margin-left: 20px;
}
.thumbnails {
  margin-left: -20px;
}
.thumbnails > img {
  width: 100%;
}
.image-additional a {
  margin-bottom: 20px;
  padding: 5px;
  display: block;
  border: 1px solid #ddd;
}
.image-additional {
  max-width: 78px;
}
.thumbnails .image-additional {
  float: left;
  margin-left: 20px;
}

@media (min-width: 1200px) {
  #content .col-lg-2:nth-child(6n + 1),
  #content .col-lg-3:nth-child(4n + 1),
  #content .col-lg-4:nth-child(3n + 1),
  #content .col-lg-6:nth-child(2n + 1) {
    clear: left;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #content .col-md-2:nth-child(6n + 1),
  #content .col-md-3:nth-child(4n + 1),
  #content .col-md-4:nth-child(3n + 1),
  #content .col-md-6:nth-child(2n + 1) {
    clear: left;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #content .col-sm-2:nth-child(6n + 1),
  #content .col-sm-3:nth-child(4n + 1),
  #content .col-sm-4:nth-child(3n + 1),
  #content .col-sm-6:nth-child(2n + 1) {
    clear: left;
  }
}

/* fixed colum left + content + right*/
@media (min-width: 768px) {
  #column-left .product-layout .col-md-3 {
    width: 100%;
  }

  #column-left + #content .product-layout .col-md-3 {
    width: 50%;
  }

  #column-left + #content + #column-right .product-layout .col-md-3 {
    width: 100%;
  }

  #content + #column-right .product-layout .col-md-3 {
    width: 100%;
  }
}

/* fixed product layouts used in left and right columns */
#column-left .product-layout,
#column-right .product-layout {
  width: 100%;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^="quantity"] {
  min-width: 50px;
}

/* Missing focus and border color to overwrite bootstrap */
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  background-image: none;
  background-color: #df5c39;
}

.quiz.list-unstyled {
  max-width: 200px;
  text-align: center;
}

h2.quiz {
  position: relative;
}

h2.quiz i {
  margin-left: 1rem;
  font-size: 19px;
  position: absolute;
  top: 5px;
}

#top .container {
  display: flex;
}

.about-link {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 375px) and (max-width: 395px) {
  .about-link i {
    display: none;
  }
}
@media (max-width: 375px) {
  .hidden-about {
    display: none;
  }
  .about-link i {
    font-size: 15px;
  }
}

/*.container.category {
  margin-top: 40px;
  max-width: 973px;
}*/

.container.category .row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.container.category .row > div {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.category-thumb {
  border: 1px solid #ddd;
  margin-bottom: 20px;
  overflow: auto;
  transition: box-shadow 0.3s;
  padding-bottom: 15px;
  padding: 12px;
  text-align: center;
  width: 100%;
  justify-content: center;
}

.category-thumb:hover {
  box-shadow: 0 0 11px rgb(33 33 33 / 20%);
}

.category-thumb a {
  font-size: 18px;
  font-weight: 600;
}

.category-thumb img {
  margin-left: auto;
  margin-right: auto;
  max-width: 180px;
  margin-bottom: 12px;
}

.category-thumb p {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-top: 10px;
}

@media (min-width: 769px) {
  #product-category .product-thumb .caption {
    min-height: 80px;
  }
}

#product-category .product-thumb h4 {
  text-align: center;
}

#product-product h1 {
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .category-thumb img {
    max-width: 100%;
    height: auto;
  }
}

#product-category h1 {
  font-size: 21px;
  font-weight: 600;
}

#collapse1 img {
  max-width: 100%;
  height: auto !important;
}

@media (max-width: 768px) {
  .product-layout.col-xs-6:nth-child(odd) {
    padding-right: 7px;
  }

  .mb-3.products .product-layout.col-xs-6:nth-child(odd) {
    padding-left: 0;
  }

  .product-layout.col-xs-6:nth-child(even) {
    padding-left: 7px;
  }

  .mb-3.products .product-layout.col-xs-6:nth-child(even) {
    padding-right: 0;
  }

  #product-category .products {
    display: flex;
    flex-wrap: wrap;
  }

  .categories .product-thumb {
    padding-bottom: 10px;

  }

  #product-manufacturer .products {
    display: flex;
    flex-wrap: wrap;
  }

}

#bye-container .modal {
  z-index: 100001;
}

.ocfilter .panel-heading {
  display: none;
}

h1.lzcap:after {
  position: absolute;
  content: "";
  width: 70px;
  height: 2px;
  background: #067fca;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(6, 127, 202);
  left: 50%;
  bottom: 0;
  margin: 0 0 0 -35px;
}

.ocfilter-mobile.select-filter .btn-primary {
  background-color: #da4f49 !important;
}

.heading_title {
  margin-bottom: 30px;
}

.products .product-thumb {
  display: flex;
  flex-direction: column;
  height: auto !important;
}

.products .product-thumb div:last-child {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.products .product-thumb  .caption {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.products .product-layout.product-grid {
  display: flex;
}

.products {
  display: flex;
  flex-wrap: wrap;
}

@media(max-width:767px){
  .categories h4{
    height: 30px;
    overflow: hidden;
  }
}


.home .container.main-content {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}

.home .heading_title {
  display: flex;
  align-items: center;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  margin-top: 10px;
}

.home .heading_title .lzcap {
  font-size: 21px;
  font-weight: 600;
  margin: 0;
  padding: 10px;
}

.text-block {
  margin-bottom: 20px;
}

.home .contact-content {
  text-align: center;
}

.text-web-store {
  display: flex;
  align-items: center;
}

@media(min-width:768px){
  .text-selection-manufacturing {
    display: flex;
  }
}

.home-title {
  font-size: 21px;
  font-weight: 600;
  margin: 0;
  padding: 10px;
}

.home-title:hover {
  text-decoration: underline;
}

.category-wrap.red a {
  color: red;
}