:root {
	--mainfont: 'Inter', serif;
	--subfont: 'Inter', serif;
  }
  
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
 html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
	box-sizing: border-box;
	scroll-behavior: smooth;
  }

  body, html {
	margin: 0;
	overflow-x: hidden;
  }
    main {
	display: block;
  }

 hr {
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
  }
  pre {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
  }
  a {
	background-color: transparent;
  }
  abbr[title] {
	border-bottom: none; /* 1 */
	text-decoration: underline; /* 2 */
	text-decoration: underline dotted; /* 2 */
  }
  b,
  strong {
	font-weight: bolder;
  }
  code,
  kbd,
  samp {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
  }
 small {
	font-size: 80%;
  }
  sub,
  sup {
	font-size: 85%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
	top: -.5em;

  }
  sub {
	bottom: -0.25em;
  }
  sup {
	top: -0.5em;
  }
  img {
    border-style: none;
	width: 100%;
	height: auto;
  }
  button,
  input,
  optgroup,
  select,
  textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
  }
  button,
  input { /* 1 */
	overflow: visible;
	}
  button,
  select { /* 1 */
	text-transform: none;
  }
  button,
  [type="button"],
  [type="reset"],
  [type="submit"] {
	-webkit-appearance: button;
  }
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
  }
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
  }
 
  fieldset {
	padding: 0.35em 0.75em 0.625em;
  }
  legend {
	box-sizing: border-box; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
  }
  progress {
	vertical-align: baseline;
  }
  textarea {
	overflow: auto;
  }
  [type="checkbox"],
  [type="radio"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
  }
  [type="number"]::-webkit-inner-spin-button,
  [type="number"]::-webkit-outer-spin-button {
	height: auto;
  }
  [type="search"] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
  }
  [type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
  }
  ::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
  }
  details {
	display: block;
  }
 summary {
	display: list-item;
  }
  template {
	display: none;
  }
  [hidden] {
	display: none;
  }

 /**
   * End Reset
   */
  

.grid-container {
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
	overflow: hidden;
}

.grid-container.nopad {
    padding-left: 0;
    padding-right: 0;
	margin-bottom: 0;
}

@media print,
screen and (min-width: 40em) {
	.grid-container {
		padding-right: .9375rem;
		padding-left: .9375rem;
	}
}

.grid-container.fluid {
	padding-right: .625rem;
	padding-left: .625rem;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto
}

@media print,
screen and (min-width: 40em) {
	.grid-container.fluid {
		padding-right: .9375rem;
		padding-left: .9375rem
	}
}

.grid-container.full {
	padding-right: 0;
	padding-left: 0;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto
}

.grid-x {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}

.cell {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	min-height: 0px;
	min-width: 0px;
	padding-bottom: 1rem;
	width: 100%
}

.cell.auto {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 0px;
	flex: 1 1 0px
}

.cell.shrink {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto
}

.grid-x>.auto {
	width: auto
}

.grid-x>.shrink {
	width: auto
}

.grid-x>.small-shrink,
.grid-x>.small-full,
.grid-x>.small-0,
.grid-x>.small-1,
.grid-x>.small-2,
.grid-x>.small-3,
.grid-x>.small-4,
.grid-x>.small-5,
.grid-x>.small-6,
.grid-x>.small-7,
.grid-x>.small-8,
.grid-x>.small-9,
.grid-x>.small-10,
.grid-x>.small-11,
.grid-x>.small-12 {
	-ms-flex-preferred-size: auto;
	flex-basis: auto
}

@media print,
screen and (min-width: 40em) {
	.grid-x>.medium-shrink,
	.grid-x>.medium-full,
	.grid-x>.medium-1,
	.grid-x>.medium-2,
	.grid-x>.medium-3,
	.grid-x>.medium-4,
	.grid-x>.medium-5,
	.grid-x>.medium-6,
	.grid-x>.medium-7,
	.grid-x>.medium-8,
	.grid-x>.medium-9,
	.grid-x>.medium-10,
	.grid-x>.medium-11,
	.grid-x>.medium-12 {
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}
}

@media print,
screen and (min-width: 64em) {
	.grid-x>.large-shrink,
	.grid-x>.large-full,
	.grid-x>.large-1,
	.grid-x>.large-2,
	.grid-x>.large-3,
	.grid-x>.large-4,
	.grid-x>.large-5,
	.grid-x>.large-6,
	.grid-x>.large-7,
	.grid-x>.large-8,
	.grid-x>.large-9,
	.grid-x>.large-10,
	.grid-x>.large-11,
	.grid-x>.large-12 {
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}
}

.grid-x>.small-0,
.grid-x>.small-1,
.grid-x>.small-2,
.grid-x>.small-3,
.grid-x>.small-4,
.grid-x>.small-5,
.grid-x>.small-6,
.grid-x>.small-7,
.grid-x>.small-8,
.grid-x>.small-9,
.grid-x>.small-10,
.grid-x>.small-11,
.grid-x>.small-12 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto
}

.grid-x>.small-0 {
	width: 0%
}

.grid-x>.small-1 {
	width: 8.33333%
}

.grid-x>.small-2 {
	width: 16.66667%
}

.grid-x>.small-3 {
	width: 25%
}

.grid-x>.small-4 {
	width: 33.33333%
}

.grid-x>.small-5 {
	width: 41.66667%
}

.grid-x>.small-6 {
	width: 50%
}

.grid-x>.small-7 {
	width: 58.33333%
}

.grid-x>.small-8 {
	width: 66.66667%
}

.grid-x>.small-9 {
	width: 75%
}

.grid-x>.small-10 {
	width: 83.33333%
}

.grid-x>.small-11 {
	width: 91.66667%
}

.grid-x>.small-12 {
	width: 100%;
}

@media print,
screen and (min-width: 40em) {
	.grid-x>.medium-auto {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 0px;
		flex: 1 1 0px;
		width: auto
	}
	.grid-x>.medium-shrink,
	.grid-x>.medium-1,
	.grid-x>.medium-2,
	.grid-x>.medium-3,
	.grid-x>.medium-4,
	.grid-x>.medium-5,
	.grid-x>.medium-6,
	.grid-x>.medium-7,
	.grid-x>.medium-8,
	.grid-x>.medium-9,
	.grid-x>.medium-10,
	.grid-x>.medium-11,
	.grid-x>.medium-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto
	}
	.grid-x>.medium-shrink {
		width: auto
	}
	.grid-x>.medium-1 {
		width: 8.33333%
	}
	.grid-x>.medium-2 {
		width: 16.66667%
	}
	.grid-x>.medium-3 {
		width: 25%
	}
	.grid-x>.medium-4 {
		width: 33.33333%
	}
	.grid-x>.medium-5 {
		width: 41.66667%
	}
	.grid-x>.medium-6 {
		width: 50%
	}
	.grid-x>.medium-7 {
		width: 58.33333%
	}
	.grid-x>.medium-8 {
		width: 66.66667%
	}
	.grid-x>.medium-9 {
		width: 75%
	}
	.grid-x>.medium-10 {
		width: 83.33333%
	}
	.grid-x>.medium-11 {
		width: 91.66667%
	}
	.grid-x>.medium-12 {
		width: 100%
	}
}

@media print,
screen and (min-width: 64em) {
	.grid-x>.large-auto {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 0px;
		flex: 1 1 0px;
		width: auto
	}
	.grid-x>.large-shrink,
	.grid-x>.large-1,
	.grid-x>.large-2,
	.grid-x>.large-3,
	.grid-x>.large-4,
	.grid-x>.large-5,
	.grid-x>.large-6,
	.grid-x>.large-7,
	.grid-x>.large-8,
	.grid-x>.large-9,
	.grid-x>.large-10,
	.grid-x>.large-11,
	.grid-x>.large-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto
	}
	.grid-x>.large-shrink {
		width: auto
	}
	.grid-x>.large-1 {
		width: 8.33333%
	}
	.grid-x>.large-2 {
		width: 16.66667%
	}
	.grid-x>.large-3 {
		width: 25%
	}
	.grid-x>.large-4 {
		width: 33.33333%
	}
	.grid-x>.large-5 {
		width: 41.66667%
	}
	.grid-x>.large-6 {
		width: 50%
	}
	.grid-x>.large-7 {
		width: 58.33333%
	}
	.grid-x>.large-8 {
		width: 66.66667%
	}
	.grid-x>.large-9 {
		width: 75%
	}
	.grid-x>.large-10 {
		width: 83.33333%
	}
	.grid-x>.large-11 {
		width: 91.66667%
	}
	.grid-x>.large-12 {
		width: 100%
	}
}

.grid-margin-x:not(.grid-x)>.cell {
	width: auto
}

.grid-margin-y:not(.grid-y)>.cell {
	height: auto
}

.grid-margin-x {
	margin-left: -.625rem;
	margin-right: -.625rem
}

@media print,
screen and (min-width: 40em) {
	.grid-margin-x {
		margin-left: -.9375rem;
		margin-right: -.9375rem
	}
}

.grid-margin-x>.cell {
	width: calc(100% - 1.25rem);
	margin-left: .625rem;
	margin-right: .625rem
}

