@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700,800");
:root {
  --red-color: #f82b60;
  --font-color: #25252b;
  --light-grey-color: #f7f7f7;
  --white-color: #fff;
  --light-grey-border-color: #eee;
  --green-color: #00c18c;
  --blue-color: #3277dc;
  --dark-grey-color: #2b2e34;
}

* {
  list-style: none;
  padding: 0;
  margin: 0;
  outline: none;
  text-decoration: none;
  border: 0;
}
a{
	cursor: pointer;
}
body, html {
  height: 100%;
  position: relative;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--font-color);
  -webkit-font-smoothing: antialiased;
  background: var(--light-grey-color);;
}
#wrapper {
  min-height: calc( 100% - 160px );
  position: relative;
}
.wrap {
  width: 85%;
  margin: auto;
  position: relative;
}
.floatLeft {
  float: left;
  position: relative;
}
.floatRight {
  float: right;
  position: relative;
}
a {
  color: inherit;
}
button {
  font-family: 'Open Sans', sans-serif;
  font-size: inherit;
  cursor: pointer;
}
h1 {
  font-size: 24px;
}
h2 {
 	font-size: 20px;
  padding: 10px 0;
}
h3 {
  font-size: 18px;
  padding: 10px 0;
}
h1, h2, h3 {
  letter-spacing: 1px;
  font-weight: 600;
}
.box {
  background: var(--white-color);
  border: 1px solid var(--light-grey-border-color);
  border-radius: 3px;
  min-height: 19px;
  margin-bottom: 20px;
  position: relative;
	flex-grow: 1;
}
.counter {
  font-weight: 300;
  line-height: 30px;
}
section form select {
  line-height: 20px;
    background: var(--white-color);
    border: 1px solid var(--light-grey-border-color);
    border-radius: 15px;
    padding: 5px 15px;
    height: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
}
section form select:hover,
section form select:active,
section form select:focus {
	border-color: #d8d8d8;
}
section form select > option {
	background: var(--white-color);
	border-bottom: 1px solid var(--light-grey-border-color);
}
.green,
.blue {
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 15px;
  padding: 5px 10px;
  transition: all 0.2s ease;
}
.green {
  color: var(--green-color);
  border: 1px solid var(--green-color);
}
.green:hover {
  color: var(--white-color);
  background: var(--green-color);
}
.blue {
  color: var(--white-color);
  border: 1px solid var(--blue-color);
  background: var(--blue-color);
}
table {
  width: 100%;
  border-collapse: collapse;
}
table tr {
  border-bottom: 1px solid var(--light-grey-border-color);
}
table.blockTable td {
  padding: 10px;
  background: var(--white-color);
  border-right: 3px solid #fafafa;
  border-bottom: 3px solid #fafafa;
}

header .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* header .wrap .column {
  flex: 1;
} */
header .wrap .column {
	display: flex;
	align-items: center;
}
header a.logo {
  display: inline-block;
  margin: 5px 30px 7px 0;
}
header a.logo img {
  height: 40px;
}
header .dropMenu {
	width: 320px;
	position: relative;
}
.dropMenu .rightMenu {
  position: relative;
  float: left;
  background: var(--light-grey-color);;
  border: 1px solid var(--light-grey-border-color);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;  
  cursor: pointer;
  font-size: 13px;
  width: 70px;
}
.dropMenu .rightMenu span {
	text-transform: capitalize;
}
.dropMenu .rightMenu svg {
	position: absolute;
    right: 8px;
    top: 9px;
}
.dropMenu input {
  /* background: var(--light-grey-color);; */
  border: 1px solid var(--light-grey-border-color);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 0 10px;
  height: 32px;
  float: left;
  position: relative;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
	width: calc( 100% - 92px );
}
.dropMenu .dropWrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.dropMenu .dropWrap .dropCont {
  display: none;
  position: absolute;
  left: 0;
  top: -1px;
  width: calc( 100% - 2px );
  background-color: var(--white-color);
  border: 1px solid var(--light-grey-border-color);
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  font-size: 14px;
  z-index: 2;
}
.dropMenu .dropWrap .dropCont input[type="checkbox"] {
  display: none;
}
.dropMenu .dropWrap .dropCont label {
  display: block;
  padding: 5px 10px 5px 30px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: color 0.2s 0s, background 0.2s;
  border-bottom: 1px solid var(--light-grey-border-color);
  background: var(--white-color);
}
.dropMenu .dropWrap .dropCont label:last-of-type {
  border-bottom: 0;
}
.dropMenu .dropWrap .dropCont label:hover {
  background: var(--light-grey-border-color);
}
.dropMenu .dropWrap .dropCont input:checked+label {
  color: var(--white-color);
  transition: color 0.2s 0.2s, background 0.2s;
}
.dropMenu .dropWrap .dropCont input+label::after {
  background: rgba(126, 196, 183, 0.3);
  content: "";
  display: block;
  position: absolute;
  border-radius: 9999px;
  width: 0px;
  height: 0px;
  top: 50%;
  right: 1.5em;
  transition: all 0.2s ease-out;
  z-index: -1;
}
.dropMenu .dropWrap .dropCont input:checked+label::after {
  background: var(--green-color);
  transition: all 0.4s ease-in;
  width: 1300px;
  height: 1300px;
  top: -650px;
  right: -610px;
}
.dropMenu .dropWrap .dropCont input+label::before {
  content: "";
  position: absolute;
  line-height: 1;
  left: 10px;
  top: 7px;
  color: var(--white-color);
  transition: none;
}
.dropMenu .dropWrap .dropCont input:checked+label::before {
  content: "\2713";
  border-color: var(--white-color);
}
.dropMenu .dropWrap .dropCont select {
  padding: 5px 10px;
  height: 30px;
  background-color: var(--white-color);
  border: 1px solid #ADADAD;
  border-radius: 2px;
}
.dropMenu .dropWrap .dropCont input[type="text"] {
  height: 30px;
  border: 1px solid #ADADAD;
  border-radius: 2px;
  padding: 5px 10px;
  width: 100%;
}
.dropMenu .dropWrap .dropCont button {
  width: 80px;
  text-align: center;
  margin: 10px auto;
  position: relative;
  display: block;
}
.toExt {
  display: none;
}
.toExt.active,
.promo .toApp,
section#ext .toApp {
  display: inline-block;
  padding: 0 15px;
  border-radius: 25px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 1px;
}
/* REMOVE WHEN FF FIXED */
section#ext {
	display: none;
}
section#ext .toExt.active.firefox,
section#ext .toExt.active.safari {
	width: auto;
	border: none;
	text-transform: none;	
}
section#ext .toExt.active.firefox:hover,
section#ext .toExt.active.safari:hover {
	background: transparent;
	cursor: initial;
	color: var(--white-color);
}

header .toExt.active {
  color: var(--white-color);
  animation: shake 2s;
  background: var(--red-color);
}
header .toExt.active:hover {
  background: #f66249;
}
@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0);  }
  30%, 50%, 70% {  transform: translate3d(-4px, 0, 0);  }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}
header ul.headNav li {
  line-height: 30px;
  padding: 0 10px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
	position: relative;
}

