/*media queries for screen size (lifted from bootstrap)*/
/*Global styles*/
html,
body {
  font-family: 'Open Sans', verdana, helvetica, sans-serif;
  min-width: 275px;
  overflow-x: hidden;
}
.container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
h1,
h2,
h3 {
  color: #153562;
}
a {
  color: #00498d;
  text-decoration: none;
  transition: color 0.3s 0s;
}
.product-link {
  color: #545454;
}
a:hover,
a:active,
a:focus {
  color: #faa100;
  text-decoration: none;
}
p {
  font-size: 1.5em;
}
button,
input[type=submit] {
  background: #faa100;
  background: -moz-linear-gradient(center top, #faa100, #ff7b23);
  background: -ms-linear-gradient(center top, #faa100, #ff7b23);
  background: -o-linear-gradient(center top, #faa100, #ff7b23);
  background: -webkit-linear-gradient(-90deg, #faa100, #ff7b23);
  background: linear-gradient(-180deg, #faa100, #ff7b23);
  border: 0px;
  border-radius: 7px;
  cursor: pointer;
  color: #fff;
  font-size: 1.4em;
  font-weight: 600;
  margin: 10px 0;
  padding: 15px;
  transition: background-color 0.2s 0s, box-shadow 0.2s 0s, padding 0.2s 0s;
  width: 100%;
}
button a,
input[type=submit] a {
  color: #fff;
  display: inline-block;
  width: 100%;
  height: 100%;
}
button:hover,
input[type=submit]:hover {
  color: white;
}
button:hover a,
input[type=submit]:hover a {
  color: white;
}
button:focus,
input[type=submit]:focus {
  outline: none;
}
button:hover,
input[type=submit]:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0 3px 5px;
}
button:active,
input[type=submit]:active {
  box-shadow: rgba(0, 0, 0, 0.2) 0 5px 5px inset;
}
button:disabled,
input[type=submit]:disabled {
  opacity: 0.7;
  box-shadow: none;
}
.button-grey {
  background: #545454 none repeat scroll 0 0;
  border-radius: 7px;
  color: #fff;
  box-shadow: none;
  margin: 10px 0;
  padding: 15px;
  width: 100%;
}
.button-grey a {
  color: #fff;
  margin: -15px;
  padding: 15px;
}
.button-grey:hover {
  background: #666666;
  box-shadow: none;
}
.button-grey:active {
  background: #424242;
  box-shadow: none;
  transition: all 0.1s 0s;
}
.button-grey:disabled {
  background: #545454;
  box-shadow: none;
  transition: all 0.1s 0s;
}
.button-light-grey {
  background: none;
  box-shadow: none;
}
.button-light-grey a {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  background: #f3f3f3;
  border-radius: 7px;
  box-shadow: none;
  color: #153562;
  height: 100%;
  padding: 15px;
  text-align: center;
  width: 100%;
  transition: all 0.3s 0s;
}
.button-light-grey a h3 {
  font-size: 1.3em;
  font-weight: 700;
}
.button-light-grey a .img {
  display: block;
  min-width: 100%;
}
.button-light-grey a img {
  height: 60px;
}
.button-light-grey:hover {
  box-shadow: none;
}
.button-light-grey:hover a {
  background: #e1e1e1;
}
.button-light-grey:active {
  box-shadow: none;
  transition: all 0.1s 0s;
}
.button-light-grey:active a {
  background: #cfcfcf;
  transition: all 0.2s 0s;
}
.button-light-grey:disabled {
  box-shadow: none;
  transition: all 0.1s 0s;
}
.button-light-grey:disabled a {
  background: #f3f3f3;
  transition: all 0.2s 0s;
}
.square-dark-blue-button {
  background: #153562;
  border-radius: 0;
  font-size: 1.8em;
  font-weight: 300;
  padding-top: 5px;
  padding-bottom: 5px;
}
.square-dark-blue-button:hover {
  background: #1e4c8c;
  box-shadow: none;
}
.square-dark-blue-button:active {
  background: #0c1e38;
  box-shadow: none;
  transition: all 0.1s 0s;
}
.square-dark-blue-button:disabled {
  background: #153562;
}
.no-padding {
  padding: 0;
}
.no-left-padding {
  padding-left: 0;
}
.no-right-padding {
  padding-right: 0;
}
.padding-all {
  padding: 15px;
}
.padding-all-sm {
  padding: 10px;
}
.padding-all-xs {
  padding: 5px;
}
.padding-all-lg {
  padding: 30px;
}
.padding-top {
  padding-top: 15px;
}
.padding-top-sm {
  padding-top: 10px;
}
.padding-top-xs {
  padding-top: 5px;
}
.padding-top-lg {
  padding-top: 30px;
}
.padding-bottom {
  padding-bottom: 15px;
}
.padding-bottom-sm {
  padding-bottom: 10px;
}
.padding-bottom-xs {
  padding-bottom: 5px;
}
.padding-bottom-lg {
  padding-bottom: 30px;
}
.padding-top-bottom {
  padding-top: 15px;
  padding-bottom: 15px;
}
.padding-top-bottom-sm {
  padding-top: 10px;
  padding-bottom: 10px;
}
.padding-top-bottom-xs {
  padding-top: 5px;
  padding-bottom: 5px;
}
.padding-top-bottom-lg {
  padding-top: 30px;
  padding-bottom: 30px;
}
.no-margin {
  margin: 0;
}
.margin-all {
  margin: 15px;
}
.margin-all-sm {
  margin: 10px;
}
.margin-all-xs {
  margin: 5px;
}
.margin-all-lg {
  margin: 30px;
}
.margin-top {
  margin-top: 15px;
}
.margin-top-sm {
  margin-top: 10px;
}
.margin-top-xs {
  margin-top: 5px;
}
.margin-top-lg {
  margin-top: 30px;
}
.margin-bottom {
  margin-bottom: 15px;
}
.margin-bottom-sm {
  margin-bottom: 10px;
}
.margin-bottom-xs {
  margin-bottom: 5px;
}
.margin-bottom-lg {
  margin-bottom: 30px;
}
.margin-top-bottom {
  margin-top: 15px;
  margin-bottom: 15px;
}
.margin-top-bottom-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.margin-top-bottom-xs {
  margin-top: 5px;
  margin-bottom: 5px;
}
.margin-top-bottom-lg {
  margin-top: 30px;
  margin-bottom: 30px;
}
.margin-left {
  margin-left: 15px;
}
.margin-left-sm {
  margin-left: 10px;
}
.margin-left-xs {
  margin-left: 5px;
}
.margin-left-lg {
  margin-left: 30px;
}
.margin-right {
  margin-right: 15px;
}
.margin-right-sm {
  margin-right: 10px;
}
.margin-right-xs {
  margin-right: 5px;
}
.margin-right-lg {
  margin-right: 30px;
}
.margin-left-right {
  margin-left: 15px;
  margin-right: 15px;
}
.margin-left-right-sm {
  margin-left: 5px;
  margin-right: 10px;
}
.margin-left-right-xs {
  margin-left: 5px;
  margin-right: 5px;
}
.margin-left-right-lg {
  margin-left: 30px;
  margin-right: 30px;
}
.error-message {
  color: #cc0000;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.5s 0s;
}
.error-message a {
  color: #00498d;
}
.error-open {
  max-height: 500px;
}
/*Forms*/
form input[type=text],
form input[type=email],
form input[type=password],
form input[type=date],
form textarea {
  background-color: white;
  border: 1px solid #faa100;
  border-radius: 4px;
  color: #545454;
  font-size: 1.6em;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 10px 0;
  max-width: 100%;
  padding: 15px 10px;
  transition: all 0.3s ease 0s;
  width: 100%;
}
form input:focus,
form textarea:focus {
  box-shadow: rgba(0, 0, 0, 0.2) 0 5px 5px inset;
  outline: none;
}
form input::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder {
  color: #d3d3d3;
  font-weight: 400;
}
form input:-moz-placeholder,
form textarea::-moz-input-placeholder {
  color: #d3d3d3;
  font-weight: 400;
}
form input::-moz-placeholder,
form textarea::-moz-input-placeholder {
  color: #d3d3d3;
  font-weight: 400;
}
form input:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
  color: #d3d3d3;
  font-weight: 400;
}
form select {
  background-color: white;
  border: #faa100 1px solid;
  border-radius: 7px;
  font-size: 1.4em;
  margin: 10px 0;
  padding: 15px 10px;
  background-image: url(../img/dropdown-arrow-small.png);
  background-position: center right;
  background-repeat: no-repeat;
  appearance: none;
  -moz-appearance: textfield;
  -ms-appearance: none;
  -webkit-appearance: none;
  width: 100%;
}
form select:hover {
  cursor: pointer;
}
form select::-ms-expand {
  display: none;
}
form select:focus {
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 2px inset;
  cursor: default;
  outline: none;
}
form select:disabled {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  cursor: default;
  padding: 0 5px;
}
form .grey-select {
  background-color: #f3f3f3;
  border: #d3d3d3 1px solid;
  border-radius: 0px;
  padding: 5px;
}
form input[type=radio] {
  display: inline-block;
}
form input[type=checkbox] {
  height: 20px;
  width: 20px;
}
form input[type=file] {
  border: #d3d3d3 1px solid;
  border-radius: 4px;
  box-shadow: none;
  padding: 15px 0px;
  margin: 10px 0;
  width: 100%;
}
form .custom-arrows {
  position: relative;
}
form .custom-arrows input {
  appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: textfield;
  border: #faa100 1px solid;
  border-radius: 7px;
  display: inline-block;
  font-size: 2em;
  height: 45px;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 45px;
}
form .custom-arrows .arrow-btn {
  background: none;
  border: none;
  box-shadow: none;
  color: #faa100;
  height: 20px;
  margin: 0;
  padding: 0 5px;
  position: absolute;
  transition: color 0.3s, left 0.3s;
  width: 24px;
}
form .custom-arrows .arrow-btn:hover {
  color: #545454;
}
form .custom-arrows .arrow-btn:active {
  color: #faa100;
  transition: all 0.1s;
}
form .custom-arrows .up-arrow-btn {
  top: 0px;
}
form .custom-arrows .down-arrow-btn {
  top: 26px;
}
form .custom-arrows .arrow-btn:disabled {
  color: #d3d3d3;
}
form input::-webkit-outer-spin-button,
form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
form input::-moz-outer-spin-button,
form input::-moz-inner-spin-button {
  -moz-appearance: textfield;
  appearance: textfield;
}
form input::outer-spin-button,
form input::inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
}
/*custom select dropdowns with tamingselect.js*/
.dropdowntrigger,
.dropdownactivetrigger {
  background-color: white;
  border: #faa100 1px solid;
  border-radius: 4px;
  color: #444445 !important;
  cursor: pointer;
  display: inline-block;
  font-size: 1.6em;
  margin: 10px 0;
  padding: 15px 10px;
  background-image: url(../img/dropdown-arrow-small.png);
  background-position: center right;
  background-repeat: no-repeat;
  width: 100%;
  transition: all 0.3s ease 0s;
}
.dropdowntrigger:hover,
.dropdownactivetrigger:hover,
.dropdowntrigger:focus,
.dropdownactivetrigger:focus {
  color: inherit;
}
.dropdowntrigger:disabled,
.dropdownactivetrigger:disabled {
  background-color: #f3f3f3;
  border: 1px solid #545454;
  cursor: default;
}
.dropdownactivetrigger,
.dropdowntrigger:focus {
  box-shadow: rgba(0, 0, 0, 0.2) 0 5px 5px inset;
}
/* style of the UL */
.dropdowncontainer ul {
  background: #fff;
  border: 1px solid #444445;
  font-size: 1.4em;
  list-style-type: none;
  max-height: 350px;
  overflow-y: scroll;
  padding: 0;
  margin: 0;
  width: 100%;
  position: absolute;
  z-index: 500;
}
.dropdownhidden {
  top: 0;
  left: -999em;
}
.dropdownvisible {
  top: -15px;
  left: 0;
}
.dropdowncontainer ul li:last-child a {
  border-bottom: none;
}
.dropdowncontainer ul a {
  border-bottom: 1px solid #444445;
  color: #444445;
  display: block;
  padding: 15px 10px;
  text-decoration: none;
  width: 100%;
}
.dropdowncontainer ul a:hover,
.dropdowncontainer ul a:focus {
  background: #f3f3f3;
}
.dropdowncontainer {
  position: relative;
}
.selectBoxes {
  float: left;
  margin: 5px 20px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  /* style of the UL */
}
.selectBoxes span {
  display: inline-block;
}
.selectBoxes .dropdowntrigger,
.selectBoxes .dropdownactivetrigger {
  background-color: #f3f3f3;
  border: #d3d3d3 1px solid;
  border-radius: 0px;
  color: #444445;
  cursor: pointer;
  font-size: 0.95em;
  padding: 2px;
  padding-right: 35px;
  margin: 0;
  width: auto;
}
.selectBoxes .dropdowntrigger:hover,
.selectBoxes .dropdownactivetrigger:hover,
.selectBoxes .dropdowntrigger:focus,
.selectBoxes .dropdownactivetrigger:focus {
  color: inherit;
}
.selectBoxes .dropdowntrigger:disabled,
.selectBoxes .dropdownactivetrigger:disabled {
  background-color: #f3f3f3;
  border: 1px solid #545454;
  cursor: default;
}
.selectBoxes .dropdowncontainer ul {
  background: #fff;
  border: 1px solid #444445;
  font-size: 0.95em;
}
.selectBoxes .dropdownvisible {
  top: -10px;
}
.selectBoxes .dropdowncontainer ul li:last-child a {
  border-bottom: none;
}
.selectBoxes .dropdowncontainer ul a {
  padding: 5px 10px;
}
table {
  text-align: center;
  width: 100%;
}
table td {
  border: #00498d 1px solid;
  vertical-align: top;
}
table td:first-child {
  vertical-align: middle;
}
input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #cc0000;
  background-color: #ffe6e6;
}
.parsley-errors-list {
  color: #cc0000;
  margin: 2px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  opacity: 0;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}
.parsley-errors-list.filled {
  opacity: 1;
}
.required-info {
  color: #cc0000;
  font-weight: 700;
  padding: 0 15px;
  position: relative;
}
.required::after {
  color: #cc0000;
  content: "*";
  display: inline-block;
  margin: 0 0 0 1%;
  position: absolute;
}
.required-input::after {
  color: #cc0000;
  content: "*";
  display: inline-block;
  margin: 0 0 0 1%;
  position: absolute;
  top: 0;
  right: 0;
}
.dropdown,
.dropdown-menu,
btn {
  margin: auto;
}
.dropdown {
  padding: 0;
}
.dropdown .btn {
  background: #f3f3f3;
  background-image: url(../img/dropdown-arrow-small.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 18px 8px;
  border: #d3d3d3 1px solid;
  border-radius: 7px;
  box-shadow: none;
  margin: 10px 2%;
  position: relative;
  padding: 5px;
  padding-right: 35px;
  text-align: left;
  width: 96%;
  max-width: 100%;
  transition: background 0.2s 0s, border-color 0.2s 0s;
}
.dropdown .btn:active,
.dropdown .btn:focus,
.dropdown .btn:focus.dropdown .btn:active {
  outline: none;
}
.dropdown .btn:hover {
  background: #f3f3f3;
  background-image: url(../img/dropdown-arrow-orange-small.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 18px 8px;
}
.dropdown .dropdown-menu {
  margin: 0 2%;
  width: 96%;
  max-width: 100%;
  min-width: 0;
}
.dropdown.open {
  margin-bottom: 10px;
}
.dropdown.open > .dropdown-toggle.btn {
  background-color: #545454;
  background-image: url(../img/dropdown-arrow-white-small.png);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0px;
}
.stars {
  background: url(../img/star-grey-sm.png) 0 0 repeat-x;
  background-size: contain;
  display: block;
  width: 113px;
  height: 20px;
  margin: auto;
  padding: 0;
  text-align: left;
}
.stars .blue-stars {
  background: url(../img/star-blue-sm.png) 0 0 repeat-x;
  background-size: contain;
  height: 20px;
  width: 70%;
}
.stars-lg {
  background: url(../img/star-grey-lg.png) 0 0 repeat-x;
  height: 35px;
  width: 172px;
}
.stars-lg .blue-stars {
  background: url(../img/star-blue-lg.png) 0 0 repeat-x;
  height: 35px;
}
.shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
/*Expandable sidebar for mobile only*/
.nav-sidebar {
  background: #00498d;
  background: -ms-linear-gradient(90deg, #00498d, #153562);
  background: -moz-linear-gradient(-90deg, #00498d, #153562);
  background: -o-linear-gradient(-90deg, #00498d, #153562);
  background: -webkit-linear-gradient(-180deg, #00498d, #153562);
  background: linear-gradient(-180deg, #00498d, #153562);
  width: 200px;
  height: 100%;
  min-height: 100%;
  padding: 0 0 0 15px;
  position: fixed;
  z-index: 0;
  list-style: none;
  color: #000;
  width: 100%;
}
ul.nav-sidebar {
  overflow: scroll;
  height: 100%;
}
.nav-sidebar h4 {
  font-size: 1.3em;
  font-weight: 600;
}
.nav-sidebar li {
  padding: 15px 0 15px 0;
}
.nav-sidebar a {
  text-decoration: none;
}
/*menu button for nav sidebar*/
.nav-trigger {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.nav-trigger + div#menu-toggle-div,
.nav-trigger + .menu-toggle,
.site-wrap {
  transition: left 0.2s;
}
label[for="nav-trigger"] {
  background-size: contain;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  width: 0%;
  height: 0%;
}
.nav-trigger ~ div#menu-toggle-div {
  background-size: contain;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  width: 0%;
  height: 0%;
}
.nav-trigger:checked + div#menu-toggle-div {
  left: 80%;
}
.nav-trigger:checked ~ .site-wrap {
  left: 80%;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.nav-trigger ~ div#menu-toggle-div::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s 0s;
  content: "";
}
.nav-trigger:checked ~ div#menu-toggle-div {
  height: 100%;
  width: 100%;
}
.nav-trigger:checked ~ div#menu-toggle-div::after {
  opacity: 1;
}
.menu-toggle {
  cursor: pointer;
  display: block;
  height: 50px;
  left: 0;
  margin: 0px 10px 10px;
  opacity: 1;
  padding: 0.5em;
  position: absolute;
  width: 40px;
  z-index: 10;
  overflow: hidden;
  background: initial;
  font-size: inherit;
  box-shadow: none !important;
}
.menu-toggle em {
  background: #fff;
  display: block;
  height: 3px;
  margin: 5px 0 0 0;
  width: 100%;
  transition: all 0.3s 0s;
}
.menu-toggle em:first-child {
  margin: 0;
}
.nav-trigger:checked ~ div .menu-toggle em:first-child {
  margin-top: 10px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-trigger:checked ~ div .menu-toggle em:nth-child(2) {
  margin-left: -40px;
}
.nav-trigger:checked ~ div .menu-toggle em:last-child {
  margin-top: -10px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.site-wrap {
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  width: 100%;
  z-index: 1;
}
header {
  background-color: #081f41;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  header .lorex-logo {
    /* padding-left: 15px; */
  }
}
header a {
  transition: all 0.3s 0s;
}
header h4 {
  font-size: 1.3em;
  font-weight: 600;
}
header h5 {
  font-size: 1.1em;
  font-weight: 600;
}
header a {
  color: #fff;
  text-decoration: none;
}
header a:hover {
  color: #faa100;
  text-decoration: none;
}
header nav .nav-items a:hover {
  color: #f6a707;
}
header h3 {
  display: inline-block;
  font-size: 1.5em;
  font-weight: 700;
}
header .header-top {
  height: 50px;
}
header .header-top h5 {
  font-weight: normal;
  margin: 20px 0px 0px;
}
header .sales-text {
  background: #081f41;
  height: 50px;
  padding-left: 0px;
  z-index: 20;
}
header .header-flex {
  height: 50px;
  padding: 0;
  text-align: right;
}
header .header-flex-item {
  display: inline-block;
  padding: 10px 6px 9px 6px;
  text-align: center;
  z-index: 20;
  flex: 1;
  height: 50px;
}
header .header-flex-item h3,
header .header-flex-item h4 {
  margin: 0;
  vertical-align: middle;
}
header .header-flex-item img {
  max-height: 25px;
  padding: 0 15px 0 0;
  transition: all 0.3s 0s;
}
header .logged-in {
  text-align: right;
}
header .logged-in h4 {
  margin: 19px 0;
}
header .header-hoverable.header-flex-item:hover,
header #headerLang.headerLangHoverOrKeydown {
  background: #545454;
}
header .header-popout {
  background: #fff;
  position: absolute;
  text-align: left;
  top: -1000px;
  z-index: -5;
  transition: top 0.3s 0s;
}
header .header-popout img,
header .header-popout h4 {
  display: inline-block;
}
header #headerCart h3 {
  font-weight: 700;
}
header #headerCart-popout {
  border: #545454 10px solid;
  color: #545454;
  display: none;
  width: 545px;
}
header #headerCart-popout .cart-item {
  border-bottom: #d3d3d3 1px solid;
  color: #545454;
  display: block;
  height: auto;
  margin: 0;
  padding: 15px 5px;
}
header #headerCart-popout .cart-item img {
  display: inline-block;
  max-width: 100%;
}
header #headerCart-popout .cart-item div {
  display: inline-block;
  height: auto;
}
header #headerCart-popout .cart-item h4 {
  font-weight: normal;
  margin: 0;
}
header #headerCart-popout .cart-item h4.price {
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 10px;
}
header #headerCart-popout .checkoutButton {
  font-size: 1.6em;
  font-weight: 600;
}