@media print,
screen and (min-width: 40em) {
	.grid-margin-x>.cell {
		width: calc(100% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem
	}
}

.grid-margin-x>.auto {
	width: auto
}

.grid-margin-x>.shrink {
	width: auto
}

.grid-margin-x>.small-1 {
	width: calc(8.33333% - 1.25rem)
}

.grid-margin-x>.small-2 {
	width: calc(16.66667% - 1.25rem)
}

.grid-margin-x>.small-3 {
	width: calc(25% - 1.25rem)
}

.grid-margin-x>.small-4 {
	width: calc(33.33333% - 1.25rem)
}

.grid-margin-x>.small-5 {
	width: calc(41.66667% - 1.25rem)
}

.grid-margin-x>.small-6 {
	width: calc(50% - 1.25rem)
}

.grid-margin-x>.small-7 {
	width: calc(58.33333% - 1.25rem)
}

.grid-margin-x>.small-8 {
	width: calc(66.66667% - 1.25rem)
}

.grid-margin-x>.small-9 {
	width: calc(75% - 1.25rem)
}

.grid-margin-x>.small-10 {
	width: calc(83.33333% - 1.25rem)
}

.grid-margin-x>.small-11 {
	width: calc(91.66667% - 1.25rem)
}

.grid-margin-x>.small-12 {
	width: calc(100% - 1.25rem)
}

@media print,
screen and (min-width: 40em) {
	.grid-margin-x>.auto {
		width: auto
	}
	.grid-margin-x>.shrink {
		width: auto
	}
	.grid-margin-x>.small-1 {
		width: calc(8.33333% - 1.875rem)
	}
	.grid-margin-x>.small-2 {
		width: calc(16.66667% - 1.875rem)
	}
	.grid-margin-x>.small-3 {
		width: calc(25% - 1.875rem)
	}
	.grid-margin-x>.small-4 {
		width: calc(33.33333% - 1.875rem)
	}
	.grid-margin-x>.small-5 {
		width: calc(41.66667% - 1.875rem)
	}
	.grid-margin-x>.small-6 {
		width: calc(50% - 1.875rem)
	}
	.grid-margin-x>.small-7 {
		width: calc(58.33333% - 1.875rem)
	}
	.grid-margin-x>.small-8 {
		width: calc(66.66667% - 1.875rem)
	}
	.grid-margin-x>.small-9 {
		width: calc(75% - 1.875rem)
	}
	.grid-margin-x>.small-10 {
		width: calc(83.33333% - 1.875rem)
	}
	.grid-margin-x>.small-11 {
		width: calc(91.66667% - 1.875rem)
	}
	.grid-margin-x>.small-12 {
		width: calc(100% - 1.875rem)
	}
	.grid-margin-x>.medium-auto {
		width: auto
	}
	.grid-margin-x>.medium-shrink {
		width: auto
	}
	.grid-margin-x>.medium-1 {
		width: calc(8.33333% - 1.875rem)
	}
	.grid-margin-x>.medium-2 {
		width: calc(16.66667% - 1.875rem)
	}
	.grid-margin-x>.medium-3 {
		width: calc(25% - 1.875rem)
	}
	.grid-margin-x>.medium-4 {
		width: calc(33.33333% - 1.875rem)
	}
	.grid-margin-x>.medium-5 {
		width: calc(41.66667% - 1.875rem)
	}
	.grid-margin-x>.medium-6 {
		width: calc(50% - 1.875rem)
	}
	.grid-margin-x>.medium-7 {
		width: calc(58.33333% - 1.875rem)
	}
	.grid-margin-x>.medium-8 {
		width: calc(66.66667% - 1.875rem)
	}
	.grid-margin-x>.medium-9 {
		width: calc(75% - 1.875rem)
	}
	.grid-margin-x>.medium-10 {
		width: calc(83.33333% - 1.875rem)
	}
	.grid-margin-x>.medium-11 {
		width: calc(91.66667% - 1.875rem)
	}
	.grid-margin-x>.medium-12 {
		width: calc(100% - 1.875rem)
	}
}

@media print,
screen and (min-width: 64em) {
	.grid-margin-x>.large-auto {
		width: auto
	}
	.grid-margin-x>.large-shrink {
		width: auto
	}
	.grid-margin-x>.large-1 {
		width: calc(8.33333% - 1.875rem)
	}
	.grid-margin-x>.large-2 {
		width: calc(16.66667% - 1.875rem)
	}
	.grid-margin-x>.large-3 {
		width: calc(25% - 1.875rem)
	}
	.grid-margin-x>.large-4 {
		width: calc(33.33333% - 1.875rem)
	}
	.grid-margin-x>.large-5 {
		width: calc(41.66667% - 1.875rem)
	}
	.grid-margin-x>.large-6 {
		width: calc(50% - 1.875rem)
	}
	.grid-margin-x>.large-7 {
		width: calc(58.33333% - 1.875rem)
	}
	.grid-margin-x>.large-8 {
		width: calc(66.66667% - 1.875rem)
	}
	.grid-margin-x>.large-9 {
		width: calc(75% - 1.875rem)
	}
	.grid-margin-x>.large-10 {
		width: calc(83.33333% - 1.875rem)
	}
	.grid-margin-x>.large-11 {
		width: calc(91.66667% - 1.875rem)
	}
	.grid-margin-x>.large-12 {
		width: calc(100% - 1.875rem)
	}
}

.grid-padding-x .grid-padding-x {
	margin-right: -.625rem;
	margin-left: -.625rem
}

@media print,
screen and (min-width: 40em) {
	.grid-padding-x .grid-padding-x {
		margin-right: -.9375rem;
		margin-left: -.9375rem
	}
}

.grid-container:not(.full)>.grid-padding-x {
	margin-right: -.625rem;
	margin-left: -.625rem
}

@media print,
screen and (min-width: 40em) {
	.grid-container:not(.full)>.grid-padding-x {
		margin-right: .9375rem;
		margin-left: .9375rem
	}
}

.grid-padding-x>.cell {
	padding-right: .625rem;
	padding-left: .625rem
}

@media print,
screen and (min-width: 40em) {
	.grid-padding-x>.cell {
		padding-right: .9375rem;
		padding-left: .9375rem
	}
}

.small-up-1>.cell {
	width: 100%
}

.small-up-2>.cell {
	width: 50%
}

.small-up-3>.cell {
	width: 33.33333%
}

.small-up-4>.cell {
	width: 25%
}

.small-up-5>.cell {
	width: 20%
}

.small-up-6>.cell {
	width: 16.66667%
}

.small-up-7>.cell {
	width: 14.28571%
}

.small-up-8>.cell {
	width: 12.5%
}

@media print,
screen and (min-width: 40em) {
	.medium-up-1>.cell {
		width: 100%
	}
	.medium-up-2>.cell {
		width: 50%
	}
	.medium-up-3>.cell {
		width: 33.33333%
	}
	.medium-up-4>.cell {
		width: 25%
	}
	.medium-up-5>.cell {
		width: 20%
	}
	.medium-up-6>.cell {
		width: 16.66667%
	}
	.medium-up-7>.cell {
		width: 14.28571%
	}
	.medium-up-8>.cell {
		width: 12.5%
	}
}

@media print,
screen and (min-width: 64em) {
	.large-up-1>.cell {
		width: 100%
	}
	.large-up-2>.cell {
		width: 50%
	}
	.large-up-3>.cell {
		width: 33.33333%
	}
	.large-up-4>.cell {
		width: 25%
	}
	.large-up-5>.cell {
		width: 20%
	}
	.large-up-6>.cell {
		width: 16.66667%
	}
	.large-up-7>.cell {
		width: 14.28571%
	}
	.large-up-8>.cell {
		width: 12.5%
	}
}


.grid-margin-x.small-up-1>.cell {
	width: calc(100% - 1.25rem)
}

.grid-margin-x.small-up-2>.cell {
	width: calc(50% - 1.25rem)
}

.grid-margin-x.small-up-3>.cell {
	width: calc(33.33333% - 1.25rem)
}

.grid-margin-x.small-up-4>.cell {
	width: calc(25% - 1.25rem)
}

.grid-margin-x.small-up-5>.cell {
	width: calc(20% - 1.25rem)
}

.grid-margin-x.small-up-6>.cell {
	width: calc(16.66667% - 1.25rem)
}

.grid-margin-x.small-up-7>.cell {
	width: calc(14.28571% - 1.25rem)
}

.grid-margin-x.small-up-8>.cell {
	width: calc(12.5% - 1.25rem)
}

@media print,
screen and (min-width: 40em) {
	.grid-margin-x.small-up-1>.cell {
		width: calc(100% - 1.875rem)
	}
	.grid-margin-x.small-up-2>.cell {
		width: calc(50% - 1.875rem)
	}
	.grid-margin-x.small-up-3>.cell {
		width: calc(33.33333% - 1.875rem)
	}
	.grid-margin-x.small-up-4>.cell {
		width: calc(25% - 1.875rem)
	}
	.grid-margin-x.small-up-5>.cell {
		width: calc(20% - 1.875rem)
	}
	.grid-margin-x.small-up-6>.cell {
		width: calc(16.66667% - 1.875rem)
	}
	.grid-margin-x.small-up-7>.cell {
		width: calc(14.28571% - 1.875rem)
	}
	.grid-margin-x.small-up-8>.cell {
		width: calc(12.5% - 1.875rem)
	}
	.grid-margin-x.medium-up-1>.cell {
		width: calc(100% - 1.875rem)
	}
	.grid-margin-x.medium-up-2>.cell {
		width: calc(50% - 1.875rem)
	}
	.grid-margin-x.medium-up-3>.cell {
		width: calc(33.33333% - 1.875rem)
	}
	.grid-margin-x.medium-up-4>.cell {
		width: calc(25% - 1.875rem)
	}
	.grid-margin-x.medium-up-5>.cell {
		width: calc(20% - 1.875rem)
	}
	.grid-margin-x.medium-up-6>.cell {
		width: calc(16.66667% - 1.875rem)
	}
	.grid-margin-x.medium-up-7>.cell {
		width: calc(14.28571% - 1.875rem)
	}
	.grid-margin-x.medium-up-8>.cell {
		width: calc(12.5% - 1.875rem)
	}
}

@media print,
screen and (min-width: 64em) {
	.grid-margin-x.large-up-1>.cell {
		width: calc(100% - 1.875rem)
	}
	.grid-margin-x.large-up-2>.cell {
		width: calc(50% - 1.875rem)
	}
	.grid-margin-x.large-up-3>.cell {
		width: calc(33.33333% - 1.875rem)
	}
	.grid-margin-x.large-up-4>.cell {
		width: calc(25% - 1.875rem)
	}
	.grid-margin-x.large-up-5>.cell {
		width: calc(20% - 1.875rem)
	}
	.grid-margin-x.large-up-6>.cell {
		width: calc(16.66667% - 1.875rem)
	}
	.grid-margin-x.large-up-7>.cell {
		width: calc(14.28571% - 1.875rem)
	}
	.grid-margin-x.large-up-8>.cell {
		width: calc(12.5% - 1.875rem)
	}
}
@media print,
screen and (min-width: 90em) {
	.grid-margin-x.xlarge-up-1>.cell {
		width: calc(100% - 1.875rem)
	}
	.grid-margin-x.xlarge-up-2>.cell {
		width: calc(50% - 1.875rem)
	}
	.grid-margin-x.xlarge-up-3>.cell {
		width: calc(33.33333% - 1.875rem)
	}
	.grid-margin-x.xlarge-up-4>.cell {
		width: calc(25% - 1.875rem)
	}
	.grid-margin-x.xlarge-up-5>.cell {
		width: calc(20% - 1.875rem)
	}
	.grid-margin-x.xlarge-up-6>.cell {
		width: calc(16.66667% - 1.875rem)
	}
	.grid-margin-x.xlarge-up-7>.cell {
		width: calc(14.28571% - 1.875rem)
	}
	.grid-margin-x.xlarge-up-8>.cell {
		width: calc(12.5% - 1.875rem)
	}
}

@media print,
screen and (min-width: 120em) {
	.grid-margin-x.xxlarge-up-1>.cell {
		width: calc(100% - 1.875rem)
	}
	.grid-margin-x.xxlarge-up-2>.cell {
		width: calc(50% - 1.875rem)
	}
	.grid-margin-x.xxlarge-up-3>.cell {
		width: calc(33.33333% - 1.875rem)
	}
	.grid-margin-x.xxlarge-up-4>.cell {
		width: calc(25% - 1.875rem)
	}
	.grid-margin-x.xxlarge-up-5>.cell {
		width: calc(20% - 1.875rem)
	}
	.grid-margin-x.xxlarge-up-6>.cell {
		width: calc(16.66667% - 1.875rem)
	}
	.grid-margin-x.xxlarge-up-7>.cell {
		width: calc(14.28571% - 1.875rem)
	}
	.grid-margin-x.xxlarge-up-8>.cell {
		width: calc(12.5% - 1.875rem)
	}
}

.small-offset-0 {
	margin-left: 0%
}

.grid-margin-x>.small-offset-0 {
	margin-left: calc(0% + .625rem)
}
.small-offset-half {
	margin-left: 4.16665%
}
.small-offset-1 {
	margin-left: 8.33333%
}

.grid-margin-x>.small-offset-1 {
	margin-left: calc(8.33333% + .625rem)
}

.small-offset-2 {
	margin-left: 16.66667%
}

.grid-margin-x>.small-offset-2 {
	margin-left: calc(16.66667% + .625rem)
}

.small-offset-3 {
	margin-left: 25%
}

.grid-margin-x>.small-offset-3 {
	margin-left: calc(25% + .625rem)
}

.small-offset-4 {
	margin-left: 33.33333%
}

.grid-margin-x>.small-offset-4 {
	margin-left: calc(33.33333% + .625rem)
}

.small-offset-5 {
	margin-left: 41.66667%
}

.grid-margin-x>.small-offset-5 {
	margin-left: calc(41.66667% + .625rem)
}

.small-offset-6 {
	margin-left: 50%
}

.grid-margin-x>.small-offset-6 {
	margin-left: calc(50% + .625rem)
}

.small-offset-7 {
	margin-left: 58.33333%
}

.grid-margin-x>.small-offset-7 {
	margin-left: calc(58.33333% + .625rem)
}

.small-offset-8 {
	margin-left: 66.66667%
}

.grid-margin-x>.small-offset-8 {
	margin-left: calc(66.66667% + .625rem)
}

.small-offset-9 {
	margin-left: 75%
}

.grid-margin-x>.small-offset-9 {
	margin-left: calc(75% + .625rem)
}

.small-offset-10 {
	margin-left: 83.33333%
}

.grid-margin-x>.small-offset-10 {
	margin-left: calc(83.33333% + .625rem)
}

.small-offset-11 {
	margin-left: 91.66667%
}

.grid-margin-x>.small-offset-11 {
	margin-left: calc(91.66667% + .625rem)
}

@media print,
screen and (min-width: 40em) {
	.medium-offset-0 {
		margin-left: 0%
	}
	.grid-margin-x>.medium-offset-0 {
		margin-left: calc(0% + .9375rem)
	}
	.medium-offset-1 {
		margin-left: 8.33333%
	}
	.grid-margin-x>.medium-offset-1 {
		margin-left: calc(8.33333% + .9375rem)
	}
	.medium-offset-2 {
		margin-left: 16.66667%
	}
	.grid-margin-x>.medium-offset-2 {
		margin-left: calc(16.66667% + .9375rem)
	}
	.medium-offset-3 {
		margin-left: 25%
	}
	.grid-margin-x>.medium-offset-3 {
		margin-left: calc(25% + .9375rem)
	}
	.medium-offset-4 {
		margin-left: 33.33333%
	}
	.grid-margin-x>.medium-offset-4 {
		margin-left: calc(33.33333% + .9375rem)
	}
	.medium-offset-5 {
		margin-left: 41.66667%
	}
	.grid-margin-x>.medium-offset-5 {
		margin-left: calc(41.66667% + .9375rem)
	}
	.medium-offset-6 {
		margin-left: 50%
	}
	.grid-margin-x>.medium-offset-6 {
		margin-left: calc(50% + .9375rem)
	}
	.medium-offset-7 {
		margin-left: 58.33333%
	}
	.grid-margin-x>.medium-offset-7 {
		margin-left: calc(58.33333% + .9375rem)
	}
	.medium-offset-8 {
		margin-left: 66.66667%
	}
	.grid-margin-x>.medium-offset-8 {
		margin-left: calc(66.66667% + .9375rem)
	}
	.medium-offset-9 {
		margin-left: 75%
	}
	.grid-margin-x>.medium-offset-9 {
		margin-left: calc(75% + .9375rem)
	}
	.medium-offset-10 {
		margin-left: 83.33333%
	}
	.grid-margin-x>.medium-offset-10 {
		margin-left: calc(83.33333% + .9375rem)
	}
	.medium-offset-11 {
		margin-left: 91.66667%
	}
	.grid-margin-x>.medium-offset-11 {
		margin-left: calc(91.66667% + .9375rem)
	}
	.absolute-bottom-ml {
		position: absolute; bottom: 0;
	}
}

@media print,
screen and (min-width: 64em) {
	.large-offset-0 {
		margin-left: 0%
	}
	.grid-margin-x>.large-offset-0 {
		margin-left: calc(0% + .9375rem)
	}
	.large-offset-half {
		margin-left: 4.166664%
	}
	.large-offset-1 {
		margin-left: 8.33333%
	}
	.grid-margin-x>.large-offset-1 {
		margin-left: calc(8.33333% + .9375rem)
	}
	.large-offset-2 {
		margin-left: 16.66667%
	}
	.grid-margin-x>.large-offset-2 {
		margin-left: calc(16.66667% + .9375rem)
	}
	.large-offset-3 {
		margin-left: 25%
	}
	.grid-margin-x>.large-offset-3 {
		margin-left: calc(25% + .9375rem)
	}
	.large-offset-4 {
		margin-left: 33.33333%
	}
	.grid-margin-x>.large-offset-4 {
		margin-left: calc(33.33333% + .9375rem)
	}
	.large-offset-5 {
		margin-left: 41.66667%
	}
	.grid-margin-x>.large-offset-5 {
		margin-left: calc(41.66667% + .9375rem)
	}
	.large-offset-6 {
		margin-left: 50%
	}
	.grid-margin-x>.large-offset-6 {
		margin-left: calc(50% + .9375rem)
	}
	.large-offset-7 {
		margin-left: 58.33333%
	}
	.grid-margin-x>.large-offset-7 {
		margin-left: calc(58.33333% + .9375rem)
	}
	.large-offset-8 {
		margin-left: 66.66667%
	}
	.grid-margin-x>.large-offset-8 {
		margin-left: calc(66.66667% + .9375rem)
	}
	.large-offset-9 {
		margin-left: 75%
	}
	.grid-margin-x>.large-offset-9 {
		margin-left: calc(75% + .9375rem)
	}
	.large-offset-10 {
		margin-left: 83.33333%
	}
	.grid-margin-x>.large-offset-10 {
		margin-left: calc(83.33333% + .9375rem)
	}
	.large-offset-11 {
		margin-left: 91.66667%
	}
	.grid-margin-x>.large-offset-11 {
		margin-left: calc(91.66667% + .9375rem)
	}
}


/* Feb 2020 Updates */

a {
	text-decoration: none;
	color: inherit;
}

.blue, .blue a {
	color: #2997ff!important;
	transition: color 350ms ease;
}

.over-text-qtr {
    position: absolute;
    left: 50%;
	top: 20%;
	margin-top: .75rem;
    transform: translate(-50%,-50%);
    width: 100%;
    font-weight: 600;
}

.over-text-qtr h3 {
	margin: 1rem;
}

.action {
    position: absolute;
    margin-top: 1rem;
    left: 3rem;
}

#product-nav .cell{
    position: relative;
}

.cell {
	overflow: hidden;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

h1, h2 {
    font-family:  var(--mainfont);
}

h2, h3, h4, a, p, li, ul, table  {
    font-family:  var(--subfont);
}

h1, .h1-title {
	margin: 0.67em 0;
	font-size: 2.7rem;
	font-weight: 600;
  }


h2 {
    font-size: 2.6rem;
	letter-spacing: .5px;
	font-weight: 500;
}

h3 {
	font-size: 1.25rem;
	font-weight: 500;
}

.grid-x .cell ul li .dealer-logo, .grid-x .cell .dealer-logo {
	width: 300px;
	margin: auto;
	float: center;
}

.grid-container {
     position: relative;
}

.tall {
    padding: 5rem 0;
}


.btn.btn-link {
    font-size: 1.2rem;
}

.btn.btn-link:hover {
    text-decoration: underline;
}


.white h1, .white h2, .white h3, .white p  {
    color: white;
}

.material-but.white {
	color: white;
	border-color: white;
}

.material-but.black {
	color: black;
	border-color: black;
}

.over-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
 }

.abs-text-left {
    position: absolute;
    margin-top: -30%;
    margin-left: 15%;

}

.abs-text-left-2 {
    position: absolute;
    left: 25%;
    top: 50%;
    transform: translate(-50%,-50%);
    margin-left: 3rem;
}

h1 sup {
    font-size: 1.5rem;
}
.large-heading sup {
	font-size: 2rem;
	vertical-align: super;
	position: inherit;
}

@media (max-width: 768px) {
    .over-text.right {
        left: 55%;
        top: 20%;
    }

    .abs-text-left-2 {
        top: 18%;
        
    }
	h1, .h1-title {
	font-size: 1.5rem;
	}
	h1 sup, .h1-title sup {
		font-size: 1rem;
	}

	

}

@media (max-width: 500px) {

   .grid-x .over-text.top-small {
        top: 23%;
    }
    .scale-up-135 img {
        width: 135%;
    }
    .scale-up-115 img {
        width: 115%;
    }
}

@media (max-width: 800px) {
.over-text.top-small {
    top: 20%;
}
}

.over {
    position: absolute;
}

.align-center {
    justify-content: center;
}
.align-right {
    justify-content: right;
}
.text-center {
    text-align: center;
}

.center {
      justify-content: center;
  }

  #brand-home img {
    max-width: 200px;
    max-height: 80px;
    padding: 5%;
    margin: 0 0 0 1rem;
}

.align-middle {
    -ms-flex-align: center;
    align-items: center
}

/* BUTTON */

.material-but {
    display: inline-block;
    position: relative;
    border: 2px solid #D0D0D0;
    border-radius: 6px;
    padding: 7px 11px 0 11px;
    margin-top: 1.2rem;
    min-width: 150px;
    height: 44px;
    vertical-align: middle;
    text-align: center;
    color: #423F3F;
    background-color: transparent;
    font-family:  var(--subfont);
    font-size: 16px;
    font-weight: 600;
    line-height: 40px;
    transition: .2s ease-out;
}

button.material-but {
    height: 50px;
    padding: 3px 22px 0 22px;
}

.material-but:hover,
.material-but:focus,
.material-but.solid {
    background-color: #303030;
    color: white;
    transition: .2s ease-out;
}

.material-but.white {
    color:white;
}

.brands .cell img, .trust .cell img {
	max-width: 180px;
	max-height: 65px;
}
.brands .cell {
	margin-top: 1rem;
	padding: 0 0 0 0rem;
}

.trust .cell img {
	max-width: 100px;
	max-height: 65px;
}

footer {
	background-color: white;
	padding: 3rem 1% 3rem 1%;
}

footer ul {
	list-style-type: none;
	margin-bottom: 6rem;
}

#footer-nav .menu li>a {
    color: black;
	font-size: 1rem;
	line-height: 2;
    font-weight: 400;
  
}


#footer-nav .menu li>a:hover {
	color: #1967D2;
}

 #site-credits {
	margin-top: 5rem;
	padding-bottom: 2rem;
	font-size: .75rem;
}
#site-credits a, #site-credits p {
	margin: 1rem;
	color: #333;
    padding: .25rem 0;
    font-size: .75rem;
}

.icon-small {
width: 40px;
padding-left: 3rem;
}

/* Base 2019 Version */


#site-logo img {
	width: auto;
	object-fit: contain;
    max-width: 225px;
	min-height: 60px;

	margin: 0rem 0rem 0rem 1rem;
  }

body.active-banner {
    transition: padding-top .4s cubic-bezier(1, -.4, .44, .985);
    padding-top: 0
}

body.active-banner.banner-open {
    padding-top: 60px
}

#promo-banner {
    background: #000;
    color: #fff;
    position: fixed;
    transition: top .4s cubic-bezier(1, -.4, .44, .985);
    top: -80px;
    width: 100%;
    z-index: 11
}

#promo-banner.banner-open {
    top: 0
}

#promo-banner .grid-container {
    background-size: cover;
    position: relative
}

#promo-banner .grid-container .promo-details {
    color: #e4e4e4
}


#promo-banner .grid-container .promo-details .details {
    color: #e4e4e4;
    text-decoration: underline
}

#promo-banner .grid-container .promo-details .details:hover {
    text-decoration: none
}

#promo-banner h3 {
    line-height: 1.1;
    margin-bottom: 0
}

@media screen and (min-width:90em) and (max-width:89.9375em) {
    #promo-banner h3 {
        font-size: 2rem
    }
}

@media screen and (min-width:64.063em) and (max-width:74.9375em) {
    #promo-banner h3 {
        font-size: 1.6rem
    }
}

#promo-banner .banner-cta {
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: .8rem;
    position: relative;
}

#promo-banner .banner-cta:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff
}

@media screen and (max-width:33.188em) {
    #promo-banner .banner-cta:after {
        width: 3.2rem
    }
}

#promo-banner #close-banner {
    position: absolute;
    top: 50%;
    right: 1rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

#promo-banner #close-banner img,
#promo-banner #close-banner svg {
    height: 1rem
}
#cartProducts {
	overflow-y: auto;
	max-height: 600px;
 }