section.srchRes .column:first-of-type .box {
  width: 100%;
}
section.srchRes .srchFilters {
  display: flex;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
}
section.srchRes .btnGroup button.active {
  cursor: default;
  background: var(--white-color);
}
section.srchRes .btnGroup button:first-of-type {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
section.srchRes .btnGroup button:last-of-type {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  margin-left: -5px;
}
section.srchRes .btnGroup button {
  background: var(--light-grey-border-color);
  padding: 5px 10px;
  width: 50px;
  border: 1px solid #e3e3e3;
  cursor: pointer;
}
section.srchRes .appFilters li {
  display: inline-block;
  height: 30px;
  margin-bottom: 5px;
}
section.srchRes .appFilters li label {
  background: var(--white-color);
  border: 1px solid var(--light-grey-border-color);
  border-radius: 15px;
  padding: 5px 15px;
  cursor: pointer;
  margin-right: 10px;
  float: left;
  position: relative;
}
section.srchRes .appFilters li span {
  margin-left: 10px;
  border-left: 1px solid var(--light-grey-border-color);
  display: inline-block;
  padding-left: 10px;
}
section.srchRes li label:hover {
  border-color: #d8d8d8;
}
.popupMain .imgWrap a,
.box .imgWrap a {
/*   height: 200px; */
  align-items: center;
  display: flex;
  justify-content: center;
}
.box:not(.list) .imgWrap {
  width: 100%;
	position: relative;
	    display: flex;
    justify-content: center;
}
.box:not(.list) .imgWrap a {
  height: 200px;
	width: 200px;
}
.popupMain .imgWrap img,
.box .imgWrap img {
  max-height: 100%;
  max-width: 100%;
}
.box .infoWrap,
.box .prAction {
  padding: 10px;
}
.box .infoWrap .title a,
.box .infoWrap ul li[data-type="deal"] {
/*   display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; */
  font-weight: 600;
  letter-spacing: 1px;
  width: 100%;
}
section.srchRes .box .prAction li[data-type="price"] {
	white-space: nowrap;
}
.box.offer .infoWrap li {
	width: 100%;
	float: none;
}


.box a.truncate {
	width: 100%;
	display: inline-block;
}
.box:not(.list) .infoWrap,
.box:not(.list) .prAction {
  text-align: center;
}
.box.offer:not(.list) .infoWrap ul li span,
.box.offer:not(.list) .infoWrap ul li[data-type="model"],
.box.offer:not(.list) .infoWrap ul li[data-type="brand"],
.box.offer:not(.list) .infoWrap ul li[data-type="upc"] {
  display: none;
}
.box:not(.list) .infoWrap li[data-type="product"],
.box:not(.list) .infoWrap li[data-type="deal"] {
  height: 40px;
}
.box .infoWrap li {
  float: left;
  position: relative;
  width: 100%;
}
.box:not(.list) .prAction {
  width: calc( 100% - 20px );
  padding-top: 0
}
.box .prAction li[data-type="price"] {
  font-weight: 600;
  letter-spacing: 1px;
}
.box .infoWrap li[data-type="model"] {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;	
}
.box:not(.list) .prAction li[data-type="price"] {
  margin-top: 5px;
}
.box .prAction li[data-type="dealsCount"] {
  /* color: var(--green-color); */
  font-weight: 600;
  margin-top: 5px;
}
.box .prAction li[data-type="dealsCount"] a:hover {
  border-bottom: 1px dotted var(--green-color);
}
.box.list .prAction li[data-type="dealsCount"] a:hover {
  border-bottom: 0;
}
.box.list .prAction li[data-type="dealsCount"] {
	border: 1px solid var(--green-color);
    color: var(--white-color);
    background: var(--green-color);
	transition: all 0.2s ease-in;
}
/* .box.list .prAction li[data-type="dealsCount"]:hover {
	background: var(--green-color);
	color: var(--white-color);
} */
section.srchRes .row .column .row .box.list,
section.srchRes .row .column .row .box.deal.list .imgWrap a {
  width: 100%;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
/*   flex-direction: column; */
/*   height: 150px; */
	position: relative;
}
section.srchRes .row .column .row .box.deal.list .imgWrap a {
  justify-content: center;
  align-content: center;
}
section.srchRes .srchFilters:last-of-type, {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 30px;
}
section.srchRes .pagination li {
  display: inline-block;
  background-color: var(--light-grey-border-color);
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  transition: all 0.2s ease;
}
section.srchRes .pagination li:hover {
  border-color: #d8d8d8;
}
section.srchRes .pagination li a {
  line-height: 30px;
  padding: 0 10px;
  display: block;
}
section.srchRes .pagination li.current {
  background: var(--white-color);
}
section.srchRes .row .column .row .box.deal.list .infoWrap li[data-type="dealLabel"] span:first-of-type {
  padding-left: 0;
}
section.srchRes .box .prAction li[data-type="offersCount"] a, 
section.srchRes .box .prAction li[data-type="dealsCount"] a {
	display: block;
	line-height: 30px;
	cursor: pointer;
	padding: 0 5px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

section.srchRes .box .prAction li {
	text-align: center;
	border-radius: 15px;
}

footer {
  height: 185px;
  width: 100%;
  background: var(--dark-grey-color);
  color: var(--white-color);
}
footer .row {
  display: flex;
  justify-content: space-around;
  margin: 30px 0;
}
footer .row ul {
  flex: 1;
  line-height: 25px;
}
footer .row ul li:first-of-type {
  width: 100%;
  text-transform: uppercase;
  font-weight: 600;
}
footer .row ul:nth-of-type(3) li a {
	font-size: 25px;
}
footer .row ul li a:hover {
  border-bottom: 1px dotted var(--white-color);
}
footer .row ul:nth-of-type(3) li {
  display: block;
  margin-right: 10px;
}
footer .row ul:nth-of-type(3) li:not(:first-of-type) {
  display: inline-block;
}
footer .row ul:nth-of-type(4) {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}
footer .row ul:nth-of-type(4) li {
	width: auto;
}
footer .row ul:nth-of-type(4) li img {
	height: 40px;
}

.toTop {
  position: fixed;
  right: 10px;
  bottom: 20px;
  font-size: 20px;
}
.toTop span {
  background: var(--light-grey-color);;
  display: inline-block;
  cursor: pointer;
  text-align: center;
	border-radius: 50px;
	width: 50px;
	height: 50px;
	line-height: 50px;
}

nav,
section {
  width: 100%;
}
nav {
  /* margin: 20px 0; */
  margin: 15px 0;
}
nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 10px;
  letter-spacing: 1px;
  font-size: 14px;
}
nav ul li:not(:last-of-type) {
  text-transform: uppercase;
  cursor: pointer;
}
nav ul li a:hover {
  border-bottom: 1px dotted #BDBDBD;
}
nav ul li:not(:last-of-type)::after {
  content: "\203A";
  position: absolute;
  right: -10px;
	top: 0;
}

section {
  padding-bottom: 15px;
}
section.stripe {
  background: var(--white-color);
}
section .heading,
section .row {
  width: 100%;
}

section#intro,
section.extIntro:first-of-type {
/*   background: url(./../img/mosaic_4.png); */
  min-height: 400px;
  margin-bottom: 20px;
}
section.extIntro:first-of-type {
	margin-bottom: 40px;
}
section#intro {
	margin-top: 1px;
}
section#intro .inner {
  max-width: 600px;
  margin: 150px auto;
  position: relative;
}
section.intro h1,
section.extIntro h1 {
  font-size: 40px;
  letter-spacing: 1px;
  margin: 10px 0;
}
section.extIntro {
	text-align: center;
}
section.extIntro h1 {
	margin-top: 40px;
}
section.extIntro h1 + p,
section.intro h1 + p {
  margin: 20px 0;
  letter-spacing: 1px;
  font-size: 18px;
	width: 80%;
}
section#intro .dropMenu {
  max-width: 80%;
  margin: auto;
  position: relative;
  padding-top: 20px;
}
section#intro .dropMenu .dropTrigger {
  background: var(--white-color);
  position: relative;
  height: 35px;
}
section#intro form + div {
	margin-top: 40px;
	text-align: center;
	position: relative;
}
.promo .toApp, 
section#intro a.toExt {
    color: var(--white-color);
    background: var(--red-color);
    position: relative;
}
section#intro a.toExt:hover {
	background: #f66249;
}
section#intro a.toExt:hover + .extMore {
	display: block;
}
section#intro .extMore {
	display: none;
	padding: 10px;
	position: absolute;
	top: 40px;
	left: 0;
	background: var(--white-color);
	border: 1px solid var(--light-grey-border-color);
	border-radius: 3px;	
}
section#intro .extMore div:first-of-type {
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 10px;
}
section.xl h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 10px 0;
}
section.xl .row {
/*   width: 60%; */
  margin: 20px auto;
/*   max-height: 350px; */
  align-items: center;
}
section.xl video {
	width: 100%;
}
/* section.xl .col {
  max-width: 50%;
} */
section#ext {
  background: var(--red-color);
  color: var(--white-color);
  text-align: center;
}
section#ext .toExt,
section#ext .toApp {
  text-align: center;
  width: 220px;
  height: 35px;
  line-height: 35px;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  transition: all 0.2s ease;
}
section#ext .toExt:hover,
section#ext .toApp:hover {
  background: var(--white-color);
  color: var(--red-color);
}
section#ext p {
	margin-bottom: 20px;
}
section.extIntro .row.flex {
	flex-direction: column;
	align-items: center;
}
section.extIntro .row.flex img {
	 border: 1px solid var(--light-grey-border-color); 
	 border-radius: 3px; 
	 width: 80%;
}