header #headerCart-popout .miniCartAllItems {
  color: #1b82d0;
}

header #headerCart-popout .subtotal {
  text-align: center;
}
header #headerCart-popout .subtotal h3 {
  color: #545454;
  font-size: 2em;
  font-weight: 700;
}
header #headerCart-popout .empty-cart {
  min-width: 320px;
  padding: 20px;
  text-align: right;
}
header #headerCart-popout .empty-cart h5 {
  margin: 0;
}
header #headerLang .img-wrapper,
header #headerLang-popout .img-wrapper {
  display: inline-block;
  width: auto;
  margin: 0px 10px;
  padding: 0;
}
header #headerLang .img-wrapper img,
header #headerLang-popout .img-wrapper img {
  max-height: 25px;
  padding: 0px;
}
header #headerLang {
  text-align: left;
}
header #headerLang h4 {
  display: none;
}
header #headerLang-popout {
  background-color: #545454;
  display: none;
  right: 0px;
  text-align: left;
}
header #headerLang-popout a {
  border-top: #fff 1px solid;
  display: block;
  padding: 15px 6px;
}
header #headerLang-popout a:hover h4 {
  color: #faa100;
}
header #headerCart:hover ~ #headerCart-popout,
header #headerLang:hover ~ #headerLang-popout,
header .header-popout:hover,
header .active {
  top: 50px;
  z-index: 5;
}
header #numCartItems,
header #langSelected {
  color: #faa100;
}
header #headerLang button, header #headerLang-popout button {
  padding: 0px;
  margin: 0px;
  width: auto;
  font-size: inherit;
  background: inherit;
  transition: initial;
  text-align: left;
}