@media screen and (max-width:47.938em) {
    #promo-banner h3 {
        font-size: 1.1rem
    }
    .masonry-grid .masonry-cell.numbered-highlight>.grid-x.highlight-content.black {
        position: relative;
        background: #000;
        margin-bottom: 1.5625rem;
        padding-bottom: 3rem
    }
}

@media print,
screen and (min-width:48em) {
    #promo-banner h3 {
        font-size: 1.5rem
    }
}

@media print,
screen and (max-width:47.5em) {
    #promo-banner h3 {
        font-size: 1rem
    }

	.p-6 p {
		margin: 1rem 1.5rem;
	}
	#cartProducts {
		max-height: 450px;
	}
}

#promo-banner .grid-container {
    height: 60px;
    line-height: 1.2rem
}

.details {
    font-style: italic;
    font-size: .8rem
}


@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

.close {
    color: gray;
    float: right;
    font-size: 40px;
    font-weight: 700
}

.close:focus,
.close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer
}



@media screen and (max-width:62.56em) {
 
    #mmc1.megaMenuContent, #mmc2.megaMenuContent, #mmc3.megaMenuContent, #mmc4.megaMenuContent {
   		margin-top: 60px;
		padding: 0 0 0 0;
		
	}
	#mmc1 img, #mmc2 img, #mmc3 img, #mmc4 img {
		max-width: 175px;
		margin: 0rem auto;
        display: block;
	}
	.nav-tile {
		margin-bottom: 0rem;
	}
	.hide-for-small {
		display: none;
	}
	.topright.compare {
		height: 20px;
	}

}

@media screen and (min-width:62.56em) {
	.show-for-small {
		display: block;
	}
	.margin-left-1-lm {
		margin-left: 1rem;
	}
}

@media (min-width:25.56em) and (max-width:62.56em) {
    #mmc1 img, #mmc2 img, #mmc3 img, #mmc4 img {
        max-width: 250px
	}
}

@media screen and (min-width:62.56em) {
	body header {
		position: relative;
	}
	}

#mmc1, #mmc2, #mmc3, #mmc4 {
    position: absolute;
	left: 0;
	top: 70px;
    z-index: 99999;
    width: 100%;
    padding: .5rem 1rem .5rem 1rem;
	background-color: #fff;
	display: block;
}


/*
#mmc1 img, #mmc1 a, #mmc2 img, #mmc2 a, #mmc3 img, #mmc3 a, #mmc4 img, #mmc4 a {
    margin: 2% 2% 2% 1%;
    padding: 2% 2% 2% 1%;
	width: 96%;
}
*/

#drop-links a {
    color: #000;
	margin-bottom: .5rem;
	line-height: 1.5;
    text-decoration: none;
    display: block;
}
#drop-links ul li.main-cat a {
	margin: 0rem;
    padding: 0rem;
    line-height: 1.7;
	font-weight: 400;
}
#drop-links .flex {
	flex-wrap: wrap;
}
#mmc1 a:hover, #mmc2 a:hover, #mmc3 a:hover,   #mmc4 a:hover{
    color:#0071e3;

}

#drop-links {
    margin-top: .5rem
}

#drop-links span,
.nav-tile span {
    color: #0071e3;
    font-weight: 600;
}

#mmc1 .nav-tile, #mmc2 .nav-tile, #mmc3 .nav-tile, #mmc4 .nav-tile {
	margin-left: 0;
	padding-left: 0;
}
#banner .arrow {
    z-index: 9
}

.main-cat {
    font-weight: 400;
    margin: 1rem 0rem;
	line-height: 1.5;
	font-size: 14px;
}

#drop-links a {
	font-size: 16px;
	font-weight: 500;
}

#drop-links .menu.mainproducts a{
	font-size: 22px;
}
#drop-links .menu.mainproducts .main-cat a{
	font-size: 14px;
	font-weight: 400;
}

#page-banner img {
	width: 100%;
	height: 100%;
}

#pageMask {
	background: rgba(0,0,0, .4);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    z-index: 999;
}
#pageMask.mpShow {
    display: block;
}


.megaMenuContent {
    display: none;
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    background: #00f;
	z-index: 10000;
}

.mega-message {
    padding-bottom: .5rem;
    padding-top: 1rem
}

.mega-message .wide {
    padding: 3rem 3% 3rem 3%
}

#product-nav-mobile a {
    color: #000;
    display: inline-block
}

#product-nav-mobile {
    padding: 1rem 0 1rem 0;
    overflow: auto
}

.menu, .menu.horizontal {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}
.menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.menu, .menu-icon {
    position: relative;
}

.menu.vertical {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 4rem;
}
.grid-container h4.menu-title {
	font-weight: 600;
}

.nav-tile {
	margin-bottom: 1.5rem;
}

.mega-message {
    padding-bottom: .5rem;
}

button.product-card {
	text-align: left;
	border: none;
}
button.product-card:hover {
	cursor: pointer;
}
.black-bg, .product-card.black-bg {
    background-color: black;
	color: white;
}
.product-card.blue-robot-bg {
	background-color: #79a5c8;
	color: black;
}
.advanced-bg {
	background-color: #f5f9fc;
}
.white-bg {
	background-color: white;
}
header.white-bg, header.white-bg-2 {
	background-color: white!important;
}

.no-margin-bottom {
	margin-bottom: 0rem;
}
.mega-message .wide {
    padding: 1rem 3% 3rem 3%;
}

.grey {
    color: #6e6e73;
}
.grey-bg, .product-card.grey-bg {
	background-color: #fafafa;
}
.grey-bg.f7 {
	background-color: #f7f7f7;
}
.grey-bg.f5 {
	background-color: #f7f7f7;
}
.dark-grey-bg {
	background-color: #252525;
	color: white;
}
.dark-navy-bg {
	background-color: #333e53;
	color: white;
}
.grey-border {
	border: 2px solid #efefef;
	box-sizing: border-box;
	border-radius: 10px;
}
.grey-bg-header {
	background-color: #f9f9f9;
	padding: 1rem;
}
.beige-bg {
	background-color: #F6F4F0;
}
.light-blue-bg {
	background-color: #e3eefc;
}
.why-shop-icons img{
	width: 36px;
	height: 36px;
}
.white {
    color: #fff;
}
.coupon-box {
	padding: 1rem 1rem;
	border-radius: 25px;
	background: black;
	color: white;
  }
  .coupon-box h2 {
	margin: 1rem;
  }
  .white-box {
	color: black;
	background-color: white;
	text-align: center;
	font-weight: 600;
	padding: 5px;
	max-width: 200px;
	margin: 0rem 0.25rem;
  }
.mega-message h2 {
	font-size: 2.2rem;
}
.menuItem {
	cursor: pointer;
}
@media print, screen and (min-width: 48em) {
.hide-for-medium {
    display: none!important;
}
}

.menuItem img {
	display: inline-block;
    width: 20px;
    margin-left: .5rem;
}

.rotate {
	transform: rotate(180deg);
	transition: transform 350ms ease;
}


.align-left {
	justify-content: left;
}


/* Main Nav */

header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  background: white;
  text-align: left;
  position: relative;
  z-index: 999;
  width: 100%;
  align-items: center;
  padding-top: 5px;
}

.nav-toggle {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.nav-toggle-label {

  margin-left: 1em;
  height: 20px;
  align-items: center;
}


.nav-toggle-label span,
.nav-toggle-label span::after {
  display: block;
  background: black;
  height: 2px;
  width: 1.5em;
  border-radius: 2px;
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before {
  bottom: 7px;
}

.nav-toggle-label span::after {
  top: 7px;
}

nav {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background: white;
  width: 100%;
  transform: scale(1, 0);
  transform-origin: top;
  transition: transform 400ms ease-in-out;
}

nav ul {
  list-style: none;
  padding-inline-start: .5rem;
}

nav li {
  margin-bottom: 1em;
  margin-left: 1em;
  padding-bottom: 1em;
}


nav a {
  font-family:  var(--mainfont);
  font-weight: 500;
  color: black;
  text-decoration: none;
  font-size: 1rem;
  text-transform: capitalize;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}

.nav-toggle:checked ~ nav {
  transform: scale(1,1);
}

.nav-toggle:checked ~ nav a {
  opacity: 1;
  transition: opacity 250ms ease-in-out 250ms;
}
.side-banner {
	display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    margin-bottom: 2rem;
	z-index: 4;
  }

  .side-banner img {
    width: 275px;
  }
  .height-50 {
	height: 50px;
	width: auto;
}
  .x-mark {
    position: absolute;
    color: white;
    top: 0;
    right: 0;
    margin: 0.05rem 0.055rem 0rem 0rem;
    padding: 3px 4px;
    font-size: 16px;
    border: none;
    background-color: transparent;
    cursor: pointer;
  }

  .x-mark button {
    color: white;
  }

  .x-mark img {
    height: 1rem;
    width: 1rem;
  }
  sup.title {
	font-size: 1vw;
    line-height: 0;
    position: relative;
    vertical-align: super;
    top: -0.5em;
  }
  .margin-0 {
	margin: 0rem auto;
  }
  .title-heading, .grid-container .title-heading {
	font-size: 50px;
	font-weight: 600;
  }
  .sub-title-heading {
	font-size: 20px;
	font-weight: 400;
	margin-top: 4px;
  }
  .subtitle-heading {
	font-size: 42px;
  }
  .band-grid {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 16px;
    width: auto;
    grid-column-gap: 48px; /* Note: this property is duplicated; keep only one value */
    grid-row-gap: 40px;
    overflow-x: hidden; /* Change overflow-x to hidden */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
    cursor: grab; /* Change the cursor to indicate dragging */
    padding-bottom: 16px;
}
.grid-container .band-grid p {
	font-size: 16px;
    font-weight: 600;
    line-height: 1;
    margin: 8px 0px;
}
.band-grid a {
    width: 200px;
    margin: 2px 0px;
}
.band-grid a span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.25px;
    line-height: 20px;
    --superscript-margin-left: 2px;
    color: #3c4043;
    text-align: center;
    text-wrap: balance;
    margin: 0 auto;
}
.progress-bar-div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1; /* Ensure the progress bar is above other content */
}

.progress-bar-div .progress {
  position: relative; /* Add this line */
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: #ccc;

}

.progress-bar-div .progress .bar {
  position: absolute; /* Add this line */
  height: 100%;
  background: #434547;
  border-radius: 4px;
  transition: left 0.1s ease-out; /* Adjust the transition to affect the left property */
}
@media screen and (max-width: 1000px)  {
	html.active-menu {
		height: 100% !important;
		overflow: hidden;
	}
	.mmShow {
		position: fixed!important;
		overflow-y: scroll!important;

		top: 0!important;
		left: 0!important;
		width: 100%!important;
	}
	nav {
		position: fixed;
		height: 100%;
		top: 0px;
		z-index: 999;
	}
	.megaMenuContent.mmShow {
		transform: translateX(0); /* Slide in from the left to its natural position */
		transition: transform 300ms ease-in-out;
	}
	
	.megaMenuContent {
		transform: translateX(100%); /* Start from the left, hidden from view */
		transition: transform 200ms ease-in-out;
	}
	header {
		grid-template-columns: auto auto auto;
	}
	#site-logo img {
		width: 120px;
	  }
	  #drop-links {
		margin-top: 0rem;
	  }
	  .menuItem img.updown{
		transform: rotate(-90deg);
	  }
	  #mmc1, #mmc2, #mmc3, #mmc4 {
		width: 0%;
		max-height: 90vh;
	  }

	  .main-cat {
		margin-top: 1.5rem;
		font-weight: 400;
		font-size: 17px;
	}
	.mainproducts .main-cat {
		margin-top: 0rem;
	}
	#drop-links a {
		font-size: 17px;
		font-weight: 500;
	}
	
	#drop-links .menu.mainproducts a{
		font-size: 22px;
	}
	#drop-links .menu.mainproducts .main-cat a{
		font-size: 17px;
		font-weight: 400;
	}
	.leftoffer .productname h1 {
		font-size: 16px;
		line-height: 1;
	  }
	#bottomoffer button.bigbuy.width-auto {
		margin: 6px 1rem;
	}
	.leftnav {
		display: flex;
		flex-direction: row;
		font-size: 14px;
		align-items: center;
		margin-left: 10px;
} 
.title-heading, .grid-container .title-heading{
	font-size: 26px;
}
.subtitle-heading {
	font-size: 22px;
}

.brand-logo {
	width: 100px;
	height: auto;
	margin-top: 4px;
}
.band-grid {
	grid-gap: 10px;
}
.band-grid a {
	width: 100px;
}
.grid-container .band-grid p {
	font-size: 12px;
    margin: 2px 0px;
}
}
@media screen and (min-width: 1000px) {

	.megaMenuContent.mmShow {
		transform: scale(1, 1);
		transform-origin: top;
		transition: transform 300ms ease-in-out;
	}
	
	.megaMenuContent {
		transform: scale(1,0 );
		transform-origin: top;
		transition: transform 200ms ease-in-out;
	
	}
  .nav-toggle-label, #close-menu-x, #close-category {
    display: none;
  }

  nav {
    position: relative;
    text-align: left;
    transition: none;
    transform: scale(1,1);
    background: none;
    top: initial;
    left: initial;
    grid-column: 2 / 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;

  }
  
  nav ul {
	display: flex;
  }
  
  nav li {
    margin-left: 3em;
	margin-bottom: 0;
	padding-bottom: 0;
  }
  
  nav a {
    opacity: 1;
    position: relative;
  }

  header #right-nav li:last-child {
    padding-right: 25%;
 }
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
	nav li {
		margin-left: 1em;
	}
	nav a {
		font-size: 12px;
	}
}

.collection img {
	border-radius: 0px;
	aspect-ratio: 1/1;
	margin: auto;
}

.collection .product__image img:hover, .icon img:hover{
	transition: 0.3s;
}


#right-nav {
    justify-self: right;
	padding-right: 1rem;
 }

#right-nav img {
    width: 36px;
}

#right-nav ul {
    display: flex;
	list-style-type: none;
	margin-block-start: .55em;
	margin-block-end: .25em;
}

#right-nav li:nth-child(-n+3) {
   padding-right: 1.2rem;
}


 #right-nav li:first-child img {
    width: 22px;
 }



#cart-but {
 
   top: 10px;
   right: 10px;
}

#cart-wrapper {
width: auto;
position: relative;
}

#cart-count{

    position: absolute;
    left: 18px;
    bottom: 5px;
    display: none;
  
  }
  
  .circle {
    display: inline-block;
    box-sizing: border-box;
    width: 22px;
    height: 22px;
    line-height: 18px;
    border-radius: 50%; 
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    text-align: center;
    color: white;
    font-size: 12px;
    font-weight: 500;
    background-color: #448aff;
    border: 2px solid #fff;
    text-align: center;
  }
  
 #cart-count.full {
      display: inline-block;
      margin-right: 2rem;
  }
  
  #right-nav li:last-child {
    padding-right: 12%;
 }
  
/* Category Page */

.collection {
    display: grid;
    grid-auto-columns: max-content;
    grid-auto-flow: dense;
    grid-auto-rows: minmax(100px, auto);
    grid-gap: 25px;
	grid-template-columns: repeat(1, 1fr);
    margin: 30px auto;
    max-width: 1400px;
	padding: 25px;
	justify-content: space-evenly;
  }
  .collection.collection-small-2 {
	grid-template-columns: repeat(2, 1fr);
  }
  .collection.collection-small-3 {
	grid-template-columns: repeat(3, 1fr);
  }

  .product__image {
    background-color: #e5e5e5;
    /*
	display: block;
	*/
	min-height: 100px;
    width: 100%;
	border-radius: 25px;
  }

  .product__name p {
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 600;
  }
  .product__name p a {
    color: #000000;
    text-decoration: none;
  }
  .product__price p {
    font-family: sans-serif;
    font-size: 1.6rem;
  }
  .product__title h1 {
    font-weight: 500;
    font-size: 1.8rem;
}

  /* Category Selections */

.filter-grid {
    display: grid;
    grid-template-rows: auto;
    grid-gap: 25px;
    grid-template-columns: repeat(8, 1fr);
    margin-top: 2rem;
    max-width: 1200px;
    justify-content: space-evenly;
	text-align: center;
	margin: 3rem auto auto auto;
  }

.filter-image img, .icon img{
    display: block;
	width: 50px;
	-webkit-aspect-ratio: 1/1;
	aspect-ratio: 1 / 1;
    object-fit: contain;
	margin: auto;
  }

  .filter-grid-3 {
    display: grid;
    grid-template-rows: auto;
    grid-gap: 25px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2rem;
    max-width: 400px;
    justify-content: space-evenly;
    text-align: center;
    margin: 3rem auto auto auto;
}
.filter-grid-3 .filter {
	border-radius: 20px;
}
   .grid-container .filter-name p {
    font-family: sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
  }

  .cattitle h1{
	text-align: center;
  }
  .cattitle p {
	line-height: 1.2rem;
  }

  .filter:hover {
	transition: box-shadow .25s cubic-bezier(.4,0,.2,1);
	box-shadow: 0 1px 1px 0 rgba(60,64,67,.3), 0 1px 3px 0 rgba(60,64,67,.15);
	border-radius: 20px;
  }

.filter-name p a {
	font-weight: 500;
    color: #000000;
    text-decoration: none;
	line-height: 1.2;
	margin: 1rem 0rem;
  }

    /* Icon Grid */

.icon-grid {
    display: grid;
    grid-template-rows: auto;
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fit, minmax(35px, 65px));
    justify-content: space-evenly;
    text-align: center;
  }