section .heading h1 {
  margin: 10px 0 10px 0;
}
section .heading h1:after,
section#details .heading h2:after,
section#offers .heading h2:after,
section#related .heading h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--red-color);
  border-radius: 2px;
}
section.srchRes .row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
section.srchRes .tit {
  font-weight: 600;
  width: calc( 100% - 30px );
  cursor: pointer;
  padding: 10px 15px;
}
section.srchRes input#exp {
  display: none;
}
section#companySrchRes .box {
	display: flex;
	align-items: center;
}
section#companySrchRes .box form {
	width: 100%;
}
section.srchRes .box form fieldset {
  padding: 5px 10px;
}
section.srchRes .box form.dealForm fieldset {
  padding: 10px;
  border-bottom: 1px solid var(--light-grey-border-color);
	min-width: 0;
}

section.srchRes .box form input[type="text"],
section.srchRes .box form input[type="search"] {
  background: var(--light-grey-color);;
  border: 1px solid var(--light-grey-border-color);
  border-radius: 15px;
  height: 30px;
  padding: 0 15px;
  width: calc( 100% - 30px );
  transition: all 0.2s ease;
  margin-bottom: 5px;
}
section.srchRes .box form input[type="text"]:not(:last-of-type) {
  margin-bottom: 10px;
}
section.srchRes .box form input[type="text"]:hover,
section.srchRes .box form input[type="text"]:active,
section.srchRes .box form input[type="text"]:focus {
  border-color: #d8d8d8;
}
section.srchRes .box form fieldset:first-of-type ul.srchList {
	overflow: visible;
}
section.srchRes .box form ul.srchList {
    max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: auto;
 	width: 100%;
}
section.srchRes .box form ul.srchList::-webkit-scrollbar {
    -webkit-appearance: none;
}
section.srchRes .box form ul.srchList::-webkit-scrollbar:vertical {
    width: 10px;
}
section.srchRes .box form ul.srchList::-webkit-scrollbar:horizontal {
    height: 10px;
}
section.srchRes .box form ul.srchList::-webkit-scrollbar-thumb {
    background-color: #d8d8d8;
    border-radius: 10px;
    border: 1px solid var(--white-color)fff;
}
section.srchRes .box form ul.srchList::-webkit-scrollbar-track {
    border: 1px solid var(--light-grey-border-color);
    border-radius: 10px;  
    background-color: var(--white-color); 
}
section.srchRes .box form ul.srchList li {
  font-size: 13px;
  position: relative;
  margin-bottom: 0;
	float: left;
	width: 100%;
	height: 25px;
}
section.srchRes .box form .fieldTitle {
	font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}
section.srchRes .box form ul.srchList li label {
  display: block;
  cursor: pointer;
  text-transform: capitalize;
	line-height: 25px;
	float: left;
	position: relative;
	height: 25px;
}
section.srchRes .box form ul.srchList li:hover {
  background: var(--light-grey-border-color);
}
section.srchRes .box form ul.srchList li span {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-left: 15px;
  width: calc( 100% - 15px );
}
section.srchRes .box form ul.srchList li i {
	display: inline-block;
}
section.srchRes .box form ul.srchList li label input[type="checkbox"],
section.srchRes .box form fieldset .colList li label input[type="checkbox"],
section.srchRes .box form ul.srchList li label input[type="radio"] {
  border: 1px solid var(--light-grey-border-color);
  border-radius: 3px;
  display: inline-block;
   -webkit-appearance: none;
   -moz-appearance: none;
   -ms-appearance: none;
   -o-appearance: none;
   appearance: none;
   border-radius: .125em;
   box-sizing: border-box;
   border: 0.1em solid #9E9E9E;
   box-shadow: inset 0 0 0 0 #009688;
   position: relative;
   transition: all 0.2s ease;
   cursor: pointer;
   position: absolute;
   top: 8px;
   left: 0;
}
section.srchRes .box form ul.srchList li label input[type="checkbox"],
section.srchRes .box form ul.srchList li label input[type="radio"] {
  height: 10px;
  width: 10px;
  margin-right: 10px;
}
section.srchRes .box form ul.srchList li label input[type="checkbox"]:checked,
section.srchRes .box form ul.srchList li label input[type="radio"]:checked {
  background: var(--green-color);
  border-color: var(--green-color);
}
section.srchRes .box form ul.srchList li label input[type="checkbox"]:checked,
section.srchRes .box form fieldset .colList li label input[type="checkbox"]:checked,
section.srchRes .box form ul.srchList li label input[type="radio"],
section.srchRes .box form ul.srchList li label input[type="radio"]:checked {
  border-radius: 30px;
}
section.srchRes .box form .expand {
  margin-top: 10px;
  text-align: center;
  transition: all 0.2s ease;
}
section.srchRes .box form .expand span {
  padding: 5px 10px;
  cursor: pointer;
  font-weight: 300;
}
section.srchRes .box form .expand span:hover {
  background: var(--light-grey-border-color);
  border-radius: 3px;
}
section.srchRes .box form fieldset > label {
  font-weight: 600;
}
section.srchRes .box form fieldset label {
  width: calc( 100% - 15px );
  display: block;
}
section.srchRes .box form fieldset.priceRange span {
  line-height: 30px;
  margin-right: 5px;
}
section.srchRes .box form fieldset.priceRange span:not(:first-of-type) {
  margin-left: 5px;
}
section.srchRes .box form fieldset.priceRange label,
section.srchRes .box form fieldset.colors label {
  margin-bottom: 10px;
}
section.srchRes .box form fieldset .colList li {
  display: inline-block;
  margin-right: 5px;
}
section.srchRes .box form fieldset .colList li label input[type="checkbox"] {
  height: 20px;
  width: 20px;
}
section.srchRes .box form fieldset + div {
  margin-top: 15px;
  text-align: center;
  margin-bottom: 15px;
}
section.srchRes .box form button,
.pisrch button {
  height: 30px;
  background: var(--white-color);
  border: 1px solid var(--blue-color);
  color: var(--blue-color);
  border-radius: 15px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 15px;
  transition: all 0.2s ease;
}
section.srchRes .box form button:hover,
section.srchRes .box form button:active,
.pisrch button:hover,
.pisrch button:active {
  color: var(--white-color);
  background: var(--blue-color);
}