header #headerLang button {
  cursor: inherit;
}

header #headerLang-popout button {
  cursor: pointer;
  border-top: #fff 1px solid;
  padding: 15px 6px;
  border-radius: initial !important;
  width: 100%;
}

header #headerLang button:hover {
  box-shadow: initial;
}

header nav {
  background: #00498d;
  background: -ms-linear-gradient(-90deg, #00498d, #153562);
  background: -moz-linear-gradient(-90deg, #00498d, #153562);
  background: -o-linear-gradient(-90deg, #00498d, #153562);
  background: -webkit-linear-gradient(-90deg, #00498d, #153562);
  background: linear-gradient(-180deg, #00498d, #153562);
  color: white;
  padding: 7px;
  min-height: 50px;
}
header nav .container {
  position: relative;
}
header nav .lorex-logo {
  text-align: left;
  padding: 0;
}
header nav .lorex-logo img {
  height: auto;
  max-height: 40px;
  margin: 5px 0 0 0;
  max-width: 140%;
}
header nav .nav-items {
  display: none;
  height: 60px;
}
header nav .nav-items ul {
  list-style-type: none;
  padding: 0px;
}
header nav .nav-items li {
  flex: 1;
  margin: 21px 0;
  float: left;
  margin: 21px 0%;
  padding: 0 15px;
}
header nav .nav-items li a {
  transition: color: 0.3s ease 0s;
  display: inline-block;
  padding: 0 5px 0 0;
  font-size: 1.3em;
  font-weight: 600;
}
header nav input {
  border-style: none;
  border-radius: 5px;
  color: #1b82d0;
  font-size: 1.5em;
  font-weight: 700;
  margin: 0;
  overflow: hidden;
  margin: 3px 0;
  padding: 10px 15px;
  width: 100%;
}
header nav input::-webkit-input-placeholder {
  color: #1b82d0;
  font-weight: 700;
}
header nav input:-moz-placeholder {
  color: #1b82d0;
  font-weight: 700;
}
header nav input::-moz-placeholder {
  color: #1b82d0;
  font-weight: 700;
}
header nav input:-ms-input-placeholder {
  color: #1b82d0;
  font-weight: 700;
}
header nav .search-bar {
  cursor: pointer;
  display: none;
  margin: 0;
  padding: 0;
}
header nav .search-bar::ms-clear {
  display:none;
}

header nav .search-bar button {
  position: absolute;
  top: 12px;
  right: 10px;
  width: auto;
  padding: 0px;
  margin: 0px;
  background: initial;
  transition: none;
}

header nav .search-bar button:hover {
  box-shadow: initial;
}

header nav .search-bar-mobile {
  cursor: pointer;
  display: inherit;
  float: left;
  position: relative;
  padding: 11px;
  height: 50px;
  min-width: 50px;
  text-align: right;
}

div.search-dropdown {
  overflow: scroll;
  height: 85vh;
}

.site-wide-banner {
  background: #efefef;
  background: linear-gradient(#ffffff, #efefef);
  min-height: 70px;
  text-align: center;
  margin-bottom: 2px;
}
.site-wide-banner h4 {
  color: #000;
  font-weight: 700;
  font-size: 1.5em;
  margin: 25px 0;
}
.breadcrumbs {
  border-bottom: #d3d3d3 2px solid;
}
@media (max-width: 767px) {
  .breadcrumbs {
    padding: 0 15px;
  }
}
.breadcrumbs ul {
  padding: 0;
}
.breadcrumbs li {
  display: inline-block;
  padding-left: 10px;
}
.breadcrumbs li h4 {
  font-weight: 900;
  margin-bottom: 0px;
}
.breadcrumbs li h4::after {
  display: inline-block;
  content: ")";
  font-weight: 900;
  font-size: 0.8em;
  padding-left: 10px;
  position: relative;
  top: -2px;
}
.breadcrumbs li a {
  color: #545454;
}
.breadcrumbs li a:hover {
  color: #faa100;
}
.breadcrumbs li:first-child {
  padding-left: 0;
}
.breadcrumbs li:last-child h4 {
  font-weight: 500;
  margin-bottom: 7.5px;
}
.breadcrumbs li:last-child h4::after {
  content: "";
}
.breadcrumbs img {
  margin-left: -35px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s 0s;
}
.breadcrumbs-fixed {
  background: #f3f3f3;
  border-bottom: #d3d3d3 0px solid;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 15;
}
.breadcrumbs-fixed .container {
  margin-bottom: 5px;
  padding: 0px;
}
.breadcrumbs-fixed img {
  margin-top: 0;
  margin-left: 0;
  margin-right: 10px;
  visibility: visible;
  opacity: 1;
}
.page-content .save-banner {
  background: #d3d3d3;
  text-align: center;
  padding: 10px;
}
.page-content .save-banner h4 {
  color: #545454;
  font-weight: 700;
  display: inline-block;
}
.page-content .save-banner h4:last-child {
  color: #faa100;
}
.recent-products {
  padding: 20px;
}
.recent-products h4 {
  font-weight: 700;
  font-size: 1.6em;
}
.recent-products .items {
  padding: 0;
  text-align: left;
}
.recent-products .items img {
  width: 40%;
  margin: 0 2% 0 2%;
}
.why-buy-lorex {
  background: #f3f3f3;
  text-align: center;
}
.why-buy-lorex .item {
  border-left: 1px #fff solid;
  border-right: 1px #fff solid;
  padding: 20px 0 20px 0;
  text-align: center;
}
.why-buy-lorex .item div {
  display: inline-block;
  margin: 0 0 0 20px;
  text-align: left;
  vertical-align: middle;
}
.why-buy-lorex img {
  height: 80px;
}
.why-buy-lorex h2,
.why-buy-lorex h5 {
  margin: 0;
  padding: 0;
}
.why-buy-lorex h2 {
  font-size: 1.8em;
  font-weight: 600;
}
.why-buy-lorex h5 {
  font-weight: 900;
  font-size: 1.2em;
}
.confidence-security .secure-checkout,
.confidence-security .got-questions {
  align-items: center;
  display: flex;
  padding: 5px 0;
}
.confidence-security .secure-checkout .glyphicon,
.confidence-security .got-questions .glyphicon {
  font-size: 2em;
  margin: 0 15px;
}
.confidence-security .secure-checkout {
  color: #5bc55c;
}
.confidence-security .got-questions {
  justify-content: flex-end;
  text-align: right;
}
.confidence-security .got-questions .glyphicon {
  background: #545454;
  border-radius: 0.4em;
  color: #fff;
  font-size: 1.8em;
  padding: 0.3em;
}
/*Toggle section to be used anywhere*/
.toggle-section {
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.toggle-section .toggle-box {
  display: none;
}
.toggle-section .toggle-box + label {
  cursor: pointer;
}
.toggle-section .toggle-box + label:hover {
  color: #faa100;
}
.toggle-section .toggle-box + label + ul {
  visibility: hidden;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.4s 0s;
}
.toggle-section .toggle-box:checked + label + ul {
  visibility: visible;
  max-height: 5000px;
  /*Override max-height for individual sections to ensure proper transition speed*/
  transition: all 1s 0s;
}
.toggle-section .toggle-box:checked + label h4::after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.toggle-section label {
  width: 100%;
}
.toggle-section a {
  border-bottom: 1px solid #f4f4f4;
  color: #000;
  display: block;
  margin: 0;
  padding: 10px 0;
}
.toggle-section a:hover {
  color: #faa100;
}
.toggle-section ul {
  list-style: none;
  padding: 0;
}
.toggle-section li {
  padding: 10px;
}
.toggle-section h4 {
  font-weight: 700;
  font-size: 1.3em;
  transition: all 0.3s 0s;
}
.toggle-section h4:not(.toggle-box-h4)::after {
  content: "\25bc";
  position: absolute;
  right: 10%;
  transition: all 0.3s 0s;
}
.toggle-section h4 span::after {
  content: "\25bc";
  position: absolute;
  right: 10%;
  transition: all 0.3s 0s;
}
.expander-section .expander-box {
  display: none;
}
.expander-section .expander-box + label {
  cursor: pointer;
  transition: all 0.3s 0s;
}
.expander-section .expander-box + label + ul {
  max-height: 210px;
  overflow: hidden;
  transition: all 1s 0s;
}
.expander-section .expander-box:checked + label + ul {
  visibility: visible;
  max-height: 5000px;
  /*Override this for individual sections to ensure proper transition speed*/
  transition: all 1s 0s;
}
.expander-section .expander-box + label::after {
  content: "\2b";
  transition: all 0.3s 0s;
}
.expander-section .expander-box:checked + label::after {
  content: "\2212";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.footer-extended {
  margin-top: 20px;
}
footer {
  clear: both;
  display: block;
  position: relative;
  z-index: 100;
}
footer a,
footer h4 {
  color: #fff;
}
footer .container-fluid {
  padding: 0;
}
footer .social-media {
  background: #545454;
  margin: 1px auto;
  text-align: center;
}
footer .social-media img {
  padding: 7px;
}
footer .links {
  background: #545454;
  min-height: 40px;
}
footer .links ul {
  margin: auto;
  padding: 0;
  text-align: center;
  text-decoration: none;
}
footer .links li {
  flex: auto;
  list-style: none;
  padding: 7px 0 7px 0;
}
footer .affiliates {
  background: #fff;
  margin: auto;
  text-align: center;
}
footer .affiliates a {
  display: inline-block;
  clear: none;
  margin: 15px 0 15px 0;
  padding: 0 5px 0 5px;
}
footer .affiliates img {
  max-width: 100%;
}
.promo-3 {
  color: #fff;
  margin: 30px 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.promo-3 a {
  color: #fff;
}
.promo-3 a:hover .flex-img {
  opacity: 0.8;
}
.promo-3 .flex-container {
  display: flex;
  position: absolute;
  top: 20%;
  left: 0;
}
.promo-3 .flex-container h3 {
  font-size: 2.8em;
}
.promo-3 .flex-container h4 {
  font-size: 2.4em;
  font-weight: 700;
}
.promo-3 .flex-container .flex-item {
  flex: 1;
  padding: 0 2% 0 2%;
}
.promo-3 .flex-container .flex-img {
  display: none;
  flex: 0.2;
  margin-top: 26%;
  padding: 0;
  opacity: 0.6;
  transition: opacity 0.3s 0s;
}
.promo-3 .flex-container .flex-img img {
  width: 100%;
}
@media (max-width: 537.6px) {
  .hidden-xxs {
    display: none !important;
  }
  .col-xxs-1 {
    width: 8.33333333%;
  }
  .col-xxs-2 {
    width: 16.66666667%;
  }
  .col-xxs-3 {
    width: 25%;
  }
  .col-xxs-4 {
    width: 33.33333333%;
  }
  .col-xxs-5 {
    width: 41.66666667%;
  }
  .col-xxs-6 {
    width: 50%;
  }
  .col-xxs-7 {
    width: 58.33333333%;
  }
  .col-xxs-8 {
    width: 66.66666667%;
  }
  .col-xxs-9 {
    width: 75%;
  }
  .col-xxs-10 {
    width: 83.33333333%;
  }
  .col-xxs-11 {
    width: 91.66666667%;
  }
  .col-xxs-12 {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .menu-toggle,
  .nav-sidebar {
    display: none;
  }
  header {
    text-align: left;
  }
  header h3 {
    font-size: 1.7em;
    font-weight: 500;
  }
  header .header-flex {
    display: flex;
  }
  header .header-flex .header-flex-item {
    background: #081f41;
    font-size: inherit;
    font-weight: inherit;
    line-height: 2em;
    padding: 13px 6px 13px 6px;
  }
  header .header-flex .header-flex-item h3 {
    padding: 0 0.2em 0 0.2em;
  }
  header .header-flex .header-flex-item h4 {
    display: inline-block;
    padding: 0 5px 0 0;
  }
  header #headerCart-popout {
    display: none;
    position: absolute;
  }
  header #headerLang .img-wrapper,
  header #headerLang-popout .img-wrapper {
    width: 50px;
    margin-left: 50px;
  }
  header #headerLang {
    cursor: default;
  }
  header #headerLang h4 {
    display: inline-block;
  }
  header #headerLang-popout {
    display: block;
    position: absolute;
  }
  header nav {
    height: auto;
  }
  header nav .lorex-logo {
    text-align: inherit;
    padding: 0;
  }
  header nav .lorex-logo img {
    max-height: 55px;
  }
  header nav .search-bar {
    display: block;
    margin: 1em 0 0 0;
    padding: 0;
  }
 header nav .search-bar button {
    cursor: pointer;
    right: 25px;
  }

  header nav .search-bar-mobile {
    display: none;
  }
  header nav .nav-items {
    display: flex;
    padding: 0px;
    text-align: center;
  }
  .recent-products .items {
    text-align: left;
  }
  .recent-products .items img {
    height: 75px;
    margin: 20px 20px 20px 0;
    width: auto;
  }
  .why-buy-lorex {
    text-align: left;
  }
  .toggle-section {
    text-align: left;
  }
  .toggle-section .toggle-box {
    display: none;
  }
  .toggle-section .toggle-box + label {
    cursor: default;
    transition: none;
  }
  .toggle-section .toggle-box + label:hover {
    color: #545454;
  }
  .toggle-section .toggle-box + label + ul {
    visibility: inherit;
    max-height: 5000px;
    overflow: inherit;
    transition: none;
  }
  .toggle-section .toggle-box:checked + label + ul {
    visibility: visible;
    max-height: 5000px;
  }
  .toggle-section h4::after {
    content: "";
  }
  .toggle-section li {
    padding: inherit;
  }
  .toggle-section a {
    color: #000;
    display: block;
    padding: 3px 0 3px 0;
  }
  .toggle-section a:hover {
    color: #faa100;
  }
  .toggle-section ul {
    margin: 0;
    text-align: left;
    margin: 0 0 15px 0;
  }
  .promo-3 .flex-container .flex-img {
    display: block;
  }
}
@media (min-width: 992px) {
  header #headerLang .img-wrapper,
  header #headerLang-popout .img-wrapper {
    margin-left: 25px;
  }
  .promo-3 .flex-container .flex-img {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  header h5 {
    display: block;
  }
  header nav .search-bar {
    margin: 3px 0 0 0;
  }
  header #headerLang .img-wrapper,
  header #headerLang-popout .img-wrapper {
    width: 25px;
    margin-left: 25px;
  }
  .footer-extended ul li a {
    font-size: 1.2em;
    padding: 2px;
  }
  footer .links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  footer .links li {
    -webkit-box-flex: auto;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
    padding: 8px;
  }
}
input[type='number'] {
    -moz-appearance:textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.ui-spinner.ui-widget-content {
    border: 0px;
}
.ui-spinner a.ui-spinner-button {
    border-color: -moz-use-text-color;
    border-style: none;
    border-width: medium;
}
.plans input[type="number"] {
    text-align: center;
}

.warning-text {
  color: white;
}

#searchTerm::-ms-clear{
	display: none;
}

.page-nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.page-nav-container:after,
.page-nav-container:before {
	content: none;
}

#country-not-support p.warning-text {
	margin: 15px 0;
}