.icon-image {
    display: block;
    min-height: 20px;
	margin-bottom: 1rem;
    width: 100%;
  }
.product .icon-name p, .icon-name p {
    font-family: sans-serif;
    font-size: 12px;
    font-weight: bold;
	letter-spacing: 0px;
    line-height: 1;
  }
.icon-name p a {
    color: #000000;
    text-decoration: none;
	font-weight: 500;
  }
/*
  .icon img {
	border: 3px solid black;
	border-radius: 50%;
	padding: 3px;
  }
*/
.fullprice {
	text-decoration: line-through;
}
.msrp, .fullprice {
	font-weight: 500;
}
.currentprice {
	font-weight: 700;
}
.savemoney {
	font-weight: 500;
	color: white;
	background-color: green;
	padding: .25rem .75rem;
}

/*
.also-bought .cell, .also-bought {
	margin: 5px;
}

*/
.shoppersbought .grid-x {
	margin-top: 1rem;
}
.also-bought {
	margin: 0rem auto;
}
.also-bought .compare-text {
	padding-left: 10px;
}
  .also-bought div.preferred {
	border-bottom: 1px solid lightgray;
	margin: 0 0 1rem 0;
	width: 500px;
	height: 150px;
	padding-bottom: 1rem;
	
   }

.feature-div img {
	opacity: .75;
	-webkit-aspect-ratio: 1/1;
	aspect-ratio: 1/1;
	object-fit: contain;
}
.accessories .feature-div img {
	opacity: 1;
}
   .image-left {
	position: relative;
	max-width: 75px;
}
.image-center {
	max-width: 75px;
	margin: auto;
}

   #mainproduct {
	padding-left: 0;
   }
#mainproduct h3.ultimate {
	margin: 0.5rem;
	color: white;

}
#mainproduct .also-bought-title {
	background: #000;
}
   h2.block-title {
	margin: 0;
   }

   h2.block-title a {
	text-decoration: underline 1px dotted grey;
	font-size: 1.5rem;
   }

   h3.ultimate {
	margin: 2rem 0 3rem -.5rem;
	font-weight: 500;
	font-size: 1.4rem;
	color: black;
	letter-spacing: 3px;
	}

   .ultimate span {
	font-size: 1.4rem;
	margin-left: 1rem;
	padding-bottom: 1rem;
	font-weight: 700;
	}

   #vidbg {
    width: 100%; 
   }
   .relative {
	position: relative;
   }

   .sticky-div {
	position: sticky;
	overflow-x: visible;
	top: 0;
	left: 0;
   }
   .border-radius {
	border-radius: 1.5rem;
   }

   .border-radius.light-blue-bg, .border-radius.grey-bg, .border-radius.beige-bg, .border-radius.black-bg  {
	box-sizing: border-box;
	padding: 2rem;
   }

   .flex-vertically-center {
	    display: flex;
    	align-items: center;
   }

   .over-text .material-but {
	background-color: transparent;
	margin-top: 2rem;
   }

   .padright {
	padding-right: 1rem;
   }

.better-but {
    display: inline-block;
    position: relative;
    margin-top: 1rem;
    min-width: 150px;
    height: 44px;
    vertical-align: middle;
    text-align: center;
    color: white;
    background-color: black;
    font-family: var(--subfont);
    font-size: 14px;
    font-weight: 600;
    line-height: 38px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(208, 208, 208);
    border-image: initial;
    border-radius: 4px;
    padding: 3px 18px 0px;
    transition: all 0.2s ease-out 0s;
}
#breadcrumbs-container {
	padding-bottom: 0.5rem;
	padding-top: 0.5rem;
}
.breadcrumbs {
    margin: 0rem;
	margin-left: 10px;
	padding: 0rem;
    list-style: none;
}
.breadcrumbs::after,
.breadcrumbs::before {
    display: table;
    content: " ";
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
}
.breadcrumbs::after {
    clear: both;
}
.breadcrumbs li {
    float: left;
    font-size: 0.6875rem;
    color: #232323;
    cursor: default;
}
.breadcrumbs li:not(:last-child)::after {
    position: relative;
    margin: 0 0.75rem;
    opacity: 1;
    content: "/";
    color: #9d9d9d;
}
.breadcrumbs a {
    color: #0a92ef;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.breadcrumbs .disabled {
    color: #9d9d9d;
    cursor: not-allowed;
}

table {
	border-collapse: collapse;
	width: 100%;
	max-width: 100%;
    border: 2px solid rgb(200, 200, 200);
    letter-spacing: 1px;
    font-size: 1rem;
}

td, th {
    border: 1px solid rgb(190, 190, 190);
    padding: 10px 10px;
}

td a {
	color: #0071e3;
}

h2 {
    font-size: 27px;
}

.robot-content p {
    font-size: 1.1em;
    line-height: 1.5em;
}

.robot-content h2 {
	margin: 0rem;
}

.image-container {
	position: relative;
	text-align: center;
	color: white;
}

.top-left-banner {
	position: absolute;
	font-size: 20px;
	font-weight: 500;
	top: 16px;
	left: 0px;
	padding: 8px 20px;
	background-color: rgba(8, 8, 8, .85);
}

.top-right-banner {
	position: absolute;
	font-size: 20px;
	font-weight: 500;
	top: 16px;
	right: 0px;
	margin: 8px 10px;
	background-color: rgba(8, 8, 8, .85);
}

.bottom-left-banner {
	position: absolute;
	font-size: 20px;
	font-weight: 500;
	bottom: 16px;
	left: 0px;
	padding: 0px;
	background-color: rgba(8, 8, 8, .85);
}

.bottom-right-banner {
	position: absolute;
	font-size: 20px;
	font-weight: 500;
	bottom: 16px;
	right: 0px;
	padding: 0px;
	background-color: rgba(8, 8, 8, .85);
}

.top-right-banner.white, .top-left-banner.white {
	background-color: white;
	color: black;
}
.bottom-right-banner.proline {
	right: 30px;
	bottom: 30px;
	width: 150px;
}

.top-left-banner.no-border, .top-right-banner.no-border {
	background-color: transparent;
	padding: 0px 7px;
}
.top-left-banner.no-border img, .top-right-banner.no-border img {
	width: 90px; 
	height: 40px;
	object-fit: contain;
}
.top-right-banner.no-border.max-series-logo img {
	width: 140px;
}

.pricematch img {
	position: relative;
    top: -2px;
    width: 1.66rem;
    margin-right: 2px;
    mix-blend-mode: darken;
	vertical-align: middle;
}

.pricematch p strong {
	font-weight: bold;
    color: #003d82;
}

.pricematch p {
	color: #3198D3;
}

.nav-list {
	list-style: none;
	padding: 0rem;
}

.nav-list li {
	border-bottom: 1px solid #dadada;
    font-size: 1.15em;
}

.nav-list li a {
	display: block;
	padding: 12px 20px;
}

.checkoutBtn {
	background-color: #3198D3;
	color: white;
	height: 50px;
    margin: 10px 0 10px;
	border-radius: 6px;
    text-transform: uppercase;
    font-weight: 700;
	font-size: 1.05em;
    padding: 0.65em 1.25em;
	border: none;
	width: 250px;
	cursor: pointer;
}

.checkoutBtn:hover {
    box-shadow: 0 17px 20px 0 rgba(0, 0, 0, 0.1);
    transform: scale(1.05, 1.05);
	transition: .3s;
}

.checkoutBtn p {
	margin: 0rem;
}

#cartNumber {
	position: absolute;
	right: -6px;
	top: -10px;
	background: rgba(0,0,0,0.8);
	color: white;
	font-size: 12px;
	padding: 12px 12px;
	border-radius: 20rem;
}

#cartNumber span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

#quantity {
	overflow: visible;
	color: #000;
    background: none;
    border: none;
    margin: auto;
    width: 20px;
    text-align: center;
    font-family: var(--mainfont);
}

/*! Shop CSS */

.my-4, .my-6 {
    background-color: white;

    border-radius: 12px;
    padding: 1rem;
}

div.space-x-1 .cursor-pointer {
	cursor: pointer;
    border: 1px solid lightgrey;
    border-radius: 4px;
    margin-bottom: 0;
    padding-left: 2rem;
    padding-right: 1rem;
}

.p-6  {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.p-6 h1 {
    font-size: 1.2rem;
    text-transform: lowercase;
    font-weight: 500;
    position: absolute;
    top: .5rem;
    right: 2rem;
}

.p-6 p,#disc-com {
    font-weight: 300;
    font-size: .9rem;
    margin: 1.5rem 1.5rem 1.5rem 1.5rem;
}

#cart, #support {
    border: 1px solid lightgrey;
    border-radius: 4px;
}


button#checkoutBtn {
    align-items: center;
    background: #fff;
    background-color: rgb(26,115,232);
    border: 0.0625rem solid;
    border-radius: 4px;
    border-radius: 0.25rem;
    color: #393939;
    color: #fff;
    display: inline-flex;
    font-size: .9375rem;
    height: 2.5rem;
    justify-content: center;
    letter-spacing: 0;
    line-height: normal;
    line-height: 1;
    min-width: 6.25rem;
    padding: 20px 50px;
    text-align: center;
    text-decoration: none;
    text-transform: lowercase;
    font-weight: 400;
    /* margin-top: 2rem; */
}

.filter {
	margin: 3px;
}



#total {
    margin-left: 1rem;
    font-size: 1.25rem;
 }

#total::before {
  content: "$  ";
}

.w-full .flex .font-medium {
    font-size: 1.25rem;
    text-transform: lowercase;
}


#promo {
	background-color: #f5f5f7;
	color: rgba(0, 0, 0, .8);
	}
   .promomsg {
	align-items: center;
	text-align: center;
	padding: 0;
	font-size: 1rem;
	font-weight: 500;
	font-family: 'Karla', Arial, Helvetica, sans-serif;
	letter-spacing: 2px;
   }

   .promomsg p {
	/* 
	background-image: url("assets/img/open-icon.png");
	*/
	background-repeat: no-repeat;
	background-position: 56% 40%;
	background-size: 1.3rem;
	line-height: 3;
	margin: 0rem 0rem 1rem 0rem;
	}
   @media (min-width: 767px) {
	.collection {
	    grid-template-columns: repeat(2, 1fr);
	}

	.product {
		padding: 2rem;
	}
	.slider-container li .product {
		padding: 2rem 2rem 0rem 0rem;
	}
  }

  @media (min-width: 1025px) {
	.collection,.collection.collection-small-2 {
	  grid-template-columns: repeat(3, 1fr);
	}
	.collection.collection-small-3 {
		grid-template-columns: repeat(3, 1fr);
	  }
	  
  }
  @media (max-width: 32rem) {
	.filter-grid {
		grid-template-columns: repeat(4, 1fr);
	}
  }
  
	.filter {
		background-color: transparent;
		border: none;
	}
	.activeFilter {
		outline: 1px solid #0070c9;
		box-shadow: 0 1px 2px 0 #59abe3, 0 1px 5px 0 #59abe3;
		border-radius: 20px;
		}

/* CART CSS */
.shadow {
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity));
}

.border-l {
    border-left-width: 1px;
}
.bottom-0 {
  bottom: 0px;
}
.flex {
  display: flex;
}
.no-wrap {
	flex-wrap: nowrap;
}
.max-w-xs {
    max-width: 20rem;
}

.my-4, .my-6 {
    margin-top: 1rem;
    /* margin-bottom: 1rem; */
}
.my-6 .material-but {
	margin-top: 0rem;
}
.relative {
    position: relative;
}
.absolute {
	position: absolute;
}
.absolute.center {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.absolute.center-top {
	top: 25%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.absolute.top-left {
	top: 25%;
	left: 20%;
	transform: translate(-50%, -50%);
}
.spec-sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    align-self: start;
    margin: 0rem auto;
    border-radius: 10px;
    line-height: 1;
    z-index: 99;
	background-color: white;
}
.spec-sticky img {
	width: 33%;
	max-width: 100%;
	margin: 0 auto;
	float: none;
}
#cart, #support {
  display: block;
  position: fixed;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  background-color: #f7f7f7;
  top: 0px;
  right: 0px;
  min-height: 100vh;
  width: 100%;
  max-width: 24rem;
  padding: 1rem;
  z-index: 100000;
}
.my-4{
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 10px;
  margin-top: 1rem;
}

.my-6 {
	display: grid;
	grid-template-columns: 1fr 3fr;
	grid-gap: 10px;
	margin-top: 1rem;
}

.my-6 h3, .my-6 h2 {
	margin: .5rem;
}
.space-x-1 .w-4 {
  margin: auto;
}
.space-x-1 .cursor-pointer {
  height: 20px;
  width: 20px;
}
.p-6 h2, .p-6 h3 {
  font-size: 16px;
}


#slide1 .top-left-banner {
	left: 149px;
}

.also-bought {
	background: #ffffff;
	padding: 1rem;
	border-radius: 0px;
	color: black;
}

.also-bought h2 a {
	color: black;
    font-size: 1rem;
    font-weight: 400;
    text-transform:  uppercase;
    letter-spacing: 6px;
}

.left-overhang img {
	border-radius: 0px
}

.nav-list, div.pricematch, .checkoutBtn {
	display: none;
}

.pillButton {
	width: 200px;
	height: 40px;
	border: 5px black;
	background-color: black;
	color: white;
	border-radius: 50px;
}
.pillButton {
	padding: .5rem 1rem;
}

.pillButton:hover {
	background-color: rgb(202, 202, 202);
	color: #000;
	transition: .5s;
}

.pillButton p {
	margin: 0;
}

.flex-div {
	display: flex;
	align-items: center;
}
.inline {
	margin-left: 1rem;
	padding: 20px 0px;
}
.rightnav .inline p {
	display: inline-block;
	margin: 0rem;
	font-size: 16px;
	white-space: nowrap;
}
.rightnav .inline img {
	display: inline;
	margin-right: 4px;
	width: 20px;
	height: 20px;
}
/* PRODUCT TITLE BANNER HEADER */
body {
    font-family: var(--mainfont);
	overflow-x: visible;
}

.productnav {
	display: block;
	max-width: 1920px;
    margin: auto;
}

.productname h1 {
    font-size: 20px;
	font-weight: 500;
}

.productname {
	padding-left: 10px;
}

/* Article Template */
.article-template h2 {
	margin-top: 3rem;
}

.article-template a, .dotted, .dashlink {
	border-bottom: 2px dotted rgb(26,115,232);
}

.article-template a.orange, .dotted.orange, .dashlink.orange {
	border-bottom: 2px dotted #f68a1f;
}


.article-template img {
	width: auto;
	display: block;
	margin: 0rem auto;
}

.article-title {
	padding: 2rem;
	background-color: black;
	color: white;
}
/* end of article template */
#content.grid-container, #content.grid-container .cell {
	overflow: visible;
}

#content h4 {
	margin-top: -1rem;
    font-size: 1.3rem;
}

#content a, .bluelink, a.bluelink, .text-page a, .has-bluelinks a {
	color: #1967D2;
	font-weight: 500;
	border-bottom: none;
    transition: border-color 0.15s ease 0s, background-image 0.15s ease 0s, color 0.15s ease 0s, background-size 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
	background-repeat: no-repeat;
    background-size: 100% 0em;
    background-position: 0px 100%;
    text-decoration: none;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: transparent;
    cursor: pointer;
}
.bluelink:hover {
	border-bottom: 2px solid;
	border-bottom-color: rgb(25, 103, 210);
}
.bluelink.no-hover:hover {
	border-bottom: 0rem;
}
#content .product-image a {
	color: transparent;
}
#differences a.bluelink {
	color: black;
	border-color: #1967D2;
}
#content figure {
	display: block;
	max-width: 750px;
	margin: auto;
}

#content figure video, #content figure img, .article-template figure img {
	margin-bottom: .5rem;
	width: 100%;
}

.article-template figure {
	max-width: 600px;
	margin: 0rem auto;
}

figure {
	margin: 2.75rem 0rem;
}
figure figcaption {
	margin: 0.5rem 0rem;
    font-size: 15px;
	font-weight: 500;
	font-style: italic;
}

td {
	letter-spacing: 0;
    padding: 10px 4px;
    font-size: 14px;
	}
	
	.comparision table thead tr th h5 {
	margin: 0rem;
	}
	
	tr:nth-child(2n), th{
	background-color: #f2f2f2;
	}
	
	table img {
	  max-width: 25px;
	}
	
	#compare-specs table tr td {
		width: 33.3333%;
	}
	
	@media screen and (max-width: 64em) {
	thead tr th h4 {
		text-align: left;
		font-size: 20px;
	}
	}
	
	table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 1rem;
	border: 0px;
	}
	
	.specs-table {
		table-layout: fixed;
	}
	
	th,td {
		word-wrap: break-word;
		border: 0px;
	}
	
	table.comparision thead {
	background-color: transparent;
	}
	
	thead th {
	letter-spacing: 0;
	padding: 10px 4px;
	font-size: 14px;
	font-weight: 700;
	text-align: left;
	}
	
	#compare-specs table.comparision.performance tr td {
	width: 33.3333%;
	border: 0px;
	}

.sticky {
    position: sticky;
    top: 0;
}
.white-transparent {
	background: rgba(255,255,255,.8);
	-webkit-backdrop-filter: blur(10px); /* For Safari support */
	backdrop-filter: blur(10px); /* Adjust the blur amount as needed */
}
.sticky-toc {
	position: sticky;
    top: 0rem;
    max-width: 100vw;
    overflow-x: visible;
    align-self: start;
    background-color: black;
	color: white;
	margin: 1rem;
	z-index: 3;
	border-radius: 0 0 0.5rem 0.5rem;
}
.sticky-toc span {
	color: white;
	display: block;
}
.sticky-toc svg {
	fill: white;
}
.overflow-x-visible {
	overflow: visible;
}