section#prInfo h1 {
  margin: 20px 0 10px 0;
  letter-spacing: 1px;
}
section#prInfo .row {
  display: flex;
  justify-content: space-between;
}
section#prInfo .column:first-of-type {
  width: 30%;
  padding: 15px;
}
section#prInfo .column:nth-of-type(2) {
	width: 60%;
	padding: 15px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}
section#prInfo .column .main {
  height: 220px;
  width: calc( 100% - 70px );
  align-items: center;
  display: flex;
  justify-content: center;
}
section#prInfo .column .main img {
  max-height: 100%;
}
section#prInfo .column ul {
	width: 100%;
}
section#prInfo .column ul li {
  line-height: 20px;
  margin-bottom: 10px;
}
section#prInfo .column ul li span:first-of-type {
  font-weight: 600;
  margin-right: 5px;
  display: inline-block;
}
section#prInfo .column .price {
margin: 20px 0;
  font-size: 20px;
	font-weight: 600;
}
section#prInfo .column .price .retPr.cr {
  font-size: 16px;
	text-decoration: line-through;
}
section#prInfo .column .price .salPr {
  color: var(--red-color);
}  
section#prInfo .column .price .shipPr {
	display: block;
  font-size: initial;
  font-weight: 400;
      margin-top: 10px;
}
section#prInfo .column:last-of-type ul li span {
  margin-bottom: 10px;
}
section#prInfo .column:last-of-type ul li a {
  white-space: nowrap;
  border-bottom: 1px dotted #BDBDBD;
}
section#prInfo .column p {
    width: 100%;
}
section#prInfo .column p span {
  display: inline-block;
/*   width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; */
}
section#subNav {
  padding-bottom: 0;
}
section#subNav .subNav {
  text-align: center;
  min-height: 40px;
  border-bottom: 1px solid var(--light-grey-border-color);
  letter-spacing: 1px;
  line-height: 40px;
}
section#subNav .subNav li {
  display: inline-block;
  padding: 0 10px;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
}
section#subNav .subNav li a:after {
  content: '';
  width: 100%;
  border-radius: 2px;
  border-bottom: 3px solid #e3e3e3;
  position: absolute;
  bottom: -2px;
  left: 0;
}
section#subNav .subNav li a.current:after {
  border-color: var(--red-color);
}
section#subNav .subNav li a:hover:after {
  border-color: var(--red-color);
}
section#subNav .subNav li.prPrev {
  display: none;
  line-height: normal;
}
section#subNav .subNav.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.04);
  background-color: rgba(255,255,255,.84);
  min-height: 101px;
}
section#subNav .subNav.scrolled li.prPrev {
  display: block;
  width: calc( 100% - 20px );
  left: 0;
  text-align: justify;
  padding: 5px 10px 5px 10px;
  margin: 0;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid var(--light-grey-border-color);
  min-height: 50px;
  background: var(--white-color);
}
section#subNav .subNav.scrolled li.prPrev img {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}
section#subNav .subNav.scrolled li.prPrev .prevTitle {
  margin-bottom: 10px;
}
section#subNav .subNav.scrolled li.prPrev .prevPrice {
  text-align: center;
}
section#details .heading,
section#offers .heading,
section#related .heading {
  margin: 20px 0;
  position: relative;
}
section#details ul {
  width: 100%;
}
section#details .row:not(:first-of-type) {
  margin: 15px 0;
}
section#details .row ul li span:first-of-type {
	display: inline-block;
	font-weight: 600;
	margin-right: 10px;
}
section#details table td:first-of-type {
	width: 120px;
/* 	border-right: 1px solid var(--light-grey-border-color); */
}
section#details .features li {
  padding-left: 20px;
  position: relative;
}
section#details .features li::before {
  content: '○';
  position: absolute;
  top: 2px;
  left: 5px;
  font-size: 10px;
}
section#offers .row {
  max-height: 499px;
  overflow-y: hidden;
  width: 100%;
}
section#offers .row.toggle {
  max-height: none;
}
section#offers .tabHead,
section#offers .tabFoot {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 15px;
}
section#offers .tabFoot {
  margin-top: 15px;
}
section#offers form {
  display: flex;
}
section#offers form .select {
  width: 230px;
}
section#offers form .zipInp {
  border: 1px solid #e3e3e3;
  background: var(--white-color);
  padding: 0 10px;
  line-height: 30px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  width: 100px;
}
section#offers form .zipInp:hover,
section#offers form .zipInp:active,
section#offers form .zipInp:focus,
section#offers form .submitBtn:hover,
section#offers form .submitBtn:active,
section#offers form .submitBtn:focus {
  border-color: #d8d8d8;
}
section#offers form .submitBtn {
  padding: 0 10px;
  line-height: 30px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border: 1px solid #e3e3e3;
}
.resTable {
  background-color: var(--white-color);
  border: 1px solid var(--light-grey-border-color);
  border-radius: 3px;
}
.resTable,
.resTable tr,
.resTable td {
  position: relative;
}
thead tr {
  border-bottom: 1px solid var(--light-grey-border-color);
}
.resTable thead th {
  text-align: justify;
  font-weight: 600;
  padding: 10px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}
.resTable thead th:last-of-type {
	text-align: center;
}
.resTable td {
  padding: 9px 10px;
}
.resTable td .btnLink {
  padding: 3px 10px;
  width: calc( 100% - 20px );
  display: inline-block;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
  
}
.resTable .dInfo:hover:after {
  content: attr(title);
  position: absolute;
  background-color: var(--light-grey-border-color);
  z-index: 2;
  bottom: 30px;
  left: 0;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  display: block;
  white-space: nowrap;
  padding: 5px 10px;
}
.resTable td[data-type="store"] a,
.resTable .dInfo {
  border-bottom: 1px dotted #BDBDBD;
}
section#offers .tabFoot span#showAll {
  background: var(--light-grey-border-color);
  border: 1px solid #e3e3e3;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
}
section#offers .tabFoot span#showAll:hover {
  border-color: #d8d8d8;
}
section#related {
  padding-bottom: 15px;
}
section .row.flex {
  display: flex;
  flex-wrap: wrap;
}
.box.deal:not(.list) .prAction li[data-type="dealsCount"] {
	display: none;
}
.box.deal .prAction li[data-type="dealsCount"].coupon,
.box.deal .prAction li[data-type="dealsCount"].coupon:hover {
	background: #ff8c00ba !important;
	border: 1px solid #ff8c00ba !important;
}
.box.deal .imgWrap img {
  max-width: 80%;
}
#quickView .popupContent .popupMain .flexWrap ul:nth-of-type(2) li:not([data-type="dealsCount"]),
.box.deal .prAction ul:nth-of-type(2) li:not([data-type="dealsCount"]) {
  font-weight: 300 !important;
  margin-bottom: 0;
  font-size: 13px;
}
.box ul li {
  margin-bottom: 5px;
}
#quickView .popupContent .popupMain .flexWrap ul li[data-type="dealLabel"] span,
.box.deal ul li[data-type="dealLabel"] span {
/*   color: var(--green-color); */
  color: var(--red-color);
  font-weight: 600;
  position: relative;
/*   padding: 0 10px; */
}
section#storeList .row,
section#companySrchRes .row {
	margin-top: 20px;
	justify-content: space-around;
}
section#storeList .row .box {
	width: 300px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: start;
	align-items: center;
	flex-grow: unset;
}
section#storeList .row .box .imgWrap,
section#companySrchRes .row .box .imgWrap {
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
	flex-direction: column;
	border-right: 1px solid var(--light-grey-border-color);
}
section#storeList .row .box .imgWrap img,
section#companySrchRes .row .box .imgWrap img {
	max-height: 100%;
	max-width: 100%;
}
section#storeList .row .box .infoWrap {
	padding: 10px;
	width: 179px;
}
section#storeList .row .box .infoWrap ul,
section#companySrchRes .row .box .infoWrap ul {
	line-height: 25px;
}
section#storeList .row .box .infoWrap ul li:first-of-type,
section#companySrchRes .row .box .infoWrap ul li:first-of-type {
	font-weight: 600;
	width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