#stickynav {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100vw;
	z-index: 500;
	overflow-x: visible;
	background: white;
}

.grey-border-bottom {
	border-bottom: 1px solid #e8e8ed;
}

.slidernav {
    display: flex;
    justify-content: space-between;
    max-width: 1600px;

	overflow: hidden;
	overflow-x: hidden;
}
/* Hide scrollbar for Chrome*/
.slidernav::-webkit-scrollbar {
	display: none;
}

.alsoviewed .cell img {
	padding: .5rem;
}
.alsoviewed .cell {
	position: relative;
}

.alsoviewed a h4 {
	font-weight: 600;
	padding: 0.5rem;
    font-size: 1.2rem;
}

/* Hide scrollbar for IE, Edge and Firefox */
.slidernav {
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
}

#trust {
    position: absolute;
    bottom: 5%;
    right: 2%;
	display: inline-block;
    vertical-align: middle;
	width: auto;
    max-width: 100%;
    height: auto;
}
#authorized-dealer {
    position: absolute;
    top: 5%;
    right: 2%;
	display: inline-block;
    vertical-align: middle;
	width: 200px;
    max-width: 100%;
    height: auto;
}

.bigbuy button, .bigbuy a, button.bigbuy, a.bigbuy {
	display: block;
    font-size: 22px;
    width: 100%;
    background-color: rgb(26,115,232);
    color: white;
    height: 56px;
	line-height: 56px;
    border: none;
	cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
	margin: 8px 0; 
}

.bigbuy.buy-only {
	height: auto;
	padding: .3em 20px;
	line-height: 20px;
	font-size: 20px;
	margin: 0.37em 0rem .37rem 1rem;
}
.bigbuy.buy-only.buy-on-amazon {
	width: auto;
    padding: 0px 14px;
    line-height: 40px;
}
.landing-page-category .bigbuy button {
	background-color: black;
}

#topoffer .bigbuy button {
    margin-left: 25px;
}

#topoffer {
    display: flex;
    flex-direction: row;
	margin-left: auto;
}

#bottomoffer {
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    padding-left: 50px;
    padding-right: 16px;
    background: #fff;
    z-index: 91;
    max-width: 100vw;
    display: flex;
    position: fixed;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,.15);
    
}
.leftoffer{
    display: block;
  }
.leftnav {
	padding: 12px 0px;
	margin-left: 2rem;
}
.leftnav button, .pill-div button, .leftnav a, .pill-button {
    color: black;
    background-color: #f2f2f2;
    padding: 8px 18px;
    border: 2px solid #f2f2f2;
    position: relative;
    margin-right: 8px;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 16px;
    max-height: 34px;
}
.pill-button.blue-btn {
	background-color: #0071e3;
	border-color: #0071e3;
	color: white;
	padding: 8px 16px;
	font-size: 14px;
	display: block;
	max-width: 40px;
	margin: 1rem auto;
}
#refurb-selector.pill-div button {
	margin: .25rem;
	font-size: 1rem;
}
#refurb-selector.pill-div button:hover {
	cursor: pointer;
}
#refurb-selector ul {
	font-size: 1rem;
    line-height: 1.5;
}
.flex-center {
	display: flex;
    flex-wrap: inherit;
    justify-content: center;
    align-content: center;
}

button.circle-button {
	background: rgb(26,115,232);
    border-radius: 3em;
    -moz-border-radius: 3em;
    -webkit-border-radius: 3em;
    color: #fff;
    display: inline-block;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    width: 40px;
	height: 40px;
    border: none;
    font-size: 30px;
	padding: 0rem;
}
button.circle-button:hover {
	cursor: pointer;
}

.also-need p {
    font-size: 20px;
    line-height: 1.2;
    margin-left: 1rem;
}
.formstackBody {
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}
.formstackFrame {
	width: 100%;
	height: 650px;
	border: none;
	overflow: hidden;
}

.price {
    font-size: 20px;
    margin: 0.67em 0rem;
}

.freeship {
	float: right;
	margin-left: .5rem;
    font-size: .8rem;
    margin-top: .3rem;
	padding-top: 4px;
    color: grey;
}
.bigbuy button.sold-out-button {
	background-color: grey;
	cursor: default;
}
span.regprice {
    margin-left: .5rem;
    text-decoration-line: line-through;
}

span.from {
    color: grey;
    margin-right: .5rem;
}

.bottom-left-banner.authorized-dealer {
	max-width: 200px;
}
.icon-banner {
	max-width: 140px;
    background: none;
}
.best-award {
	margin-left: 1rem;
  }
  .cell-padding {
	padding: 4rem 2rem;
	-moz-box-sizing: border-box;
    box-sizing: border-box;
}
.cell-padding-sm {
	padding: 1rem;
	-moz-box-sizing: border-box;
    box-sizing: border-box;
}
.cell-padding.grey-border {
	padding: 2rem 1rem 1rem;
	-moz-box-sizing: border-box;
    box-sizing: border-box;
}
.compare-container {
	display: flex;
	align-items: flex-end;
}

.compare-item {
	display: flex;
	align-items: flex-end;
}
  /* Mobile Only */
@media only screen and (max-width: 600px) {
	#cart, #support {
	  padding: 1rem;
	  max-width: calc(100% - 2rem);
	}
	#authorized-dealer {
		display: none;
	}
	.grid-container .large-heading {
		font-size: 32px;
	}
	.mainproductname {
		font-size: 22px;
	}
	.bigbuy button, .bigbuy a {
	  height: 45px;
	  line-height: 45px;
  }
  .mega-message h2 {
	font-size: 22px;
  }
  .mega-message h3 {
	font-size: 14px;
  }
  .mega-message {
	padding-bottom: 4rem;
  }
  #trust {
	width: 275px;
  }
  .bottom-left-banner.authorized-dealer, .top-right-banner.authorized-dealer, .bottom-right-banner.proline {
	max-width: 135px;
  }

  .best-award {
	margin-left: 0rem;
  }
  .bottom-right-banner.proline {
	bottom: 15px;
	right: 10px;
  }
  #mainproduct h3 {
	margin: 1rem;
  }
.icon-banner {
	max-width: 100px;
}
.product-category-data.two-points {
	margin-bottom: 6%;
}
.product-category-data .bigbuy {
	font-size: 12px;
	line-height: 12px;
	height: auto;
	width: auto;
	padding: 8px;
}
.product-category-data .product-title {
	font-size: 14px;
}
.product-category-data .price, .star-div .star-title {
	font-size: 14px;
	margin-left: 5px;
}
.star-div svg {
	height: 14px;
	width: auto;
}
.right-nav.container {
    margin-right: 1rem;
}
  }
/* Tablet Only  / Medium Only */
@media screen and (min-width: 48em) and (max-width: 62.56em) {
	.promo-icons {
		margin-left: 3rem;
		}
}
/* Mobile and Tablet Sizes */
@media screen and (max-width:62.56em) {
	.hide-for-small {
		display: none!important;
	}
	#bottomoffer {
		padding-left: 1rem;
	}
	.price {
		font-size: 1.3rem;
	}
	.freeship {
		padding-top: 0px;
		float: right;
		margin-left: 0.5rem;
		font-size: .8rem;
		margin-top: 0.6rem;
		color: grey;
	}
	.side-banner {
		display: none;
	  }
	.grid-x .highlight-content.indexpage h2{
		font-size: 20px;
	}
	#refurb-selector.pill-div button {
	margin: 0.25rem;
	font-size: .8rem;
	}#mmc1 {
		top: 30px;
	}
	#mmc2 {
		top: 85px;
	}
	#mmc3 {
		top: 140px;
	}
	#mmc4 {
		top: 195px;
	}
	li.store {
		margin-left: 0rem;
	}
	.grid-padding {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	.grid-padding-top {
		padding-top: 2rem;
	}
	.cell-padding {
		padding: 2rem 1rem;
	}

	.cell-padding.grey-border {
		padding: 1rem;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	.grid-container p, .grid-container ul, .grid-container ol {
		font-size: 16px;
	}
	nav {
		min-height: 700px;
	}
	.menu.vertical {
		width: 100%;
	}
}
@media screen and (min-width:62.56em) {
	.hide-for-large {
		display: none!important;
	}
	.productnav {
		display: flex;
	} 
}
/* ADD XLARGE */

@media screen and (min-width:90em) {
	.grid-x>.xlarge-1,
	.grid-x>.xlarge-10,
	.grid-x>.xlarge-11,
	.grid-x>.xlarge-12,
	.grid-x>.xlarge-2,
	.grid-x>.xlarge-3,
	.grid-x>.xlarge-4,
	.grid-x>.xlarge-5,
	.grid-x>.xlarge-6,
	.grid-x>.xlarge-7,
	.grid-x>.xlarge-8,
	.grid-x>.xlarge-9,
	.grid-x>.xlarge-full,
	.grid-x>.xlarge-shrink {
		-webkit-flex-basis: auto;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}
	
  }
  
  @media screen and (min-width:120em) {
	.grid-x>.xxlarge-1,
	.grid-x>.xxlarge-10,
	.grid-x>.xxlarge-11,
	.grid-x>.xxlarge-12,
	.grid-x>.xxlarge-2,
	.grid-x>.xxlarge-3,
	.grid-x>.xxlarge-4,
	.grid-x>.xxlarge-5,
	.grid-x>.xxlarge-6,
	.grid-x>.xxlarge-7,
	.grid-x>.xxlarge-8,
	.grid-x>.xxlarge-9,
	.grid-x>.xxlarge-full,
	.grid-x>.xxlarge-shrink {
		-webkit-flex-basis: auto;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}
  }
  
  
  
  @media screen and (min-width:90em) {
	.grid-x>.xlarge-auto {
		-webkit-flex: 1 1 0px;
		-ms-flex: 1 1 0px;
		flex: 1 1 0px;
		width: auto
	}
	.grid-x>.xlarge-shrink {
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto
	}
	.grid-x>.xlarge-1 {
		width: 8.33333%
	}
	.grid-x>.xlarge-2 {
		width: 16.66667%
	}
	.grid-x>.xlarge-3 {
		width: 25%
	}
	.grid-x>.xlarge-4 {
		width: 33.33333%
	}
	.grid-x>.xlarge-5 {
		width: 41.66667%
	}
	.grid-x>.xlarge-6 {
		width: 50%
	}
	.grid-x>.xlarge-7 {
		width: 58.33333%
	}
	.grid-x>.xlarge-8 {
		width: 66.66667%
	}
	.grid-x>.xlarge-9 {
		width: 75%
	}
	.grid-x>.xlarge-10 {
		width: 83.33333%
	}
	.grid-x>.xlarge-11 {
		width: 91.66667%
	}
	.grid-x>.xlarge-12 {
		width: 100%
	}
  }
  
  
  
  @media screen and (min-width:120em) {
	.grid-x>.xxlarge-auto {
		-webkit-flex: 1 1 0px;
		-ms-flex: 1 1 0px;
		flex: 1 1 0px;
		width: auto
	}
	.grid-x>.xxlarge-shrink {
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto
	}
	.grid-x>.xxlarge-1 {
		width: 8.33333%
	}
	.grid-x>.xxlarge-2 {
		width: 16.66667%
	}
	.grid-x>.xxlarge-3 {
		width: 25%
	}
	.grid-x>.xxlarge-4 {
		width: 33.33333%
	}
	.grid-x>.xxlarge-5 {
		width: 41.66667%
	}
	.grid-x>.xxlarge-6 {
		width: 50%
	}
	.grid-x>.xxlarge-7 {
		width: 58.33333%
	}
	.grid-x>.xxlarge-8 {
		width: 66.66667%
	}
	.grid-x>.xxlarge-9 {
		width: 75%
	}
	.grid-x>.xxlarge-10 {
		width: 83.33333%
	}
	.grid-x>.xxlarge-11 {
		width: 91.66667%
	}
	.grid-x>.xxlarge-12 {
		width: 100%
	}
  }
  
  
  
  @media screen and (min-width:120em) {
	.xxlarge-pull-1,
	.xxlarge-pull-10,
	.xxlarge-pull-11,
	.xxlarge-pull-2,
	.xxlarge-pull-3,
	.xxlarge-pull-4,
	.xxlarge-pull-5,
	.xxlarge-pull-6,
	.xxlarge-pull-7,
	.xxlarge-pull-8,
	.xxlarge-pull-9,
	.xxlarge-push-1,
	.xxlarge-push-10,
	.xxlarge-push-11,
	.xxlarge-push-2,
	.xxlarge-push-3,
	.xxlarge-push-4,
	.xxlarge-push-5,
	.xxlarge-push-6,
	.xxlarge-push-7,
	.xxlarge-push-8,
	.xxlarge-push-9 {
		position: relative
	}
	.xxlarge-1 {
		width: 8.33333%
	}
	.xxlarge-push-1 {
		left: 8.33333%
	}
	.xxlarge-pull-1 {
		left: -8.33333%
	}
	.xxlarge-offset-0 {
		margin-left: 0
	}
	.xxlarge-2 {
		width: 16.66667%
	}
	.xxlarge-push-2 {
		left: 16.66667%
	}
	.xxlarge-pull-2 {
		left: -16.66667%
	}
	.xxlarge-offset-1 {
		margin-left: 8.33333%
	}
	.xxlarge-3 {
		width: 25%
	}
	.xxlarge-push-3 {
		left: 25%
	}
	.xxlarge-pull-3 {
		left: -25%
	}
	.xxlarge-offset-2 {
		margin-left: 16.66667%
	}
	.xxlarge-4 {
		width: 33.33333%
	}
	.xxlarge-push-4 {
		left: 33.33333%
	}
	.xxlarge-pull-4 {
		left: -33.33333%
	}
	.xxlarge-offset-3 {
		margin-left: 25%
	}
	.xxlarge-5 {
		width: 41.66667%
	}
	.xxlarge-push-5 {
		left: 41.66667%
	}
	.xxlarge-pull-5 {
		left: -41.66667%
	}
	.xxlarge-offset-4 {
		margin-left: 33.33333%
	}
  }
  
  
  
  @media screen and (min-width:90em) {
	.xlarge-offset-0 {
		margin-left: 0
	}
	.grid-margin-x>.xlarge-offset-0 {
		margin-left: calc(0% + .78125rem)
	}
  
	.xlarge-offset-half {
	  margin-left: 4.16%
  }
	.xlarge-offset-1 {
		margin-left: 8.33333%
	}
	.grid-margin-x>.xlarge-offset-1 {
		margin-left: calc(8.33333% + .78125rem)
	}
	.xlarge-offset-2 {
		margin-left: 16.66667%
	}
	.grid-margin-x>.xlarge-offset-2 {
		margin-left: calc(16.66667% + .78125rem)
	}
	.xlarge-offset-3 {
		margin-left: 25%
	}
	.grid-margin-x>.xlarge-offset-3 {
		margin-left: calc(25% + .78125rem)
	}
	.xlarge-offset-4 {
		margin-left: 33.33333%
	}
	.grid-margin-x>.xlarge-offset-4 {
		margin-left: calc(33.33333% + .78125rem)
	}
	.xlarge-offset-5 {
		margin-left: 41.66667%
	}
	.grid-margin-x>.xlarge-offset-5 {
		margin-left: calc(41.66667% + .78125rem)
	}
	.xlarge-offset-6 {
		margin-left: 50%
	}
	.grid-margin-x>.xlarge-offset-6 {
		margin-left: calc(50% + .78125rem)
	}
	.xlarge-offset-7 {
		margin-left: 58.33333%
	}
	.grid-margin-x>.xlarge-offset-7 {
		margin-left: calc(58.33333% + .78125rem)
	}
	.xlarge-offset-8 {
		margin-left: 66.66667%
	}
	.grid-margin-x>.xlarge-offset-8 {
		margin-left: calc(66.66667% + .78125rem)
	}
	.xlarge-offset-9 {
		margin-left: 75%
	}
	.grid-margin-x>.xlarge-offset-9 {
		margin-left: calc(75% + .78125rem)
	}
	.xlarge-offset-10 {
		margin-left: 83.33333%
	}
	.grid-margin-x>.xlarge-offset-10 {
		margin-left: calc(83.33333% + .78125rem)
	}
	.xlarge-offset-11 {
		margin-left: 91.66667%
	}
	.grid-margin-x>.xlarge-offset-11 {
		margin-left: calc(91.66667% + .78125rem)
	}
	.grid-y>.xlarge-1,
	.grid-y>.xlarge-10,
	.grid-y>.xlarge-11,
	.grid-y>.xlarge-12,
	.grid-y>.xlarge-2,
	.grid-y>.xlarge-3,
	.grid-y>.xlarge-4,
	.grid-y>.xlarge-5,
	.grid-y>.xlarge-6,
	.grid-y>.xlarge-7,
	.grid-y>.xlarge-8,
	.grid-y>.xlarge-9,
	.grid-y>.xlarge-full,
	.grid-y>.xlarge-shrink {
		-webkit-flex-basis: auto;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}
  }


  .eight-points {
    margin-bottom: 8%;
  }
  .eight-points-top {
    margin-top: 8%;
  }
  .four-points {
    margin-bottom: 4%;
  }
  .grid-container.nopad.four-points {
	margin-bottom: 4%;
  }
  .one-points {
    margin-bottom: 1%;
  }
  .two-points {
    margin-bottom: 2%;
  }
  .two-points-top {
	margin-top: 2%;
  }
  .margin-bottom-rem {
	margin-bottom: 1.875rem;
  }
  .margin-bottom-0 {
	margin-bottom: 0rem;
  }
  .margin-top-0, .grid-container .margin-top-0 {
	margin-top: 0rem;
  }
  .margin-bottom-1 {
	margin-bottom: 1rem;
  }
  .margin-top-1 {
	margin-top: 1rem;
  }
  .margin-top-2 {
	margin-top: 2rem;
  }
  .margin-bottom-2 {
	margin-bottom: 2rem;
  }
  .margin-top-3 {
	margin-top: 3rem;
  }
  .padding-top-1 {
	padding-top: 1rem;
  }
  .padding-top-2 {
	padding-top: 2rem;
  }
  section#home-banners.grid-container.eight-points, .grid-container.eight-points {
    margin-bottom: 4%;
  }