section#storeList .row .box .infoWrap ul li a:hover,
section#companySrchRes .row .box .infoWrap ul li a:hover {
	border-bottom: 1px dotted #BDBDBD;
}
section#storeList .row .box .imgWrap .noLogo,
section#companySrchRes .row .box .imgWrap .noLogo {
	width: 100%;
	font-size: 30px;
	text-align: center;
	color: #2b2e3457;
}
section.floatLeft.xl .row.flex .col {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
section.floatLeft.xl .row.flex .col img {
	width: 100%;
}
.owlWrap {
	width: 100%;
	margin-top: 20px;
}
.owlWrap .owl-nav {
	position: absolute;
	top: -60px;
	right: 0;
	font-size: 40px;
}
.owlWrap .owl-nav button {
	margin-left: 15px;
}
.owlWrap .owl-stage,
.owl-carousel .owl-item {
	display: flex;
}
.owlWrap .owl-item .box {
	float: left;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	width: 100%;
}
.owlWrap .owl-item .box .dealBoxTitle {
	border-bottom: 1px solid var(--light-grey-border-color);
	width: 100%;
	display: flex;
	align-items: center;
}
.owlWrap .owl-item .box .dealBoxTitle .dealTitle {
	padding: 10px;
	width: calc( 70% - 20px );
}
.owlWrap .owl-item .box .dealBoxTitle .dealTitle .title {
	line-height: 1.5;
    font-weight: 600;
    height: 21px;
    width: 100%;
}
.owlWrap .owl-item .box .dealBoxTitle .dealType {
    width: calc( 30% - 20px );
    padding: 10px;
}
.owlWrap .owl-item .box .dealBoxTitle .dealType .dealDiscount {
    color: var(--red-color);
    font-size: 16px;
}
.owlWrap .owl-item .box .dealBoxTitle .dealType span {
    display: block;
    text-align: center;
}
.owlWrap .owl-item .box .dealInfo {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.owlWrap .owl-item .box .dealInfo .imgWrap {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.owlWrap .owl-item .box .dealInfo .flexWrap {
    width: calc( 100% - 150px );
    display: flex;
}
.owlWrap .owl-item .box .dealInfo .prAction {
	width: 175px;
}
.owlWrap .owl-item .box .dealInfo .prAction li {
    text-align: center;
    border-radius: 3px;
}
.owlWrap .owl-item .box .dealInfo .prAction li[data-type="dealsCount"] {
	text-transform: uppercase;
}
.owlWrap .owl-item .box .dealInfo .prAction li[data-type="dealsCount"] a {
    display: block;
    line-height: 30px;
    cursor: pointer;
    text-transform: uppercase;
    padding: 0 5px;
    text-overflow: ellipsis;
    overflow: hidden;
}
.owlWrap .owl-item .box .flexWrap,
.owlWrap .owl-item .box .infoWrap {
	float: left;
	position: relative;
	width: 100%;
}
.owlWrap .owl-item .box .infoWrap {
	padding-bottom: 0;
	width: calc( 100% - 30px );
}
.owlWrap .owl-item .box .showPopup {
	display: none;
}
.promo {
	background: var(--dark-grey-color);
	color: var(--white-color);
	float: left;
	position: relative;
	width: 100%;
}
.mainHead {
	float: left;
	position: relative;
	width: 100%;
  background: var(--white-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.04);	
}
.promo .wrap .desk,
.promo .wrap .mob {
	display: none;
}
.promo .wrap .desk,
.promo .wrap .mob {
	width: 100%;
	padding: 10px 0;
	align-items: center;
}
.promo .wrap .desk ul {
	display: inline-flex;
	align-items: center;
}
.promo .wrap .desk ul li:not(:last-of-type) {
	padding-right: 10px;
}
.promo .wrap .desk ul li a:hover {
	text-decoration: underline;
}
.promo .wrap .toApp {
	height: 30px;
}
.promo .wrap p span:first-of-type {
	font-weight: 600;
}
.promo .wrap p span:last-of-type {
	font-size: 13px;
}
.promo .wrap button {
	background: none;
}
.showPopup {
    background: var(--white-color);
    border: 1px solid #d8d8d8;
    border-radius: 30px;
    display: block;
    line-height: 30px;
    cursor: pointer;
    padding: 0 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
	font-size: 14px;
}
/* .box:not(.mob) .showPopup {
	display: none;
} */
.box.mob .flexWrap div {
	padding-bottom: 0;
}
.box.mob .showPopup {
	display: block;
	position: absolute;
    bottom: 5px;
    left: 5px;
    width: 90%;
    font-size: 12px;
    line-height: normal;
    padding: 0 5px;
}
section.srchRes .row .column .row .box.offer.list .title {
	width: 100%;
    font-weight: 600;
}
section.srchRes .row .column .row .box.deal.list .dealBoxTitle {
    border-bottom: 1px solid var(--light-grey-border-color);
	width: 100%;
	display: flex;
	align-items: center;
}
section.srchRes .row .column .row .box.deal.list .dealTitle {
	padding: 10px;
}
section.srchRes .row .column .row .box.deal.list .dealType {
	padding: 10px;
}
#quickView .popupContent .popupMain .dealDiscount,
section.srchRes .row .column .row .box.deal.list .dealType span {
	display: block;
	text-align: center;
}
#quickView .popupContent .popupMain .dealDiscount,
section.srchRes .row .column .row .box.deal.list .dealType .dealDiscount {
	color: var(--red-color);
	font-size: 16px;
}
section.srchRes .row .column .row .box.deal.list .dealTitle .provider {
	font-weight: normal;
	width: 70%;
	display: block;
}
section.srchRes .row .column .row .box.deal.list .title {
    line-height: 1.5;
    font-weight: 600;
    height: 21px;
	width: 100%;
}
section.srchRes .row .column .row .box.list .dealInfo {
	display: flex;
    flex-direction: row;
    width: 100%;
}
section.srchRes .row .column .row .box.list .imgWrap {
	position: relative;
}
#quickView {
    display: none;
}
.box.deal #quickView .popupContent {
	width: 100%;
}
.box.deal #quickView .popupMain {
	background: var(--white-color);
}

#quickView.productPopup {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
}
#quickView .popupContent {
	display: flex;
	flex-flow: column;
	background: var(--light-grey-color);; 
	margin: auto; 
	position: relative;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	border-radius: 3px;
	border: 1px solid var(--light-grey-border-color);
	z-index: 100;
}
#quickView .popupContent .popupControl {
	padding: 15px;
}
#quickView .popupContent .popupControl span {
    padding: 5px 10px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 5px;
}
#quickView .popupContent .popupMain {
/* 	display: flex;
 */	padding: 15px;
}
#quickView .popupContent .popupMain .imgWrap {
	width: 200px;
	height: 200px;
}
#quickView .popupContent .popupMain .flexWrap {
	padding: 0 10px;
	width: calc( 100% - 220px );
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}
#quickView .popupContent .popupMain .flexWrap ul:nth-of-type(2) li {
	display: inline-block;
}
#quickView .popupContent .popupMain .flexWrap ul:nth-of-type(2) li:not(:last-of-type) {
	border-right: 1px solid #d8d8d8;
	margin-right: 10px;
	margin-bottom: 10px;
	padding-right: 10px;
}
#quickView .popupContent .popupMain .flexWrap ul li[data-type="dealLabel"] {
	float: left;
	position: relative;
}
#quickView .popupContent .popupMain .flexWrap ul li[data-type="dealLabel"]:not(:last-of-type) {
	border-right: 1px solid #d8d8d8;
margin-right: 10px;
padding-right: 10px;
}
#quickView .popupContent .popupMain .flexWrap ul li {
	line-height: 25px;
	margin-bottom: 5px;
}
#quickView .popupContent .popupMain .flexWrap ul li[data-type="deal"] {
	font-weight: 600;
	letter-spacing: 1px;
}
#quickView .popupContent .popupMain .flexWrap ul li[data-type="dealLabel"]:first-of-type span {
	padding-left: 0;
}
#quickView .popupContent .popupMain .flexWrap ul li[data-type="dealsCount"] a {
    border: 1px solid var(--green-color);
    color: var(--white-color);
    background: var(--green-color);
    height: 30px;
    line-height: 30px;
    display: block;
    width: 250px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 3px;
    margin: auto;
    position: relative;
    transition: all 0.2s ease;    
}

#quickView .popupContent .popupMain .flexWrap ul li[data-type="dealsCount"].coupon a {
	background: #ff8c00ba !important;
	border: 1px solid #ff8c00ba !important;
}

/* #quickView .popupContent .popupMain .flexWrap ul li[data-type="dealsCount"] a:hover {
    background: var(--green-color);
    color: var(--white-color);
} */
#quickView .popupContent .popupMain .flexWrap ul li[data-type="taxonomy"] span {
	position: relative;
	font-size: 13px;
	letter-spacing: 1px;
	margin-right: 10px;
	text-transform: capitalize;	
}
#quickView .popupContent .popupMain .flexWrap ul li[data-type="taxonomy"] span:not(:last-of-type):after {
	content: "\203A";
	position: absolute;
	right: -10px;
}
#quickView .popupContent .popupInfo {
	background: var(--light-grey-color);;
	padding: 15px;
}
#quickView .popupContent .popupInfo .titles {
	text-align: center;
	text-transform: uppercase;
}
#quickView .popupContent .popupInfo .titles li {
	display: inline-block;
	padding: 0 10px;
	cursor: pointer;
}
#quickView .popupContent .popupInfo .tabs .tabCont {
	display: none;
}
/* #quickView .popupContent .popupInfo input[name="tab"] {
	display: none;
}
#quickView .popupContent .popupInfo input[name="tab"]:nth-of-type(1):checked ~ .tabs > .tabCont:first-of-type,
#quickView .popupContent .popupInfo input[name="tab"]:nth-of-type(2):checked ~ .tabs > .tabCont:nth-of-type(2) {
  display: block;
}
#quickView .popupContent .popupInfo input[name="tab"]:nth-of-type(1):checked ~ .tabCtrls > .ctrl:first-of-type,
#quickView .popupContent .popupInfo input[name="tab"]:nth-of-type(2):checked ~ .tabCtrls > .ctrl:nth-of-type(2) {
	border-bottom: 3px solid var(--red-color);
} */
/* #quickView .popupContent .popupInfo .tabCtrls {
	text-align: center;
	border-bottom: 1px solid var(--light-grey-border-color);
} */
/* #quickView .popupContent .popupInfo .tabCtrls li {
	display: inline-block;
	text-transform: uppercase;
	padding: 5px 10px;
	cursor: pointer;
	border-bottom: 3px solid #e3e3e3;
} */
#quickView .popupContent .popupInfo .tabCont {
	padding: 10px 0;
}
#quickView .popupContent .popupInfo .tabCont ul li span:first-of-type {
	font-weight: 600;
}
#quickView .popupContent .popupInfo .tabCont p {
	position: relative;
    margin-bottom: 10px;
    font-weight: 600;
    padding-bottom: 10px;
    letter-spacing: 1;
}
#quickView .popupContent .popupInfo .tabCont p:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--red-color);
    border-radius: 2px;
}
#quickView .popupContent .popupInfo .tabCont.offers table  {
	background-color: var(--white-color);
    border: 1px solid var(--light-grey-border-color);
    border-radius: 3px;
}
#quickView .popupContent .popupInfo .tabCont.offers td:last-of-type a {
	padding: 3px 10px;
    width: 100px;
    font-weight: 400;
    text-transform: capitalize;
    display: inline-block;
    text-align: center;
    border: 1px solid var(--blue-color);
    border-radius: 3px;
    transition: all 0.2s;
}
#quickView .popupContent .popupInfo .tabCont.offers td:last-of-type a:hover {
	background: var(--blue-color);
	color: var(--white-color);
}
.popupMain .imgWrap a {
	height: 200px;
} 	
.selTax {
	padding: 5px 0; 
 	text-transform: capitalize;
 	font-weight: 600;
	margin-bottom: 5px;
}
.selTax > ul {
	border-bottom: 1px dotted #d8d8d8; 
}
.selTax a {
	position: relative; 
	margin-right: 10px;
	padding-right: 5px;
	border-bottom: 1px dotted #d8d8d8;
}
.selTax a:after {
	content: '>';
	position: absolute;
	right: -8px;
	bottom: 0;
}
.box .prAction ul li[data-type="taxonomy"] {
	display: none !important;
}
.catTrig .topCat,
.catTrig .topCat .minorCat {
  display: none;
}
.catTrig.clicked .topCat {
  display: block;
}
.catTrig:hover .catShow {
	display: block;
}
.topCat li:first-of-type a {
	font-weight: 600;
}
.catShow {
	display: none;
	background: var(--white-color);
	border: 1px solid var(--light-grey-border-color);
	z-index: 3;
	position: absolute;
	top: 30px;
	left: 0;
	padding: 15px;
}
.catShow ul.topCat {
	display: block;
/* 	display: flex;
  	flex-wrap: wrap;
	flex-direction: column;
	width: 100%;	 */
}
.catShow ul li {
	line-height: 25px !important;
	position: relative;
	letter-spacing: normal;
	font-size: 13px;
}
.catShow ul li a {
	display: block;
	white-space: nowrap;
	font-weight: 400;
}
.catShow ul li a:hover {
	text-decoration: underline;
}
.catShow ul li ul {
	display: none;
	position: absolute;
	top: 0;
	left: 100%;
	background: var(--white-color);
	border: 1px solid var(--light-grey-border-color);
	width: 100%;
	z-index: 4;
}
.catShow ul li ul:before {
	content: 
}
.catShow ul li ul {
	padding-left: 10px;
}
.catShow ul li:hover > ul, 
.catShow ul li.hover ul {
	display: block;
}
.minorCat {
	display: none !important;
}
.topCat li:hover > ul.minorCat {
	display: block !important;
}
.no-results-container {
	margin-top: 30px;
}
.no-results-container div {
	margin: 20px 0;
	line-height: 1.5;
}
.no-results-container div span {
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 10px;
	display: inline-block;
}
.no-results-container div a {
	border-bottom: 1px dotted #BDBDBD;
}
.errorContainer {
	text-align: center;
}
.errorContainer h1 {
	font-size: 40px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 20px 0 10px 0;
    text-align: center;
}
.errorContainer h1 +p {
	font-size: 30px;
	font-weight: 300;
	margin: 20px;
}
.errorContainer p {
	margin: 10px;
}
.errorContainer button,
.errorContainer a {
	padding: 0 10px;
	height: 30px;
	margin: 10px;
    background: var(--light-grey-border-color);
    border: 1px solid #e3e3e3;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;	
}
.errorContainer a:hover,
.errorContainer button:hover {
	border-color: #d8d8d8;
}