.product-highlight .highlight-content {
	padding-top: 3rem;
	position: absolute;
}
.product-highlight .highlight-content.absolute-center {
	left: 50%;
    transform: translate(-50%, 0);
}

.product-highlight .highlight-content.right {
  padding-top: 7rem;
  position: absolute;
  left: 40%;
}
.text-container {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    margin: 0 auto;
  }
.product-highlight .highlight-content {
	padding-top: 3rem;
	position: absolute;
}


.title-container h2 {
    font-size: 4rem;
    font-weight: 700;
}

.grid-container.title-container {
    padding-bottom: 3rem;
}
/* HERO BANNER */
@media print, screen and (max-width:48em) {
	.product-highlight .highlight-content {
		padding-top: 1.8rem;
        margin-left: 1rem;
    }
	.product-highlight .highlight-content.right {
		padding-top: 1.5rem;
		position: absolute;
		left: .5rem;
	}
	
	.highlight-content.mobile-fix {
        position: relative;
    }

    .grid-container h2, .title-container h2 {
      font-size: 1rem;
  }
      .product-highlight .highlight-content {

        margin-left: 1rem;
    }

    .page-banner-two {
      height: 100px;
    }

     .grid-margin-x>.small-12 {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        font-size: 1rem;
      }
    
    .orbit p {
      font-size: 1rem;
    }
    
    h4 {
      font-size: .9rem;
    }
    
    h2.slide-title {
      font-size: 1.8rem;
    }
    
    #promo-banner {
      font-size: .8rem;
      padding-left: .25rem;
    }

    .product-highlight .highlight-content  {
      padding-top: 3rem;
   }
   
	.grid-container .medium-heading {
		font-size: 1rem;
	}
	}

	@media only screen and (max-width: 600px) {
		.product-highlight .highlight-content {
		  padding-top: .5rem;
		}
		.small-offset-1 {
		  margin-left: 1rem;
	  }
	  .product-highlight .highlight-content {
		  margin-left: 0rem;
	  }

	  }

.highlight {
	color: rgb(25,103,210)!important;
    background-color: rgb(232,240,254)!important;
    box-shadow: inset 0 0 0 1px rgb(25,103,210)!important;
}
.right-nav.container {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-right: 2rem;
}

.right-nav .relativecursor-pointer {
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center; /* Vertically aligns the cart icon */
	margin-bottom: 10px;
}

.right-nav .cart-button,
.right-nav .buy-button {
	margin-bottom: 10px;
}

.right-nav .buy-button {
	text-decoration: none;
	color: white;
	display: inline-block;
}

.buy-button:hover {
	background-color: rgb(0, 113, 227);
}
#cart-button {
	display: block;
    position: fixed;
}
.right-section {
	display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 2rem;
}
.relativecursor-pointer {
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center; /* Vertically aligns the cart icon */
	margin-bottom: 10px;
}
.leftnav button:hover, #support-button, #cart-button, .material-but, .cursor-pointer {
		cursor: pointer;
}
.shadow{
		box-shadow: 0 0px 10px 0 rgba(0,0,0,.15);
}

.grid-container h4 {
	font-size: 1.25rem;
    font-weight: 400;
}
footer .grid-container h4 {
	letter-spacing: 0px;
}
.grid-container h2 {
    font-weight: 700;
}
.grid-container p, .grid-container ul, .grid-container ol {
    line-height: 1.7;
    font-size: 18px;
    font-weight: 400;
}
.button-btm a{
    background-color: transparent;
    color: black;
    border: 2px solid black;
    font-size: 1rem;
	padding: 1rem;
}

.button-btm a.button {
    margin: 1rem 0 1rem 0;
}

.button-btm a.white {
	border-color: white;
	color: white;
}

.button {
    display: inline-block;
    margin: 0 0.5rem;
    padding: 0.85em 1.5em;
    -webkit-appearance: none;
    border: 1px solid transparent;
    border-radius: 0;
    transition: background-color .25s ease-out,color .25s ease-out;
    font-size: .9rem;
    text-align: center;
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
}

.product-highlight .highlight-content.right-text {
    padding-top: 7rem;
    position: absolute;
    left: 60%;
}
@media print, screen and (max-width: 48em){
.product-highlight .highlight-content.right-text {
    padding-top: 1.5rem;
    position: absolute;
    left: 0.5rem;
}
}

.also-bought .grid-container {
	margin-bottom: 3rem;
}






/*
.grid-x div.cell:first-child img {
	float: right;
}
*/

.megaMenuContent .grid-x div.cell:first-child img {
	float: none;
}

#pgallery img {
	float: none;
}



.circle-content {
	color: black;
	float: left;
	line-height: 1.2;
	margin-top: -3em;
	padding-top: 50%;
	text-align: center;
	width: 100%;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .5px;
}

.invert {
  filter: invert(100%);
}

.circle {
  position: absolute;
  z-index: 1;
  right: 10%;
  border: 2px solid rgb(47, 190, 233);
  background-color: transparent;
  opacity: 1;
  height: 160px;
  width: 160px;
  border-radius: 120px;
}

.circle.left {
left: 37%;
margin-top: 4%;
}

.grid-container .question h4, .grid-container .reviewContainer h4 {
	font-size: 1.3rem;
	margin-bottom: -0.5rem;
}
.grid-container .question, .grid-container .reviewContainer p {
	font-size: 1rem;
}
.grid-container .reviewContainer h4 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

@media screen and (max-width:47.938em) {
    #promo-banner .grid-container .promo-details {
        font-size: .75rem;
        line-height: 1.1
}
.cell.statement h2 , .large-h-tag, .grid-container .large-h-tag  {
    font-size: 2rem;
    font-weight: 600;
}
.circle.product {
	display: none;
 }
.circle.left {
    right: 1.5rem;
    margin-top: -25px;
    border: none;
    left: 55%;
  }
	.productname h1 {
		font-size: 1.2rem;
		margin: .4rem 0 1rem 0;
	}

	.productname {
		margin-top: 0;
	}

	.promomsg {
		font-size: .8rem;
    }
	
    .promomsg p {
		line-height: 2;
		margin: 0rem;
	}
	.leftoffer {
		padding-top: 4px;
	}




	#banner-banner h3 {
		font-size: 1rem;
	}

	.product__name h3 {
		margin-bottom: 0rem;
		font-size: 1.2rem;
	}
	#video   {
		padding-left: 0;
		padding-right: 0;
	}

	.questionContainer, .reviewContainer {
		padding: 1rem;
	}

	#questions h4 {
		font-size: 1.4rem;
		line-height: 1.2;
	}

		#questions p {
		font-size: .8rem;
	}

	#reviews {
		margin-top: 2rem;
	}

	#reviews h4, #reviews h5 {
		font-size: 1rem;
	}

	.slidernav {
		overflow-x:scroll;
	}
	
	.filter-grid, .filter-grid-3 {
		margin: 1rem auto;
		grid-gap: 5px;
	}
	.filter-image img {
		width: 35px;
	}
	.grid-container .filter-grid .filter-name p, .grid-container .filter-grid-3 .filter-name p {
		font-size: .7rem;
		line-height: 1;
		color: #000000;
	}
}

#reviews .grid-container{
    padding: 1rem;
}
    .review, .dealer-section {
display: flex;
flex-direction: column;
align-items: center;
background-color: #f2f2f2;
border-radius: 0px;
padding: 24px;
margin-bottom: 40px;
}

.review span svg {
margin-right: 4px;
}

.review p {
font-size: 16px;
line-height: 1.5;
margin: 0;
color: #4f4f4f;
}

.review p:last-child {
margin-bottom: 0;
}
.topright {
	position: absolute;
	top: 0;
	right: 0;
	width: 35%;
  }
.product-image {
	width: auto;
}
.product-text p{
	margin-bottom: 3rem;
}


/* LAZYLOAD Fade in CSS */
img.lazy {
opacity: 0;
}
img:not(.initial) {
transition: opacity .5s;
}
img.initial,
img.loaded,
img.error {
opacity: 1;
}

img:not([src]) {
visibility: hidden;
}
/* end of lazyload fade in */

.blueline {
	color: #0a92ef;
	text-decoration: none;
}

.feature-list {
	line-height: 1.5rem;
	padding: 0rem 1.5rem;
	font-size: 1rem;
}

.feature-list li {
	margin: 1rem 0rem;
}

.question h4 {
	background-color: #f2f2f2;
	margin: 0;
	padding: 1rem .5rem;
	box-shadow: -0.15rem 0.15rem 0.6rem rgba(0,0,0,.2);   
}

.question p {
	padding: .5rem 1rem .5rem 1rem;
	box-shadow: -0.15rem 0.15rem 0.6rem rgba(0,0,0,.2);
	width: 80%;
	margin-left: 3rem;
}

.question h4::before {
content: 'Q';
font-size: 1.75rem;
color: #c3c1c0;
font-weight: 700;
line-height: 1rem;
margin-right: 1.5rem
}

.question p::before {
content: 'A';
font-size: 1.75rem;
color: #c3c1c0;
font-weight: 700;
line-height: 1rem;
margin-right: 1.5rem
}

.top-features .cell img {
    margin: 0 auto 1rem;
}

.promo-icons {
	float: left;
	height: 30px;
	width: 30px;
	margin: 0rem 1rem 0rem 0rem;
	opacity: .8;
}
.why-buy .promo-icons {
	margin: 1rem 1rem 0rem 0rem;;
}

.special-offers .promo-icons {
	margin: 0rem 1rem 0rem 0rem;
}

.why-buy p {
	margin-bottom: 0rem;
	line-height: 1.2;
	padding-left: 5px;
}

.save {
	display: inline-block;
	background-color: #d14124;
	color: white;
	padding: 3px;
	margin-top: 4px;
}

.product__price  .save {
	padding: 5px 3px 0px 5px;
    margin-top: 4px;
    height: 25px;
    font-size: 1.2rem;
}

#mainproduct h3 {
	letter-spacing: .5px;
    line-height: 1.7;
    font-size: 18px;
    font-weight: 400;
}

#mainproduct h3.product-subtitle, .product-subtitle {
	font-size: 1.5rem;
	font-weight: 700;
}

#mainproduct .product-name {
	margin: 0.15rem 0rem;
}
.feature-div .compare-text h2 {
	text-align: center;
}
.blackbox {
	background: rgb(69,69,69);
	color: white;
	padding: .15rem .5rem;
}

.black-bold {
	color: black;
	font-weight: 700;
}
.greybox {
	background: #DCDCDC;
	color: black;
	padding: .15rem .5rem;
	font-weight: 700;
}

.green {
	color: green;
}

.below-price {
	display: flex;
	margin-bottom: 1rem;
}

.product-margin {
	margin-left: .75rem;
}

.product-category-data .image-container {
	position: relative;
	overflow: hidden;
  }
  
  .product-category-data .hover-image {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
  }
  
  .product-category-data .image-container:hover .hover-image {
	opacity: 1;
  }
  
  .product-category-data .image-container:hover .default-image {
	opacity: 0;
  }
  
  .product-category-data .image-container:hover .top-left-banner,
  .product-category-data .image-container:hover .top-right-banner {
	display: none;
  }

  .black-box {
	color: white;
	background-color: black;
	text-align: center;
	font-weight: 600;
	padding: 5px;
	max-width: 200px;
	margin: 0rem .25rem;
  }

  .black-box h3 {
	margin: 1rem 0rem 0.5rem;
	font-weight: 600;
  }

  .black-box h4 {
	margin: 0rem 0rem 1rem;
  }
  .coupon .black-box {
	height: 100%;
  }
  
.cta-container {
	background-color: black;
	padding: 4rem 0rem;
	color: white;
  }

  #next .button-btm .material-but {
    width: 200px;
}

.overall-reviews button {
	display: block;
    margin-top: 0rem;
    text-decoration: underline;
	background: none;
    border: none;
	cursor: pointer;
}

.product-help-grid {
	display: grid; grid-template-columns: 1fr 1fr; grid-gap: 2rem;
}

.product-help-grid img {
	max-width: 340px;
	margin: auto;
}

.coupon {
	background-color: #f2f2f2;
}

.modal {
    display: none;
    position: fixed;
    z-index: 99;
    padding-top: 3rem;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000;
    background-color: rgba(0, 0, 0, .4);
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
	margin-bottom: 6rem;
    border: 1px solid #888;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: .4s;
    animation-name: animatetop;
    animation-duration: .4s;
}
.modal-content .cell img {
	margin: 2rem 0rem;
}

.modal-footer,
.modal-header {
    background-color: #fff;
    color: #fff;
}

.modal-header {
    padding: 0 1rem 1rem 0;
}

.modal-body {
    padding: 3px 0;
}

.modal-footer {
    padding: 2px 16px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    border: 1px solid #888;
    max-width: 1000px;
    overflow: auto;
}

.close-button {
    color: #aaa;
    float: right;
    font-weight: bold;
    cursor: pointer;
	position: absolute;
	top: 1rem;
	right:1rem;
	font-size: 4rem;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#modalBody {
    margin-top: 20px;
}

.modal-item {
    margin-bottom: 20px;
}

.modal h2 {
    margin-top: 0;
}

.modal h3 {
    margin-top: 0;
	margin-bottom: 1rem;
}

.modal p {
    margin-bottom: 0;
}

.four-points-top {
	margin-top: 4%;
}

.tweleve-points-top {
	margin-top: 12%;
}

#openModal {
	cursor: pointer;
	border: none; 
	background: none;
	color: black;
	padding: 0rem;
}
.why-buy #openModal {
	text-align: left;
}

#openModal img {
	height: 16px;
	width: 16px;
}

.featured-robots {
	background-color: #f2f2f2;
	padding: 1rem;
	margin-bottom: .5rem;
}

.featured-robots img {
	margin: auto;
}

#link-nav {
	max-width: 1200px;
	text-align: center;
	margin: 1rem auto;
}
#link-nav a, #category-nav {
	cursor: pointer;
}
#link-nav .cell img {
	float: none;
}
.landing-page-category {
	max-width: 1600px;
	margin: 1rem auto;
}

.grid-container .category-slider p .save, .grid-container .category-slider p .fullprice, ..grid-container .category-slider p .currentprice {
	line-height: 1rem;
	font-size: 1.2rem;
	font-weight: 600;
}

.swiffy-slider .product__price p {
    font-family: sans-serif;
    font-size: 1.6rem;
}

.swiffy-slider .product__name p {
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 600;
}
.swiffy-slider .product__price p {
    font-family: sans-serif;
    font-size: 1.6rem;
}

.swiffy-slider .slider-container p {
	line-height: 1.15;
	font-weight: 200;
}

.collection-video {
	padding: 1rem;
}
.collection-video img {
	display: block; aspect-ratio: 320/180; max-width: 320px; margin: 2rem auto;
}

#feature-set table figure img {
	max-width: 100%;
}

.auto-aspect {
	aspect-ratio: auto!important;
}

span.circlenum {
	background: black;
	border-radius: 0.8em;
	-moz-border-radius: 0.8em;
	-webkit-border-radius: 0.8em;
	color: #fff;
	display: inline-block;
	font-weight: bold;
	line-height: 1.6em;
	margin-right: 15px;
	text-align: center;
	width: 1.6em; 
  -webkit-box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.75);
  -moz-box-shadow:    7px 7px 5px 0px rgba(50, 50, 50, 0.75);
  box-shadow:         7px 7px 5px 0px rgba(50, 50, 50, 0.75);
  }

  @media (max-width: 767px) {
	.swap-mobile {
	  flex-direction: column-reverse;
	}
  }
  
  @media (min-width: 768px) {
	.swap-mobile {
	  flex-direction: row;
	}
  }
  
  .swap-mobile {
	display: flex;
	flex-wrap: wrap;
  }

  .swap-mobile-child {
	flex-basis: 100%;
  }



  sup.sup-cross {
	font-size: .8rem;
  }

  .feature-description {
	max-width: 800px;
  }

  .compare-item-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
  }
  .compare-item-grid .vs {
    margin-top: auto;
    text-align: center;
  }

  .icon-img {
	max-width: 100px;
	display: block;
	margin: auto;
  }
  .flex-side-by-side {
	display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
  }
  .accolades {
	background-color: white;
	color: black;
	padding: 1rem 0;
	}
  .accolades img {
	width: auto;
  }
	.accolades h3 {
	font-size: 2.5rem;
	font-weight: 600;
  }
  
  .accolades h3 a {
	color: black;
	text-decoration: solid underline black 3px;
	-webkit-text-underline-offset: 4px;
	text-underline-offset: 4px;
  }
 #table-of-contents {
	cursor: pointer;
	transition: opacity .2s, transform .2s, background-color .3s, height .2s;
 }
  #table-of-contents a {
	color: white;
	display: block;
	border: none;
	padding: 8px 0px;
	font-weight: 600;
  }
  #table-of-contents a:last-child {
	padding-bottom: 30px;
  }

  #table-of-contents a:hover {
	color: #1967D2;
  }
  #table-of-contents hr{
	border-color: rgba(255,255,255,.15);
  }
  span.table-name {
	font-size: .75rem;
	opacity: .5;
  }
  span.section-name {
	font-size: 1.125;
	font-weight: 600;
  }