.box:not(.list) .infoWrap li ul {
	display: none;
}
.box .infoWrap ul.fewOffers li:not(:first-of-type) {
	list-style: disc;
	margin-left: 12px;
}
.box .infoWrap ul.fewOffers li a {
	text-decoration: underline;
}

.catShow ul li a { 
	text-transform: capitalize; 
}

.box.notavailable {
	opacity: 0.5;
/* 	outline: 3px red solid;
 */}
.box.notavailable *,
.box.notavailable *:hover {
	cursor: not-allowed !important;
	pointer-events: none !important;
}
.box.notavailable li:hover {
	color: var(--green-color) !important;
	background: var(--white-color) !important;
}
.filter-upper {
	margin-top: 50px;
	text-align: center;
}
.na {
	font-weight: 300;
}

.product-carousel {
	padding: 0;
}

.product-carousel *{
	display: block;
}

.pc-imgs {
	width: 60px;
}

.pc-img {
	margin: 4px;
	padding: 2px;
	border: 1px solid #ddd;
	display: block;
	width: 52px;
	height: 52px;
}

.pc-img.hidden {
	display: none;
}

.pc-img.sel {
	-webkit-box-shadow: 0px 0px 5px 1px rgb(246, 73, 73);
	-moz-box-shadow: 0px 0px 5px 1px rgb(246, 73, 73);
	box-shadow: 0px 0px 5px 1px rgb(246, 73, 73);
}

.pc-img img {
	max-width: 100%;
	max-height: 100%;
}

.pc-arw{
	text-align: center;
	font-size: xx-large;
	user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

section.srchRes .box .prAction li[data-type="offersCount"],
section.refresh .box .prAction li[data-type="offersCount"] {
	border: 1px solid var(--blue-color);
	color: var(--white-color);
	background: var(--blue-color);
	transition: all 0.2s ease-in;
}
li[data-type="offersCount"] a {
	font-weight: 600;
}
.box.deal #quickView .popupContent .popupControl span {
	top: 0;
}
.box.offer .showPopup {
	width: calc( 100% - 12px );
}
.goTo {
	background: var(--green-color);
    border: 1px solid var(--green-color);
    color: var(--white-color);
    display: block;
    line-height: 30px;
    cursor: pointer;
    padding: 0 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    text-align: center;
    border-radius: 15px;
}
#prInfo .goTo {
	display: inline-block;
}
section.intro {
	padding-bottom: 30px;
}
section.intro .wrap {
	width: 70%;
}
section.intro .row {
	align-items: center;
	margin-top: 30px;
}
section.intro .column {
	width: 45%;
}
section.intro .column img {
	width: 100%;
}
section.intro .cta a {
	color: var(--white-color);
    background: var(--red-color);
    position: relative;
	height: 40px;
	border-radius: 25px;
	padding: 0 20px;
	line-height: 40px;
}
section.intro h2 {
	font-size: 30px;
	width: 100%;
	padding: 20px 0;
}
section.intro h2 + p {
	font-size: 18px;
	letter-spacing: 1px;
	padding: 20px 0;
	width: 80%;
} 

.refresh h2 {
    margin: 10px 0 10px 0;	
}
.refresh h2:after {
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--red-color);
    border-radius: 2px;
}
.refresh .row {
	display: flex;
	justify-content: space-between;
	float: left;
}
#rtpcRefreshForm table {
	background-color: var(--white-color);
    border: 1px solid var(--light-grey-border-color);
    border-radius: 3px;
    margin: 20px 0;
	float: left;
}
#rtpcRefreshForm table tr {
    border-top: 1px solid var(--light-grey-border-color);
}
#rtpcRefreshForm table thead th {
    text-align: left;
    font-weight: 600;
    padding: 10px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}
#rtpcRefreshForm table td {
	padding: 10px;
	position: relative;
}
#rtpcRefreshForm table thead th:first-of-type,
#rtpcRefreshForm table td:first-of-type {
	padding-left: 35px;
}
#rtpcRefreshForm table td .prImg {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#rtpcRefreshForm table td img {
	max-width: 100%;
	max-height: 100%;
}
#rtpcRefreshForm table td a {
	border-bottom: 1px dotted #BDBDBD
}
#rtpcRefreshForm table td.price {
	min-width: 80px;
	white-space: nowrap;
}
#rtpcRefreshForm table td.price svg {
/* 	float: left; */
	margin-right: 10px;
	margin-top: 2px;
}
#rtpcRefreshForm table td.price svg.fa-long-arrow-alt-down {
	color: var(--green-color);
}
#rtpcRefreshForm table td.price svg.fa-long-arrow-alt-up {
	color: var(--red-color);	
}
#rtpcRefreshForm .tableCntrl {
	display: flex; 
	justify-content: space-between; 
	align-items: center;
	margin-top: 5px;	
}
#rtpcRefreshForm .zipc {
	display: flex;
}
#rtpcRefreshForm .zipc input[type="text"] {
	background: var(--white-color);
    border: 1px solid var(--light-grey-border-color);
    border-radius: 3px;
    padding: 0 10px;
    width: 150px;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;	
}
#rtpcRefreshForm button,
#expandAll {
	background: var(--white-color);
	border-radius: 3px;
    cursor: pointer;
    border: 1px solid var(--light-grey-border-color);    	
	line-height: 20px;
    padding: 5px 15px;
    transition: all 0.2s ease;	
}
#rtpcRefreshForm .zipc button {
	border: 1px solid var(--blue-color);
	background: var(--blue-color);
	color: var(--white-color);
	border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;
}
.epInfo {
	display: none;
	position: absolute;
    top: 0;
    right: 100%;
    width: 170px;
    background: var(--white-color);
    border: 1px solid var(--light-grey-border-color);
    padding: 10px;
    z-index: 1000;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14), 0 1px 2px rgba(0, 0, 0, 0.09);    
}
.epInfo li {
	width: 100%;
	white-space: nowrap;
	margin-bottom: 5px;
}
.epInfo li span:first-of-type {
	margin-right: 10px;
}
.epInfo li span:nth-of-type(2) {
	text-align: right;
}
.epInfo li:last-of-type {
	border-top: 1px solid var(--light-grey-border-color);
	padding-top: 5px;
}
.epInfo::before {
  content: '';
  position: absolute;
  top: 25px;
  right: -11px;
  width: 0;
  height: 0;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-left: 10px solid var(--light-grey-border-color);
}
.epInfo::after {
  content: '';
  position: absolute;
  top: 26px;
  right: -8px;
  width: 0;
  height: 0;
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  border-left: 8px solid var(--white-color);
}
#rtpcRefreshForm .hoverable svg {
	color: #adadad;
/* 	position: absolute;
    top: calc( 50% - 7px );
    right: 5px; */
    margin-left: 5px;
}
#rtpcRefreshForm .hoverable:hover > .epInfo {
	display: block;
}
#rtpcRefreshForm .price, 
#rtpcRefreshForm .hoverable {
	white-space: nowrap;
}
#rtpcRefreshForm .price {
	text-align: right;
}
#rtpcRefreshForm .hoverable {
	text-align: center;
}
#rtpcRefreshForm .sync {
	width: 100%;
    text-align: center;
    font-size: 16px;
}
#rtpcRefreshForm .sync svg {
	margin-left: 10px;
}
.refresh form p {
	margin: 10px 0;
}
.pisrch input {
	background: var(--white-color);
    border: 1px solid var(--light-grey-border-color);
    border-radius: 3px;
    padding: 5px 10px;
    width: 100%;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    margin-bottom: 10px;
	height: 20px;
}
.noRes {
	margin-top: 20px;
	text-align: center;
	width: 100%;
}
.noRes p {
	width: 100%;
	margin-bottom: 20px;
}
.noRes p a {
	margin: 0 10px;
}
.noRes p:first-of-type {
	font-size: 20px;
	font-weight: 600;
}
.selectedSearch label {
	background: var(--green-color) !important;
	color: var(--white-color);
}