.width-auto img{
	width: auto;
	margin: auto;
	display: block;
}

.no-style-button {
	border: none;
	padding: 0;
	background: none;
	cursor: pointer;
}



.wistia {
    background-color: #000;
    margin-bottom: 30px;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer;
}
.wistia img {
    width: 100%;
    top: 0; /* Change this for different ratio than 16:9 */
    left: 0;
    opacity: 0.7;
}
.wistia .play-button {
    width: 90px;
    height: 60px;
    background-color: #333;
    box-shadow: 0 0 30px rgba( 0,0,0,0.8 );
    z-index: 1;
    opacity: 0.8;
    border-radius: 6px;
}
.wistia .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
}
.wistia img,
.wistia .play-button {
    cursor: pointer;
}
.wistia img,
.wistia iframe,
.wistia .play-button,
.wistia .play-button:before {
    position: absolute;
}
.wistia .play-button,
.wistia .play-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0 );
}
.wistia iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.top-left-banner.no-border.also-viewed-award {
	top: -10px;
}
.top-left-banner.no-border.also-viewed-award img {
	width: 120px;
	height: 120px;
}

.compare-table {
	border: 4px solid #aaa;
	padding: 0.5rem 2rem;
}
.compare-table .cell h3 {
	font-weight: 700;
}
.compare-table ul {
	list-style: none; /* Remove default list bullets */
	padding-left: 20px; /* Add left padding to create space for the bullets */
	margin: 0.8rem 1.3rem;
}

/* Apply styles to the <li> elements */
.compare-table li {
	margin-bottom: 1rem; /* Add bottom margin to space out list items */
}
.compare-table li::before {
	content: "";
	width: 0.3125rem;
	height: 0.3125rem;
	position: absolute;
	margin-top: 0.6875rem;
	margin-left: -0.8em;
	border-radius: 50%;
	background: #1967D2;
	margin-left: -1.25rem;
	background-image: none;
}

.grid-container .h1-title {
	margin: 0.67em 0;
	font-size: 2.7rem;
	font-weight: 600;
	text-transform: none;
    letter-spacing: 0;
  }

  .top-left-banner.no-border.category-award img {
	width: 100px;
	height: 100px;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
}
.grid-2.feature-table {
    margin-top: 1rem;
    padding: 1rem;
    grid-gap: 2rem;
}
.grid-2.feature-table img {
    margin: auto;
    max-width: 25px;
}
.grid-2.feature-table div {
    padding: 1rem;
    background-color: rgba(0,0,0,.05)
}
.star-div {
	display: flex;
}
.star-title {
	display: inline-block; font-size: 20px; margin: 0rem 0rem 0rem 1rem;
}
  @media (max-width: 768px) {
	.grid-container .h1-title {
	font-size: 1.5rem;
	}
	.grid-container .h2-title {
		font-size: 1.25rem;
		}
	.grid-container .h1-title sup {
		font-size: 1rem;
	}
	.grid-container #main-title h2 {
		font-size: 1rem;
		margin-top: 0rem;
	  }
	.top-left-banner.no-border.also-viewed-award img {
		width: 60px;
		height: auto;
	}
	.compare-table {
		padding: .5rem;
	}
	.grid-2.feature-table {
		padding: 0rem;
		grid-gap: 0.5rem;
	}
	.grid-2.feature-table div {
		padding: 1rem 0.5rem;
	}
  }

  /* Small screens (480px and below) */
	@media (max-width: 480px) {
	/* Your CSS styles for small screens go here */
		.responsive-size-premier {
			width: 60px;
		}
		.top-left-banner.no-border.also-viewed-award img {
			width: 50px;
			height: 50px;
		}
		.container.right-nav .buy-button {
			padding: 0.5rem .5rem;
		}
  }
  
  /* Medium screens (between 481px and 1280px) */
  	@media (min-width: 481px) and (max-width: 1280px) {
	/* Your CSS styles for medium screens go here */
	.responsive-size-premier {
		width: 85px;
	}
	.top-left-banner.no-border.also-viewed-award img {
		width: 80px;
		height: 80px;
	}
  }
  
  /* Wide screens (between 1281px and 1366px) */
 	 @media (min-width: 1281px) and (max-width: 1366px) {
	/* Your CSS styles for wide screens go here */
	.responsive-size-premier {
		width: 100px;
	}
	.top-left-banner.no-border.also-viewed-award img {
		width: 100px;
		height: 100px;
	}
  }
  
  /* Larger screens (1536px and above) */
  	@media (min-width: 1366px) and (max-width: 1536px) {
	/* Your CSS styles for larger screens go here */
	.responsive-size-premier {
		width: 110px;
	}
	.top-left-banner.no-border.also-viewed-award img {
		width: 100px;
		height: 100px;
	}
  }
  
  
  #overview {
	margin-top: 1rem;
}

.black {
	color: black;
	transition: color 350ms ease;
}

/* SPECTRALIGHT CODE */
.orange {
	color: #f68a1f;
	text-decoration: none;
  }

.xl-heading {
	font-size: 6vw;
}

.large-heading {
	font-size: 4vw;
}

.medium-heading {
	font-size: 2vw;
}

.black-statement {
	background-color: black;
	color: white;
  }

  .statement.wide {
    margin-bottom: 3rem;
    padding-bottom: 8rem;
    padding-top: 6rem;
}

.statement h2 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 2.5rem;
}
.large-h-tag {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
}

.statement h3 {
	font-size: 2rem;
	font-weight: 700;
}

.grid-container .medium-h-tag {
	font-size: 2rem;
	font-weight: 700;
}

.navigation-bar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	background: black;
	text-align: left;
	width: 100%;
	align-items: center;
	padding-top: 0.5rem;
	padding-bottom: 0.25rem;
	position: relative;
	transform: scale(1,1);
	margin-bottom: 0.5rem;
	color: white;
  }
  
  
  
  .nav-links {
	position: relative;
	text-align: left;
	transition: none;
	transform: scale(1,1);
	background: none;
	top: initial;
	left: initial;
	grid-column: 2 / 3;
	display: flex;
	justify-content: flex-end;
	align-items: center;
  }
  .nav-links li {
	margin-bottom: 0rem;
  }
  
.nav-links a{
	opacity: 1;
	color: white;
}
  .nav-links a:hover {
	color: #f68a1f;
  }

  .active-nav a {
	color: #f68a1f;
    border-bottom: 8px solid #f68a1f;
    padding-bottom: 0.6rem;
}
.section-grey {
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top: 1px solid #ebebeb;
}
.quote {
    padding: 40px;
    background-color: #f7f7f7;
    -moz-border-radius: 227px;
    -webkit-border-radius: 227px;
    border-radius: 227px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    max-width: 250px;
    max-width: 250px;
    text-align: center;
}

.product-card {
	position: relative;
	background-color: white;
	color: black;
	border-radius: 1rem;
	transition: transform 1s cubic-bezier(.165,.84,.44,1),border-radius 1s cubic-bezier(.165,.84,.44,1);
	box-shadow: 2px 4px 12px rgba(0,0,0,.08);
}
.grid-x .product-card {
	margin-bottom: 2rem;
}
.product-card:hover {
	box-shadow: 2px 4px 16px rgba(0,0,0,.16);
	transform: scale3d(1.01,1.01,1.01)
}
.swiffy-slider .product-card:hover {
	transform: none;
}
.product-card .product-card-img {
	max-width: 1200px;
	width: 100%;
	position: relative;
	bottom: 0;
	z-index: 1;
}
.product-card .product-card-content {
	position: relative;
	padding: 3vw;
	z-index: 2;
}
.product-card .product-card-absolute {
	position: absolute;
	height: 100%;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.product-card .knowledge {
	padding: 1vw;
}
.product-card-dot {
align-items: center;
background-color: black;
border-radius: .625vw;
display: flex;
height: 1.2499999999vw;
justify-content: center;
left: 2.2916666665vw;
position: absolute;
top: 2.0833333332vw;
transition: transform .9s cubic-bezier(.165,.84,.44,1);
width: 1.2499999999vw;
will-change: transform;
z-index: 3;
}
.product-card-dot-arrow {
opacity: 0;
overflow: hidden;
transform: translate3d(-100%,0,0);
transition: opacity .1s cubic-bezier(.165,.84,.44,1),transform .3s cubic-bezier(.165,.84,.44,1);
width: .9722222222vw;
will-change: opacity,transform;
}
.product-card-dot-arrow path{
	fill: white;
}
.product-card:hover .product-card-dot {
transform: scale(2);
}

.product-card:hover .product-card-dot-arrow, .product-card-dot-arrow.show-arrow {
opacity: 1;
transform: scale(.5);
transition: opacity .2s cubic-bezier(.165,.84,.44,1),transform .3s cubic-bezier(.165,.84,.44,1);
}
.small-img .product-card-content img, .original-size-img {
    display: block;
    width: auto;
    margin: 0rem auto;
}
.imagetext-circle {
    position: absolute;
    right: 10px;
    top: 0;
    width: 140px;
    height: 140px;
    background-color: #f68a1f;
    -moz-border-radius: 227px;
    -webkit-border-radius: 227px;
    border-radius: 227px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.imagetext-circle h2 {
    padding: 25px;
    color: #fff;
    font-family: 'Open Sans', 'HelveticaNeue-Light', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    line-height: 1.3em;
}
.right-nav-arrow {
    align-items: center;
    background-color: #030507;
    border-radius: 2.361111111vw;
    display: flex;
    height: 2.361111111vw;
    justify-content: center;
    margin-right: 1.3888888888vw;
    transition: background-color .3s ease;
    width: 2.361111111vw;
    will-change: background-color;
}
.right-nav-arrow-icon {
    fill: #f3f3f3;
    transition: fill .3s ease;
    width: 0.9763888888vw;
    will-change: fill;
}
.nav-arrow-container {
	color: black;
	align-items: center;
    cursor: pointer;
    display: flex;
    margin-left: auto;
    opacity: 1;
    transform: none;
    transition: opacity .6s cubic-bezier(.165,.84,.44,1),transform .6s cubic-bezier(.165,.84,.44,1);
    will-change: transform,opacity;
	margin-bottom: 1rem;
}
#main-title h1.xl-heading {
    letter-spacing: -4px;
    font-weight: 700;
}
@media (max-width: 1024px){
	.statement h3 {
		letter-spacing: .5px;
		line-height: 1.7;
		font-size: 18px;
		font-weight: 400;
	}
	.grid-container .medium-h-tag {
		letter-spacing: .5px;
		line-height: 1.7;
		font-size: 18px;
		font-weight: 400;
	}
	.grid-container .knowledge h2 {
		font-size: 1rem;
	}
	.nav-arrow-container h3 {
		margin: 0rem;
		font-size: 1rem;
	}
	.right-nav-arrow {
		border-radius: 2rem;
		height: 2rem;
		width: 2rem;
	}
	.right-nav-arrow-icon  {
		width: 1rem;
	}
	.product-card-dot-arrow, .product-card-dot {
		display: none;
	}
	#main-title h1.xl-heading {
		letter-spacing: 0px;
		font-weight: 700;
	}
	#main-title.transparentbanner-title h1{
		margin-top: 3rem;
		font-size: 2rem;
	}
}

.nav-arrow-container.orange-arrow, .nav-arrow-container.blue-arrow {
	color: white;
}
.nav-arrow-container.orange-arrow:hover, .nav-arrow-container:hover {
	color: #f68a1f;
}

.orange-arrow .right-nav-arrow {
	background-color: #f68a1f;
}

.orange-arrow .right-nav-arrow-icon, .blue-arrow .right-nav-arrow-icon {
	fill: black;
}
.blue-arrow .right-nav-arrow {
	background-color: #1967D2;
}
.nav-arrow-container.blue-arrow:hover {
	color: #1967D2;
}
.product-card-dot.white-arrow {
	background-color: white;
	
}
.product-card-dot.white-arrow .product-card-dot-arrow path {
	fill: black;
}


.nav-arrow-container:hover .right-nav-arrow-icon {
    animation: navContactArrowHover .6s ease;
}
@keyframes navContactArrowHover {
	49% {
		opacity: 0;
		transform: translate3d(50%,0,0)
	}

	50% {
		opacity: 0;
		transform: translate3d(-50%,0,0)
	}

	to {
		opacity: 1;
		transform: none
	}
}
.lines-animation {
    stroke: #f3f3f3;
    height: 19.4444444432vw;
    margin-bottom: 2.0833333332vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .8;
    position: absolute;
    width: 100%;
    will-change: opacity;
    }


.quote-large {
	margin: 3rem 0rem;
	padding: 2rem 2rem;
	border-radius: 16px;
	background: black;
	color: white;
}
.quote-large h4 {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0px;
	line-height: 1.5;
}
.quote-large p {
	margin-left: 2rem;
}
.text-indent {
	text-indent: -40px;
	padding-left: 40px;
}

.grid-padding {
	padding-top: 4rem;
	padding-bottom: 4rem;
}
.grid-padding-top {
	padding-top: 4rem;
}
.product-padding {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

header.transparentheader {
	position: absolute;
	background: transparent;
}



header.transparentheader .product-highlight .highlight-content {
	padding-top: 4rem;
}
header.transparentheader.whiteheader #cartNumber{
	color: black;
	background: white;
}

header.transparentheader.whiteheader nav a, header.transparentheader.whiteheader #cart-button {
	color: white;
}

#knowledgeWrapper img {
	width: auto;
	display: block;
	margin: 0rem auto;
}
#knowledgeWrapper .product-card {
	text-align: center;
	margin-bottom: 2rem;
}
.store-heading {
	margin-bottom: 2rem;
}
.store-heading h2 {
	margin-bottom: 0rem;
}

.store-heading.mainstore h1, .store-heading.mainstore h2 {
    margin: 0rem;
    font-weight: 700;
}
.content-heading h2, .content-heading h3 {
    margin: .5rem;
}

.grid {
	display: grid;
}

/* Category page CSS - Start */
#no-products-message {
	width: 100%;
    text-align: center;
    padding: 3rem;
    background: white;
    font-size: 1.5rem;
    font-weight: 600;
}

#explore-features .bluelink.blue-arrow, #our-top-picks .bluelink.blue-arrow  {
	border: none;
}

#explore-features .bluelink.blue-arrow  {
	display: block;
    margin: 0rem auto;
	margin-top: 8px;
    text-align: center;
}

.filter-button {
	cursor: pointer;
	background: #f2f2f2;
    width: 100%;
	height: 30px;
    border: none;
	margin-bottom: 1rem;
	text-align: center;
    display: flex;              /* Enable Flexbox */
    align-items: center;        /* Vertically center items */
    justify-content: center;    /* Horizontally center items */
}

.filter-button img {
    width: 24px;
    height: 24px;
    margin-right: 8px;          /* Optional: space between the image and the text */
}

.text-right {
	text-align: right;
}

.full-width-center {
	width: 100%;
    text-align: center;
}
.category-text {
	display: block;
	text-align: right;
	font-size: 14px;
	margin-bottom: .25rem;
}
.filter-selection {
	position: relative;
}
.border-right:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: white;
}

.explore-section .h1-title {
	margin-top: 0rem;
}

.category-page-section {
	scroll-margin-top: 70px;
	margin-bottom: 4%;
}
.margin-bottom-0, .grid-container .margin-bottom-0 {
	margin-bottom: 0rem;
}
.grid-container .font-weight-400 {
	font-weight: 400;
}
.leftnav.category-page {
	display: flex; gap: 8px; padding-bottom: 0.5rem; margin-left: 0rem; padding-top: .5rem;
}
#products .margin-left-auto {
	margin-left: auto;
}
#products .category-title {
	margin-top: 0rem;
	margin-bottom: 0rem;
	font-weight: 600;
	color: #000;
}
#products .category-description {
	margin-top: 4px;
	line-height: 1;
}
#products .overall-reviews button {
	width: 100%;
    text-align: right;
}

#our-top-picks figure, #about figure {
	max-width: 500px;
	margin: 0rem auto;
}
#our-top-picks .h2-title {
	margin-top: 0rem;
}

#products .product__price .save, .was-price {
	margin-top: 0px;
	padding: 4px 4px 0px 4px;
	font-size: 14px;
}

#products hr {
	display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
#products ul li {
	line-height: 1;
	margin-bottom: .5rem;
}
#products .learn-more {
	margin-left: auto;
    display: block;
    border: none;
}
#products .save {
	margin-top: 0px;
	font-size: 14px;
}
#shop select, #shop button.filter-button {
  -webkit-border-radius: 0px;
  border-radius: 0px;
  color: black;
}
#filter-selector {
    position: sticky;
    left: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: visible;
    background: white;
    align-self: start;
    padding: 0rem 0.5rem;
}

#filter-selector h4 {
	font-size: 1rem;
	font-weight: 500;
	margin-top: 1.25rem;
    margin-bottom: 0.3rem;
	color: #474747;
}
#filter-selector form div {
	color: #575757;
	margin-top: 10px;
}
@media print, screen and (max-width: 64em) {
	#filter-selector {
		display: none;
	  }
	}
.button-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.leftnav button:hover, .leftnav button.highlight, .leftnav a:hover, .leftnav a.highlight {
	border: 2px solid #1967d2;
}
/* End of Category PAge CSS */

.flex-img-text {
	display: flex;
	border-radius: 20px;
}
.flex-img {
	max-width: 150px;
	border-radius: 20px 0px 0px 20px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.flex-text {
	padding: 10px 15px;
}
.flex-text h3 {
	font-size: 18px;
}
.flex-text p {
	line-height: 1;
}
.absolute {
	position: absolute;
}

.black-bg-banner {
    background: rgba(0,0,0,1);
    color: white;
	padding: 2rem;
}

.no-margin-children-div {
	margin: 1rem 0rem;
}
.no-margin-children-div > * {
	margin: 0rem;
}
.no-margin-children-div p {
	line-height: 1.2;
}

.overflow-visable {
	overflow: visible;
}

.sticky-img-category {
	position: sticky;
	top: 120px;
}

.grid-container.nopad.absolute {
	width: 100%;
}

.absolute-center {
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	box-sizing: border-box;
    padding: 1rem;
}

.padding-top-0 {
	padding-top: 0rem;
}

table#review-table {
	width: 100%;
	table-layout: fixed; /* This helps in enforcing column widths */
	border-collapse: collapse;
}
#review-table th, #review-table td {
	text-align: left;
	padding: 8px;
}
#review-table td {
	height: 0rem;
	font-size: 14px;
}
#review-table tr:nth-child(2n) {
	background-color: transparent;
}
.progress-bar-container {
	display: flex;
	align-items: center;
}
.progress-bar-background {
	background-color: darkgray;
	width: 100%; /* This will fill the cell it's in */
	height: 20px;
	position: relative;
	margin: 0 10px; /* Adjusted to not affect width */
}
.progress-bar-fill {
	position: absolute;
	background-color: #FFA41C;
	height: 20px;
}
/* New CSS to control column widths */
#review-table th:first-child, #review-table td:first-child {
	width: 20%; /* Adjust these percentages as needed */
}
#review-table th:last-child, #review-table td:last-child {
	width: 20%; /* Adjust these percentages as needed */
}
#review-table th:nth-child(2), #review-table td:nth-child(2) {
	width: 60%; /* This is the progress bar column */
}

.open-live-chat {
	cursor: pointer;
}

.display-block {
	display: block;
}

.padding-1-5 {
	padding: 1.5rem;
}
.side-by-side-container {
    display: flex;
    align-items: center;
    justify-content: center;
	margin-top: 1rem;
}

.image-container, .text-container-side {
    display: flex;
    align-items: center;
}

.help-icon {
    width: 36px;
    height: 36px;
}

.help-icon-large {
    width: 100px;
    height: 100px;
}


.chat-title {
    margin: 0 0 0 10px; /* Adjusts spacing between the icon and the text */
}

h1, .h1-title {
    font-size: 2.5rem;
}
.buy-button-grid {
    display: flex;
	flex-wrap: wrap;
    gap: 4px;
}
.buy-button-grid button.bigbuy {
    display: block;
    font-size: 18px;
    padding: 0 20px;
    background-color: rgb(26,115,232);
    color: white;
    height: 40px;
    line-height: 40px;
    width: 100%;
    max-width: 400px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    margin: 8px 0;
}
.buy-button-grid #quantity-input {
    display: block;
    font-size: 22px;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    margin: 8px 0;
    color: #3c4043;
    border-color: #3c4043;
}
.feature-card {
	margin-bottom: 2rem;
}
.feature-card img {
	width: 75px;
	height: 75px;
	margin-bottom: 8px;
}
.feature-card h5 {
	margin-top: 0rem;
	margin-bottom: 8px;
	font-weight: 400;
}
.compare-product-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(150px, 1fr));
	overflow-x: auto;
	gap: 10px;
	padding: 0px 10px;
}
.compare-product-grid-5 {
	display: grid;
	grid-template-columns: repeat(5, minmax(150px, 1fr));
	overflow-x: auto;
	gap: 10px;
	padding: 0px 10px;
}

.compare-product-grid-3 hr, .compare-product-grid-5 hr {
	margin-top: 2rem;
}

.compare-product-title h4{
	font-size: 22px;
	font-weight: 600;
	padding: 0rem 10px;
}
.compare-product-title h5{
	font-size: 18px;
	font-weight: 400;
	padding: 0rem 10px;
	margin: 10px;
}

.flex-img-text {
	display: flex;
	border-radius: 20px;
}
.flex-img {
	max-width: 150px;
	border-radius: 20px 0px 0px 20px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.flex-text {
	padding: 10px 15px;
}
.flex-text h3 {
	font-size: 18px;
}
.flex-text p {
	line-height: 1;
}
.buy-button-grid button.bigbuy.sold-out, button.bigbuy.sold-out {
	background-color: grey;
	cursor: auto;
}

.margin-bottom-10 {
	margin-bottom: 10px;
}
.margin-bottom-20 {
	margin-bottom: 20px;
}
.margin-top-30 {
	margin-top: 30px;
}
.margin-right-1 {
	margin-right: 1rem;
}
.float-right {
	float: right;
}
/* Initial state with max-height set to 0 to collapse the div, and fully transparent */
.hidden-category {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.5s, opacity 0.5s linear, max-height 0.5s ease-out; /* Adjust max-height transition time as needed */
}

/* State for when the div is visible and expanded. Set a max-height greater than the content's total height */
.visible-category {
    max-height: 500px; /* Adjust based on the estimated maximum content height */
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 0.5s linear, max-height 0.5s ease-in;
}

.filter-category-selections {
	width: auto;
	padding: 0px 12px;
}
.toggle-button {
	display: block;
	width: 100%;
	background-color: transparent;
	cursor: pointer;
	border: 0rem;
	padding: 1rem;
}
.toggle-button span {
	float: left;
}
.toggle-button svg {
	float: right;
}
.filter-toggle {
	margin-top: 0rem;
	margin-bottom: 1rem;
}

.text-page .top-picks h3 {
    font-size: 18px;
}

.text-page figure:first-child {
	margin-top: 0rem;
}
.text-page a.text-with-arrow {
    color: black;
    font-size: 18px;
    margin-bottom: 14px;
}
.text-page a.text-with-arrow:hover {
    border-bottom: 2px solid #1967D2;
}
.text-page a.text-with-arrow svg {
    width: 18px;
    height: 18px;
    fill: #1967D2;
}

.text-page h3 {
	font-size: 1.8rem;
	font-weight: 700;
}

.text-page h4 {
	font-size: 1.5rem;
	font-weight: 500;
}

.nav-wrapper{
    position: sticky;
    top: 0;
    z-index: 4;
 }
 .progress-bar{
    height: 5px;
    width: 0;
    background-color: #6ebce3;
    z-index: 4;
 }
 #table-of-contents a.active-section {
    color: #1967D2;
 }
.width-auto {
	width: auto;
}
#reviewToggleButton h3 {
	display: inline;
    float: left;
    margin: 0rem;
}
.hidden-review iframe {
	border: none;
}
button.bigbuy.width-auto {
	margin: 0rem 1rem;
	padding: 0px 20px;
	width: auto;
}

.features-grid p{
	font-size: 16px;
	margin: 0px;
}
.exclusive {
	font-size: 16px;
    background-color: #e3eefc;
    padding: 8px 16px;
    border-radius: 1.5rem;
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgb(25, 103, 210);
}
.bubble {
	font-size: 16px;
    background-color: #e3eefc;
    padding: 8px 16px;
    border-radius: 1.5rem;
    color: rgb(25, 103, 210);
}
.small-icons a img{
    display: block;
    max-width: 200px;
    margin: 0rem auto;
}
.padding-lr {
	padding-left: 1rem;
	padding-right: 1rem;
}
 @media screen and (max-width: 63.99875em) {
	.exclusive {
		font-size: 10px;
		background-color: #e3eefc;
		padding: 4px 8px;
		border-radius: 1.5rem;
		position: absolute;
		top: 8px;
		left: 8px;
		color: rgb(25, 103, 210);
	}
	#in-the-box .border-radius.grey-bg, #top-features .border-radius.grey-bg, #popular-categories .border-radius.beige-bg, .border-radius.black-bg {
		padding: .25rem;
	}
	.show-for-large {
	  display: none !important; } 
	  .show-for-large-navbtn {
		display: none;
	  }
	  .sticky-mobile {
		position: sticky;
		top: 0;
	  }
	  span.table-name {
		font-size: 12px;
	  }
	  span.section-name {
		font-size: 14px;
	  }
	  .toggle-button {
		padding: 10px 10px 6px;
	  }
	  .toggle-button svg {
		height: 14px;
		width: 14px;
	  }
	  .grid-x .product-image, .grid-container .order-1-mobile {
		order: 1;
	  }
	  .grid-x .product-text, .grid-container .order-2-mobile {
		order: 2;
	  }
	  #reviews .border-radius.grey-bg {
		padding: 1rem;
	  }
	  /* New CSS to control column widths */
		#review-table th:first-child, #review-table td:first-child {
			width: 20%; /* Adjust these percentages as needed */
		}
		#review-table th:last-child, #review-table td:last-child {
			width: 20%; /* Adjust these percentages as needed */
		}
		#review-table th:nth-child(2), #review-table td:nth-child(2) {
			width: 60%; /* This is the progress bar column */
		}
	}




  /* Progress Circle */
  .rating-circle {
	position: relative;
	max-width: 100px;
    margin: 0rem auto;
}
.rating-circle.absolute {
	position: absolute;
    bottom: 0;
    padding: 1rem;
}

.rating-circle text {
	position: absolute;
	font-weight: 600;
	font-size: 36px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
  .progress-circle {
	background-color: white;
	border-radius: 10rem;
	max-width: 100px;
	width: 95%;
	font-size: 18px;
  }
.u-absoluteCenter {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	}
.u-flexCenter {
	display: flex;
	align-items: center;
	justify-content: center;
	}
.u-offscreen {
	position: absolute;
	left: -999em;
	}
.demo {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	}
.progress {
	transform: rotate(-90deg);
	}
.progress__value {
	stroke-dasharray: 0;
	stroke-dashoffset: 0;
	}
@-webkit-keyframes progress {
	from {
		stroke-dashoffset: 339.292;
	}
	to {
		stroke-dashoffset: 0;
	}
	}
@keyframes progress {
	from {
		stroke-dashoffset: 339.292;
	}
	to {
		stroke-dashoffset: 0;
	}
	}
::root {
	--val: 0;
	}



.percent {
	stroke-dasharray: 100;
	stroke-dashoffset: calc(100 - var(--val));
	}

.fifty {
	--val: 50;
	}

.sixty {
	--val: 60;
	}

.ninety {
	--val: 90;
	}
/* end Progress circle */

.review-header h2, .review-header h3 {
	margin: 0rem;
}

.bold-title .cell h3 {
	font-weight: 700;
}

.review-content {
	padding-top: 1rem;
	line-height: 1.5;
}

.review-content h3 {
	font-weight: 700;
}

.summary-div {
	padding: 1rem;
	border: 5px solid #f2f2f2;
	margin-bottom: 1rem;
	border-radius: 1rem;
}
.summary-div h3 {
	margin-top: 0rem;
}

.bluebox {
	display: inline-block;
	background: rgb(0, 113, 227);
    padding: .5rem;
    font-size: 1.5rem;
    color: white;
    font-weight: 800;
    line-height: 2rem;
	margin: 0rem;
	letter-spacing: 0px;
}
.bluetext {
	color: rgb(0, 113, 227);
}
.absolute-bottom {
	position: absolute;
	bottom: 0;
}
.large-quote {
background-color: #003d82;
color: white;
padding: 1rem;
border-radius: 1rem;
margin: 2rem 0rem;
}

.large-quote h2{
	text-align: center;
	font-size: 2rem;

}

.summary-list {
	list-style-type: none; /* Removes default bullet points */
	padding-left: 0; /* Adjusts padding for alignment */
}

.liked-list li::before {
	content: "\2713"; /* Unicode for check mark */
	font-weight: 800;
	color: green;
	padding-right: 10px;
}

.disliked-list li::before {
	content: "\2715"; /* Unicode for cross mark */
	font-weight: 800;
	color: red;
	padding-right: 10px;
}

.reviewer-img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.reviewer-text {
	margin-left: 10px;
	margin-top: 12px;
    font-size: 18px;
}

.grey-box {
	display: block;
	width: 100%;
	padding: 1rem 0rem;
	text-align: center;
	font-weight: 700;
	background-color: #f0f0f0;
}

.check-price {
	display: block;
	width: 100%;
	padding: 1rem 0rem;
	font-size: 18px;
	text-align: center;
	font-size: 700;
	background-color: #f0f0f0;
}

.check-price .cart {
	width: 18px;
	height: 18px;
	transform: none;
}

.buybutton {
	display: block;
    font-size: 18px;
    padding: 0 20px;
    border: 2px solid rgb(26,115,232);
    color: rgb(26,115,232);
    height: 56px;
    line-height: 56px;
    width: fit-content;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    margin: 0rem auto;
}

.review-content p {
	margin: 1.5rem 0rem;
}

.index-article-div .cell h3, .index-article-div .cell p  {
	margin: 0rem;
}

.index-article-div .cell {
	margin-bottom: 1rem;
}

.title-box h1 {
	margin-top: 8px;
	margin-bottom: 0rem;
	font-weight: 800;
}
.title-box h2 {
	margin-top: 0rem;
	font-weight: 400;
}

.margin-0 {
	margin: 0;
}
.featuredreview h3, .featuredreview h4 {
	font-size: 16px;
}
.iframe-video {
	display: block;
    margin: 0rem auto;
    width: 100%;
	height: auto;
	max-width: 560px;
	max-height: 315px;
    aspect-ratio: 16 / 9;
}
header .buy-button.main-buy-button {
	margin-right: 2rem;
	padding: .5rem 2rem;
}
.buy-button, #drop-links a.buy-button {
	color: white;
	background: #333e53;
	padding: .5rem 1rem;
	border-radius: 4px;
	border: none;
	margin-bottom: 0rem;
}
.buy-button:hover {
	cursor: pointer;
}
.buy-button.hollow, #drop-links a.buy-button.hollow {
	color: black;
	background-color: white;
	border: 2px solid #333e53;
}
.buy-button.white-bg {
	color: black;
	background-color: white;
	border: 2px solid #333e53;
}
.buy-button-grid > * {
    flex-grow: 1;
	text-align: center;
}
.text-right {
	text-align: right;
}
.find-a-dealer-cells .cell, .dropshadow {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), /* Y-axis shadow */
	0 1px 3px rgba(0, 0, 0, 0.08); /* Subtle depth */
}
.find-a-dealer-cells img {
	max-width: 275px;
	margin: 1rem auto 2rem;
	display: block;
}
.button-container {
	display: block; margin-bottom: 2rem;
}
.grid-container .font-400 {
	font-weight: 400;
}
.highlight-content {
	padding-top: 1rem;
	position: absolute;
}

.highlight-content h4, .callout-text h4, .callout-text, .highlight-text h4 {
	font-weight: 500;
    letter-spacing: 3px;
	font-size: 16px;
}

.highlight-content h2, .highlight-text h2 {
    font-weight: 800;
	font-size: 32px;
}
.cta-container {
	background: rgba(0,0,0,1);
	color: white;
  }
  
  .cta-container h2 {
	font-size: 3rem;
	font-weight: 400;
  }
.black-header {
	background-color: #000000;
	color: white;
	margin-bottom: 1.5625rem;
  }
  
  .statement.wide {
	margin-bottom: 3rem;
	padding-bottom: 8rem;
	padding-top: 6rem;
  }
  .statement {
	font-size: 28px;
	font-weight: 500;
	line-height: 40px;
	letter-spacing: .196px;
	padding-top: 5rem;
	padding-bottom: 5rem;
  }
  .statement.wide h2 {
	margin-bottom: 5rem;
  }
  
  .statement h2 {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.4;
	margin-bottom: 10rem;
  }
  .large-h-tag {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.4;
  }
  .statement h3 {
	margin-bottom: 1.8rem;
  }
  .grey {
	color: #aaa!important;
  }
  .white {
	color: #fff!important;
  }
  .material-button {
	display: inline-block; font-size: 16px; background-color: white; color: black; padding: 8px 24px; border-radius: 4px; font-weight: 600;
  }
  .material-button.hollow {
	background-color: transparent;
	border: 2px solid white;
	padding: 6px 24px; 
	border-radius: 4px;
	color: white;
  }
  .shop-links {
	display: block;
	margin: 1rem 0rem;
  }
  .grid-container .font-500 {
	font-weight: 500;
  }
  .shop-icons img {
	width: 50px;
  }
  @media screen and (min-width: 48em){
	.black-header {
	padding: 3.125rem 0;
	opacity: .99;
  }
  }

@media screen and (max-width: 1000px)  {
	.review-heading-box .review-l-heading {
		font-size: 24px;
		font-weight: 800;
		margin: 0rem;
	}
	.review-heading-box .review-m-heading {
		font-size: 18px;
		font-weight: 500;
		margin: 0rem;
	}
}

@media screen and (min-width: 1000px) {

}


.feature-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;

}

.feature-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.feature-list li::before {
    content: "✓";
    color: #0071e3;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.buy-button.grey {
	color: white;
	background-color: #414141;
  }