.first {
	border-bottom: 0 !important;
}
.fold {
	display: none !important;
}
.fold.opened {
	display: table-row !important;
}
.vwm {
	border-top: 0 !important;
}
.vwm td {
	text-align: center;
	padding: 0 !important;
}
.vwm td a {
	display: inline-block;
	width: 98%;
	margin:auto;
	font-size: 13px;
	text-decoration: underline;
	border-bottom: 0 !important;
	border-top: 1px solid var(--light-grey-border-color);
	padding: 10px;
}
.show_more {
	color: #adadad;
	position: absolute;
	left: 10px;
	top: 25px;
}
.show_more svg {
    -moz-transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
    cursor: pointer;
}
.show_more svg.flip {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);	
}

.popup-dialog-background{
	display:none; 
	position: fixed;
	z-index: 10;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
}
.popup-dialog-container{
	display:none; 
	position: fixed; 
	top: 15%; 
	left: 20%; 
	right: 20%; 
	width: auto;
	background: var(--light-grey-color);;
	border-radius: 4px;
	z-index: 20000;
	padding: 15px;
}

.popup-dialog-container .popup-dialog-header{
	height: 25px;
	width: auto;
	padding: 5px;
	display: block;
	text-align: center;
}

.popup-dialog-container span.popup-dialog-title{
	font-size: 2em;
}

.popup-dialog-container span.popup-dialog-close{
	float: right;
}

.popup-dialog-container .popup-dialog-close:hover{
	color: red;
	cursor: pointer;
}

.popup-dialog-container .popup-dialog-content{
	width: 100%;
/* 	padding: 20px 5px;
	display: block; */
}
/* .popup-dialog-content select {
	background: var(--light-grey-color);;
    border: 1px solid var(--light-grey-border-color);
    border-radius: 3px;
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
}
.popup-dialog-content input {
	border: 1px solid var(--light-grey-border-color);
    border-radius: 3px;
    padding: 0 10px;
    height: 32px;
} */
.popup-dialog-content p {
	margin-bottom: 15px;
}
.popup-dialog-content li {
	margin-bottom: 10px;
}
/* .popup-dialog-content button {
	    cursor: pointer;
    padding: 5px 10px;
    border-radius: 3px;
    background: var(--green-color);
    color: var(--white-color);
    font-weight: 600;
    margin: 5px 0;
} */
.currLoc {
	background: var(--white-color);
	margin-right: 10px;
	display: flex;
	align-items: center;
	border: 1px solid var(--light-grey-border-color);
	border-radius: 15px;
	padding: 5px 15px;
	background: var(--light-grey-color);;
}
.currLoc svg {
	font-size: 22px;
	margin-right: 10px;
}
.gby-char {
	padding: 10px;
	border-bottom: 1px solid var(--light-grey-border-color);
}
.gby-char b {
	text-transform: capitalize;
	font-size: 18px;
	margin-right: 15px;
}
.srchFull {
	margin: auto;
	position: relative;
	margin-bottom: 50px;
}
.az09 a {
	font-size: 16px;
	padding: 10px;
	border: 1px solid var(--light-grey-border-color);
	background: var(--white-color);
	display: inline-block;
	margin-left: -5px;
	text-transform: capitalize;
}
.az09 a:hover {
	background: var(--light-grey-border-color);
}
tr.offer-expired td{
	opacity: 0.5;
	text-decoration: line-through;
}
.locWrapper {
  width: 50%;
  margin: auto;
  position: relative;
	font-size: 16px;
}
.locWrapper h1 {
	text-align: center;
  margin: 40px;
  font-size: 2em;
}
.locWrapper form {
  background: var(--white-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14), 0 1px 2px rgba(0, 0, 0, 0.09);
  padding: 30px;
  border-radius: 5px;
  margin: 40px 0;
}
.locWrapper .formGroup {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}
.locWrapper .formGroup .fgName {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.locWrapper .formGroup .fgName span:first-of-type {
  font-weight: 600;
}
.locWrapper .formGroup .fgField {
  width: 250px;
  display: flex;
}
.locWrapper .formGroup .fgField * {
	font-family: 'Open Sans', sans-serif;
  flex: 1;
  padding: 10px;
  border: 1px solid var(--light-grey-border-color);
  background: var(--white-color);
  border-radius: 25px;
  transition: all 0.2s;
  font-size: 16px;
  max-width: 100%;
}
.locWrapper .formGroup .fgField select,
.locWrapper .formGroup .fgField label {
  cursor: pointer;
}
.locWrapper .formGroup .fgField select:hover,
.locWrapper .formGroup .fgField label:hover,
.locWrapper .formGroup .fgField input:hover,
.locWrapper .formGroup .fgField *:active,
.locWrapper .formGroup .fgField *:focus {
  border: 1px solid var(--green-color);
}
.locWrapper .disclaimer {
  font-size: 14px;
  text-align: center;
  margin: 30px;
}
.locWrapper .disclaimer a {
	color: var(--red-color);
}
.locWrapper button {
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  padding: 10px;
  cursor: pointer;
  border: 1px solid var(--light-grey-border-color);
  background: var(--white-color);
  transition: all 0.2s;
  border-radius: 25px;
}
.locWrapper button:hover {
  border: 1px solid var(--green-color);
  background: var(--green-color);
  color: var(--white-color);
  font-weight: 600;
}
.locWrapper svg {
margin: 40px auto;
position: relative;
display: block;
}
.cMsg { 
    min-height: 50px; 
    position: fixed; 
    bottom:0%;
    width:100%; 
    background-color: var(--dark-grey-color); 
    opacity: 1;
    z-index: 1000;
    color: var(--white-color);
    padding: 20px 0;
    text-align: center;
 }
 .cMsg p {
 	font-weight: 600;
 	font-size: 16px;
 }
 .cMsg a {
 	text-decoration: underline;
 }
 .cMsg button {
 	background: var(--green-color);
 	color: var(--white-color);
 	padding: 10px 15px;
 	border-radius: 25px;
 	font-weight: 600;
 }
 .video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  right: calc( (100% - 160px)/2 );
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: var(--red-color);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: var(--red-color);
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: darken(#fa183d, 10%);
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
/* .shareBtn {
	border: 1px solid #e3e3e3;
	padding: 5px 15px;
	border-radius: 15px;
	display: block;
} 
.addthis_inline_share_toolbox {
	display: none;
	margin-top: 5px;
}

#at-expanding-share-button {
	bottom: 80px;
}
*/

.brandInfo ul,
.brandInfo div {
	padding: 10px;
}
.brandMain {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	align-items: center;
	font-weight: 600;
}
.brandMain .brandLogo {
	max-width: 100px;
	max-height: 100px;
}
.brandMain .bn {
	font-size: 18px;
}
.brandInfo .subtitle {
	font-weight: 600;
}
.brandInfo .subtitle + ul {
	padding-top: 0;
}
.column iframe {
	width: 100%;
	min-height: 350px;
}
.extIntro iframe {
	width: 80%;
	min-height: 600px;
}