:root {
	--mainfont: 'Poppins', Arial, Helvetica, sans-serif;
	--subfont: 'Poppins', Arial, Helvetica, sans-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: auto;
  }

  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;
	margin-bottom: 1rem;
	overflow: hidden;
}

.grid-container.nopad {
    padding-left: 0;
    padding-right: 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;
	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
	}
	.product-category-data .image-container:hover .hover-image {
		opacity: 1;
	  }
	  
	  .product-category-data .image-container:hover .default-image {
		opacity: 0;
	  }
}

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

@media print,
screen and (min-width: 90em) {
	.xlarge-up-1>.cell {
		width: 100%
	}
	.xlarge-up-2>.cell {
		width: 50%
	}
	.xlarge-up-3>.cell {
		width: 33.33333%
	}
	.xlarge-up-4>.cell {
		width: 25%
	}
	.xlarge-up-5>.cell {
		width: 20%
	}
	.xlarge-up-6>.cell {
		width: 16.66667%
	}
	.xlarge-up-7>.cell {
		width: 14.28571%
	}
	.xlarge-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: 90em) {
	.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)
	}
}

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

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

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

@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: #444;
}

.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: 90%;
    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, .grid-container .h2 {
    font-size: 2.6rem;
	letter-spacing: .5px;
	font-weight: 500;
}

h3 {
	font-size: 1.5rem;
	font-weight: 800;
}

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

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}


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

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

@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;
	}
	
    h2, h3 {
    font-size: calc(16px + 6 * ((100vw - 320px) / 680));
  }

}

@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 22px 0 22px; */
    margin-top: 1.2rem;
    min-width: 150px;
    height: 40px;
    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;
}


.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: #f5f5f7;
	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;
  
}

.caveat-font {
	font-family: "Caveat", cursive;
	font-optical-sizing: auto;
	font-weight: 800;
	font-style: normal;
}
.text-callout, .grid-container .text-callout  {
	font-size: 2.5rem;
}
.why-poolbots {
	font-size: 1.25rem;
}
#footer-nav {
	margin: 10% 2% 10% 2%;
}

#footer-nav .menu li>a:hover {
	color: #2997ff;
}

 #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	 {
    height: 25px;
    padding-top: 5px;
    justify-content: left;
	width: 70%;
    max-width: 150px;
    padding-left: 1rem;
	min-height: 50px;
}

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: black;
    color: white;
    position: relative;
    transition: top .4s cubic-bezier(1, -.4, .44, .985);
    top: -80px;
    width: 100%;
    z-index: 11
}
#promo-banner .grid-container .grid-y {
	padding: 1rem;
}
#promo-banner.banner-open {
    top: 0
}

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

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


#promo-banner .grid-container .promo-details .details {
    color: white;
    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: white;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
	margin-right: 1.5rem;
}

.line-1 {
	margin-right: 1.5rem;
}

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

@media screen and (max-width:33.188em) {
	#promo-banner .grid-container .grid-y {
		padding: 1rem 0rem;
	}
}

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

#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
    }
	#cart h3, #cart h2 {
		margin: 1rem 0rem
	}
	.p-6 p {
		margin: 1rem 1.5rem;
	}
	#cartProducts {
		max-height: 450px;
	}
}

#promo-banner .grid-container {
	height: 50px;
	line-height: 1.2rem;
	margin-bottom: 0rem;
}

.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 {
   		margin-top: 50px;
		padding: 0 0 0 0;
		
	}

	#mmc1 img, #mmc1 a, #mmc2 img, #mmc2 a, #mmc3 img, #mmc3 a, .main-cat {
		font-size: 14px;
	}

	.nav-tile {
		margin-bottom: 4px;
	}

	.topright.compare {
		height: 20px;
	}

}

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


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

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


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

}




#drop-links a {
    color: #000;
	margin-bottom: .5rem;
	line-height: 1;
    text-decoration: none;
    display: block;
	padding: .25rem;
}

#drop-links ul li.main-cat a {
	margin: 0rem;
    padding: 0rem;
    line-height: 1.7;
}

#mmc1 a:hover, #mmc2 a:hover, #mmc3 a:hover {
    color:#0071e3;

}

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

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

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

.main-cat {
    font-weight: 700;
    margin-top: 1.5rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
    border-bottom: 1px solid #ddd
}


#pageMask {
    background: rgba(8, 8, 8, .6);
	-webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    z-index: 9
}
#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;
}
.grid-container h4.menu-title {
	font-weight: 600;
}

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

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

.black-bg {
    background-color: #191919;
}

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

.grey {
    color: #aaa;
}
.grey-bg {
	background-color: #f2f2f2;
}
.grey-bg.f5 {
	background-color: #f7f7f7;
}
.white-bg {
	background-color: white;
}
.white {
    color: #fff;
}
.mega-message h2 {
	font-size: 2.2rem;
}

@media print, screen and (min-width: 48em) {
.hide-for-medium {
    display: none!important;
}
}

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

.black, #content .black {
	color: black;
	transition: color 350ms ease;
}
#content .black:hover {
	color: #2997ff;
}

#content hr {
	border: 4.5px solid black;
}

#content .styled-list {
    font-size: 1.5rem;
    line-height: 1.875rem;
    list-style-type: none;
    padding-left: 0rem;
	font-weight: 800;
  }
  #content .styled-list li {
	margin-bottom: 1rem;
  }
  #content .styled-list li a{
	margin-bottom: 1rem;
	border: none;
	color: black;
  }
  #content .styled-list li a:hover{
	border-bottom: 2px solid black;
  }
.red {
	color: #e84e1a;
}

.red-box {
	background-color: #e84e1a;
	padding: 0rem 0.5rem;
	color: white;
}
.green-box {
	background-color: green;
	padding: 0rem 0.5rem;
	color: white;
}
.rotate {
	transform: rotate(180deg);
	transition: transform 350ms ease;
}

.megaMenuContent span {
	padding-left: 1rem;
}
.megaMenuContent span.larger-text {
	font-size: 1.5rem;
	padding: 0rem;
	font-weight: 600;
}
.megaMenuContent span.uppercase-small, .megaMenuContent span.larger-text {
	padding: 0rem;
}

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


/* Main Nav */

header {
  display: grid;
  grid-template-columns: auto;
  grid-auto-flow: column;
  background: white;
  text-align: left;
  position: relative;
  z-index: 999;
  width: 100%;
  align-items: center;
}


/* Base styles */
.nav-toggle {
	display: none;
  }
  
  .nav-toggle-label {
	margin-left: 1em;
	margin-top: 16px;
	height: 20px;
	align-items: center;
	cursor: pointer;
  }
  
  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
	display: block;
	background: black;
	height: 2px;
	width: 1.5em;
	border-radius: 2px;
	position: relative;
	transition: all 0.3s ease;
  }
  
  .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;
  }
  
  /* Transform into X when checked */
  .nav-toggle:checked + .nav-toggle-label span {
	background: transparent;
  }
  
  .nav-toggle:checked + .nav-toggle-label span::before {
	transform: rotate(45deg);
	bottom: 0;
  }
  
  .nav-toggle:checked + .nav-toggle-label span::after {
	transform: rotate(-45deg);
	top: 0;
  }
  


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: rgba(0, 0, 0, .8);
  text-decoration: none;
  font-size: 1rem;
  text-transform: capitalize;
  letter-spacing: .5px;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}

nav a:hover {
  color: #000;
}

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

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

@media screen and (min-width: 1000px) {
  .nav-toggle-label {
    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: center;
    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%;
 }
}

.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: 22px;
}

#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;
	
   }
#mainproduct .compare-text h3 {
	font-weight: 800;
	margin: .25rem;
}
#mainproduct .compare-text p {
	margin: .25rem;
}
.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 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;
	padding: 1rem;
	letter-spacing: 3px;
	}

   #mainproduct h3.ultimate {
	font-size: 1.4rem;
	margin-left: 1rem;
	font-weight: 700;
	}
	#compare-aspects .bluelink {
		border-bottom: none;
	}
	#compare-aspects .cell h3 {
		margin-top: 0rem;
		margin-bottom: 0rem;
		font-size: 22px;
		font-weight: 800;
	}
	#compare-aspects .cell p {
		margin: .5rem 0rem;
	}
   #vidbg {
    min-width: 100%; 
   }



   .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.25rem;
}
.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, .breadcrumbs li:first-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: 8px;
	right: 8px;
	margin: 0px;
	background-color: rgba(8, 8, 8, .85);
}
.sold100 {
	width: 125px;
	right: 30px;
    top: 30px;
	background-color: transparent;
}

.alsoviewed .cell .top-right-banner img {
	padding: 0rem;
}

.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-left-banner.authorized-dealer {
	left: 18px;
}
.bottom-right-banner.googlereviews {
	width: 130px;
	right: 30px;
	bottom: 30px;
}
.googlereviews.stack-left {
	position: absolute;
    left: 150px;
    width: 140px;
    bottom: 22px;
}
.prolinebanner {
	width: 150px;

}

.page-banner-text {
	position: absolute;
	color: white;
	text-align: center;
	margin-top: 10px;
	z-index: 2;
}

.page-banner-text h1 {
	margin: .5em 0em;
	line-height: 1;
}
.middle-banner {
	position: absolute;
	font-size: 20px;
	font-weight: 500;
	top: 50%;
	left: 55%;
	transform: translate(-50%, -50%);
	padding: 0px;
}
.save-up-banner {
	max-width: 250px;
	max-height: 250px;
	position: absolute;
	font-size: 20px;
	font-weight: 500;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0px;
}

.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 0px;
}
.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: -5px;
	top: -8px;
	background: black;
	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);
}

.image-bottom {
	position: relative;
	bottom: -10px;
}
/*! Shop CSS */

.my-4, .my-6, .grey-border {
	box-sizing: border-box;
    border: 1px solid lightgrey;
    border-radius: 12px;
    padding: 1rem 1rem 1rem 1rem;
}

.grey-border.no-pad-bottom {
	padding: 1rem 1rem 0rem 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: 'Poppins', 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: 55%;
    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;
	}

	.product {
		padding: 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;
}
.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;
}
.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: white;
  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;
	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 rgba(0, 0, 0, .8);
	background-color: rgba(0, 0, 0, .8);
	color: white;
	border-radius: 50px;
}

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

.pillButton p {
	margin: 0;
}

/* PRODUCT TITLE BANNER HEADER */
body {
    font-family: arial;
	overflow-x: visible;
}

.productname h1 {
    font-size: 1.5rem;
	font-weight: 500;
}

.productname {
	padding-left: 10px;
}

#content.grid-container, #content.grid-container .cell {
	overflow: visible;
}

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

#content a, .bluelink, #our-top-picks a {
	color: #2997ff;
    border-bottom-color: rgb(25, 103, 210);
    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;
    border-bottom: 2px solid;
    cursor: pointer;
}
#content .product-image a {
	color: transparent;
}
#differences a.bluelink {
	color: black;
	border-color: #2997ff;
}
#content figure {
	display: block;
	max-width: 750px;
	margin: auto;
}

#content figure figcaption {
	line-height: 1.5;
}

#content figure video, #content figure img {
	margin-bottom: .5rem;
}
#compare td a {
	color: black;
}

#compare td a:hover {
	color: #2997ff;
}

h5 {
	font-size: 1rem;
	font-weight: 600;
	color: #444;
}

td {
	height: 4rem;
	width: 50%;
	padding: .5rem;
	}
	
	.comparision table thead tr th h5 {
	margin: 0rem;
	}
	
	tr:nth-child(odd){
	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 {
		border: 0px;
	}
	
	table.comparision thead {
	background-color: transparent;
	}
	
	thead th {
	padding: 0.5rem 0.625rem 0.625rem;
	font-weight: 700;
	text-align: left;
	}
	
	#compare-specs table.comparision.performance tr td {
	width: 33.3333%;
	border: 0px;
	}

.sticky {
    position: sticky;
    top: 2rem;
    left: 0;
	margin: 0 auto;
    width: 80%;
    max-width: 100vw;
    overflow-x: visible;
    background: white;
    align-self: start;
    background-color: #f2f2f2;
    padding: 1rem;
}
.grey-toc-box {
    margin: 0 auto;
    width: 80%;
    max-width: 100vw;
    align-self: start;
    background-color: #f2f2f2;
    padding: 1rem;
}

.sticky img {
	max-width: 85%;
}

.sticky button {
	display: block;
	line-height: 1.5rem;
	background-color: transparent;
	border: none;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

.sticky button.highlight {
	color: rgb(25,103,210)!important;
	background-color: transparent!important;
	box-shadow: none!important;
}

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


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

.productnav {
	display: block;
	max-width: 1920px;
    margin: auto;
	box-shadow: 0px 10px 10px -10px rgba(0,0,0,0.15);
}

.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: 2%;
    right: 2%;
	display: inline-block;
    vertical-align: middle;
	width: 200px;
    max-width: 100%;
    height: auto;
}

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

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

#topoffer {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
	margin-right: 1rem;
	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-bottom: 1rem;
	margin-left: 2rem;
}
.pill-div button, a.pill, #mainproduct a.pill, button.pill-div, button.pill-button{
    color: black;
    background-color: #f2f2f2;
    padding: 8px 18px;
    border: 0;
    position: relative;
    margin-right: 8px;
    font-weight: 400;
    white-space: nowrap;
    border-radius: 16px;
    max-height: 32px;
}

.leftnav button, .leftnav a {
	background-color: #fff;
    border-radius: 12px;
    border: 2px solid white;
    align-items: center;
    padding: 8px 18px;
    opacity: 1;
    transition: opacity .4s ease-out;
    cursor: pointer;
    justify-content: center;
    margin-right: 4px;
    flex-wrap: nowrap;
    white-space: nowrap;
	color: black;
	font-size: 16px;
    letter-spacing: normal;
    font-family: 'arial';
}

a.pill.reverse, #mainproduct a.pill.reverse {
	color: white;
	background-color: black;
}
#content .left-overhang a {
	border: 0px;
}
#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: 1.3rem;
    margin-top: 10px;
}
.large-price.price {
	font-size: 1.7rem;
}

.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: 130px;
}
.icon-banner {
	max-width: 140px;
    background: none;
}
.margin-auto, #content .bigbuy a.margin-auto {
	display: block;
	margin: 0rem auto;
}
#content .bigbuy a.margin-left-auto {
	margin-left: auto;
}

.best-award {
	margin-left: 1rem;
  }

  .grey-text {
	color: #777473 !important;
  }
  .side-by-side-flex {
	display: flex;
	text-align: left;
	font-size: 14px;
	align-items: center;
	width: 100%;
  }
  .grid-container .side-by-side-flex p {
	margin-left: 1rem;
	font-weight: 400;
	color: #777473 !important;
	font-size: .875rem;
	line-height: 1rem;
  }
  .grid-container .small-font {
	font-weight: 400;
	color: #777473 !important;
	font-size: .875rem;
	line-height: 1rem;
  }
  .side-by-side-flex .caveat-font {
	font-size: 1.5rem;
	line-height: 1.5rem;
	color: black;
  }
  .flex-side-by-side.watch-buttons button:hover {
	cursor: pointer;
  }
  /* Mobile Only */
@media only screen and (max-width: 600px) {
	#cart, #support {
	  padding: 1rem;
	  max-width: calc(100% - 2rem);
	}
	#authorized-dealer {
		display: none;
	}
	.bigbuy button, #content .bigbuy a {
		height: 45px;
		line-height: 45px;
  }
  #drop-links a {
    padding: 0.25rem 0rem;
}
.grid-container.nopad-mobile-only {
    padding-left: 0;
    padding-right: 0;
}
  #trust {
	width: 275px;
  }
  .bottom-left-banner.authorized-dealer, .top-right-banner.authorized-dealer, .bottom-right-banner.proline {
	max-width: 130px;
  }
  .bottom-right-banner.googlereviews {
	width: 100px;
}
.googlereviews.stack-left {
	position: absolute;
	right: 4px;
	left: inherit;
	width: 140px;
	bottom: 12px;
}
.prolinebanner {
	margin-top: 1.5rem;
	width: 100px;
}
  .bottom-left-banner.authorized-dealer {
	left: 0px;
}
  .best-award {
	margin-left: 0rem;
  }
  .bottom-right-banner.proline {
	bottom: 15px;
	right: 10px;
  }
  .top-right-banner.sold100 {
	width: 100px;
    right: 15px;
    top: 10px;
  }
  .megaMenuContent span {
	padding-left: .5rem;
}
.icon-banner {
	max-width: 100px;
}
.playaudiobutton.no-style-button {
	margin: 0rem auto;
    display: block;
  }
  }
/* 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) {
	#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;
	  }
	#refurb-selector.pill-div button {
	margin: 0.25rem;
	font-size: .8rem;
}
	#mmc2 {
		top: 100px;
	}
	#mmc3 {
		top: 250px;
	}
	.text-callout, .grid-container .text-callout  {
		font-size: 1.5rem;
	}
}
@media screen and (min-width:62.56em) {
	.hide-for-large {
		display: none!important;
	}
	.productnav {
		display: flex;
	} 
	.page-banner-text {
		top: 50%;
		transform: translate(0%, -50%);
	}
}
/* 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
	}
	.bottom-left-banner.authorized-dealer {
		max-width: 200px;
	}
	.googlereviews.stack-left {
		left: 230px;
		width: 200px;
		bottom: 30px;
	}
  }
  
  @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: calc(8.33333% - 1.875rem);
	  }
	  .grid-x > .xlarge-2 {
		width: calc(16.66667% - 1.875rem);
	  }
	  .grid-x > .xlarge-3 {
		width: calc(25% - 1.875rem);
	  }
	  .grid-x > .xlarge-4 {
		width: calc(33.33333% - 1.875rem);
	  }
	  .grid-x > .xlarge-5 {
		width: calc(41.66667% - 1.875rem);
	  }
	  .grid-x > .xlarge-6 {
		width: calc(50% - 1.875rem);
	  }
	  .grid-x > .xlarge-7 {
		width: calc(58.33333% - 1.875rem);
	  }
	  .grid-x > .xlarge-8 {
		width: calc(66.66667% - 1.875rem);
	  }
	  .grid-x > .xlarge-9 {
		width: calc(75% - 1.875rem);
	  }
	  .grid-x > .xlarge-10 {
		width: calc(83.33333% - 1.875rem);
	  }
	  .grid-x > .xlarge-11 {
		width: calc(91.66667% - 1.875rem);
	  }
	  .grid-x > .xlarge-12 {
		width: calc(100% - 1.875rem);
	  }
	  
  }
  
  
  
  @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: calc(100% - 1.875rem);
	}
  }
  
  
  
  @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: 3%
  }
	.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%;
  }
  .four-points {
    margin-bottom: 4%;
  }
  .two-points {
    margin-bottom: 2%;
  }
  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.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;
}
.product-highlight.product-highlight-50 .highlight-content {
	width: 50%;
}
.grid-container.title-container {
    margin-bottom: 8%;
}

/* 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, .uppercase-small {
      font-size: 2rem;
  }
      .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;
      }
	  .hide-for-small {
		display: none!important;
	}
    .orbit p {
      font-size: 1rem;
    }
    
    h4, .grid-container h4 {
      font-size: .9rem;
    }
    
    h2.slide-title {
      font-size: 1.8rem;
    }
    
    #promo-banner {
      font-size: .8rem;
    }

    .product-highlight .highlight-content  {
      padding-top: 3rem;
   }
	}

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

button.pill-button {
	margin-bottom: 5px;
	cursor: pointer;
}
button.pill-button.selected {
	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;
}

button.pill-button:hover {
    box-shadow: inset 0 0 0 1px rgb(25,103,210)!important;
}

.leftnav button:hover, .leftnav a: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-weight: 800;
	font-size: 1.2rem;
}
.grid-container h2, .uppercase-small {
    font-weight: 500;
    font-size: 1rem;
    font-weight: 400;
    text-transform:  uppercase;
    letter-spacing: 6px;
}
.grid-container p, .grid-container ul, .grid-container ol {
    letter-spacing: .5px;
    line-height: 1.7;
    font-size: 16px;
    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: 2.5rem 0 0 0;
}

.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
}
.circle.product {
	display: none;
 }
.circle.left {
    right: 1.5rem;
    margin-top: -25px;
    border: none;
    left: 55%;
  }
	.productname h1 {
		font-size: 1rem;
		margin: .4rem 0 .4rem 0;
	}
	.leftnav button {
		font-size: 1rem;
	}
	.productname {
		margin-top: 0;
	}

	.promomsg {
		font-size: .8rem;
    }
	
    .promomsg p {
		line-height: 2;
		margin: 0rem;
	}
	.leftoffer {
		padding-top: 4px;
	}
	.leftnav {
		display: flex;
		flex-direction: row;
		font-size: 14px;
		padding: 4px 4px;
		align-items: center;
		margin-left: 10px;
} 


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

	h2 {
		margin-top: 3rem;
	}


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

@media screen and (max-width: 63.99875em) {
	.show-for-large {
	  display: none !important; } 
	  .show-for-large-navbtn {
		display: none;
	  }
	  #site-logo img {
		margin-left: 1.5rem;
	  }
	  .grid-x .product-image {
		order: 1;
	  }
	  .grid-x .product-text {
		order: 2;
	  }
	}

/* 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 {
	line-height: 1.25;
    margin: 14px 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: .7rem 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;
	font-size: 16px;
}

.save {
	display: inline-block;
	background-color: #e84e1a;
	color: white;
	padding: 4px;
	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.2rem;
	font-weight: 800;
}

#mainproduct .product-name {
	margin: 0.15rem 0rem;
}
.feature-div .compare-text h2 {
	text-align: center;
}
.blackbox {
	background: black;
	color: white;
	padding: .25rem 1rem;
}

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

.green {
	color: green;
}

.below-price {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1rem;
	justify-content: flex-end;
}



.product-category-data {
	margin-bottom: 0rem;
}
.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 .top-left-banner,
  .product-category-data .image-container:hover .top-right-banner {
	display: none;
  }
.pure-black-bg {
	color: white;
	background-color: black;
}
.icon-boxes img {
	max-width: 100px;
	display: block;
	margin: 0rem auto;
}
.icon-boxes .cell {
	margin-bottom: 4px;
	padding: 1rem;
    box-sizing: border-box;
}
  .black-box {
	color: white;
	background-color: black;
	text-align: center;
	font-weight: 600;
	padding: 5px;
	max-width: 200px;
	margin: 0rem .25rem;
  }
  
  .plain-black-box {
	color: white;
    background-color: black;
    padding: 1rem;
  }
  .blue-box {
	color: rgb(6, 46, 111);
    background-color: #e8f0fe;
	padding: 5px;
	max-width: 200px;
	margin: 0rem .25rem;
	font-weight: 800!important;
	text-align: center;
  }
  #products .black-box {
	max-width: 150px;
  }

  .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: #019ffd;
	padding: 4rem 0rem;
	color: white;
  }
  .cta-container.black-cta {
	background-color: black;
	padding: 3rem 0rem;
	color: white;
  }
  .material-but.white-hollow {
	background-color: transparent;
	color: white;
	border-color: white;
  }
  #next .button-btm .material-but {
    width: 200px;
}
#overview .overall-reviews {
	display: flex;
	margin-top: 6px;
}
.overall-reviews.small-compare {
	display: flex;
    align-items: center;
    grid-gap: 4px;
}
.overall-reviews button {
	display: block;
    margin-top: 0rem;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #444444;
    margin-left: 4px;
}

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

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

#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;
}
.current-price {
	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;
}

#sidescroll.swiffy-slider img {
    border-radius: 0px;
    aspect-ratio: 1/1;
    margin: auto;
}

#sidescroll .slider-nav {
	top: calc(25% - 10px);
	bottom: auto;
}

#sidescroll .slider-container>* {
    position: relative;
    width: 100%;
    margin-bottom: auto;
}

.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; 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* Prevent the circle from shrinking */  
}

  @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;
  }
  .flex-side-by-side.justify-left {
	justify-content: left;
  }
  .bigbuy.hollow button {
	background: transparent;
    color: rgb(26, 115, 232);
    border: 2px solid rgb(26, 115, 232);
  }

  .accolades {
	background-color: white;
	color: black;
	padding: 1rem 0;
	}
  .accolades img {
	max-width: 300px;
  }
	.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 a {
	color: black;
	border: none;
  }
  #table-of-contents a:hover {
	color: #2997ff;
  }
.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: 800;
}
.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: #2997ff;
	margin-left: -1.25rem;
	background-image: none;
}
#content-text h3, #content-text h4 {
	font-size: 1.5rem;
	font-weight: 500;
}

.grid-container .h2-title, .h2-title, #content-text .h2-title {
	font-size: 1.7rem; /* Adjust the font size as needed */
	font-weight: bold; /* You can use other font weights too */
	margin-top: 1.5rem; /* Adjust the top margin as needed */
	margin-bottom: 1rem; /* Adjust the bottom margin as needed */
	letter-spacing: normal;
	text-transform: none;
  }
  
.grid-container .h1-title, #content-text h2 {
	margin: 0.67em 0;
	font-size: 2.5rem;
	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)
}
#missing-features img {
	width: 125px;
	height: 125px;
	object-fit: contain;
}
  @media (max-width: 768px) {
	.grid-container .h1-title, #content-text h2 {
	font-size: 1.5rem;
	}
	.grid-container .h1-title sup {
		font-size: 1rem;
	}
	.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: 70px;
			height: 70px;
		}
		#missing-features img {
			width: 75px;
			height: 75px;
		}
  }
  
  /* 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;
}

.dotted, #content .dotted {
	color: black;
	border-bottom: 1px dotted #999;
}

.margin-top {
	margin-top: 1rem;
}
/* CIRCLE FOR VS */
.circle-content {
    color: #fff;
    float: left;
    line-height: 1.2;
    margin-top: -0.5em;
    padding-top: 50%;
    text-align: center;
    width: 100%;
    font-size: .8rem;
}

.circle {
    position: absolute;
    top: 20px;
    right: 5%;
    background: 0 0;
    border: 3px solid #fff;
    opacity: .4;
    height: 80px;
    width: 80px;
}
.circle {
    width: 100px;
    height: 100px;
    border: 2px solid #acacac;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 120px;
}


@media (max-width: 650px){
	.circle {
		top: 45px;
		right: 2%;
		height: 3.5rem;
		width: 3.5rem;
		border: 1px solid #fff;
	}
	.circle-content {
		font-size: .6rem;
	}
	}
.product-card img {
	margin: 2rem auto;
}
.product-card .bigbuy {
	margin-top: 2rem;
}

.product-card h3 {
	font-weight: 800;
	color: black;
	margin-top: 2rem;
	margin-bottom: .5rem;
}
.product-card h3:hover {
	color: #2997ff;
}
.product-card h4 {
	margin: 0rem;
}

.product-card ul li {
	margin: 1rem 0rem;
	line-height: 1;
}

.inline-block {
	display: inline-block;
}

.bigbuy.inline-block {
	margin-bottom: 1rem;
}

.grid-container ul .product__name {
	line-height: 1;
}

.need-help-button {
	cursor: pointer;
}

.show-1300px-up {
	display: flex;
	margin-bottom: 0rem;
}

@media (max-width: 1300px) {
	.show-1300px-up {
	  display: none; /* or any other desired styling */
	}
  }


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

.variant-cart-text {
	margin: 0rem!important;
}

.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 {
	margin-bottom: 0rem;
}
.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;
	list-style-type: square;
	font-size: 14px;
}
#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;
}
.button-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.material-button {
	background-color: #fff;
	border-radius: 12px;
	border: 2px solid white;
	display: flex;
	align-items: center;
	padding: 10px 24px;
	opacity: 1;
	transition: opacity .4s ease-out;
	cursor: pointer;
	justify-content: center;
}
.material-button.selected, .material-button:hover, .leftnav button:hover, .leftnav button.highlight, .leftnav a:hover, .leftnav a.highlight {
	border: 2px solid #1967d2;
}

/* Nav Arrows on SubNav */
.slidernav {
	position: relative;
    align-items: center;
}
.leftnav::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Webkit browsers */
}
.leftnav {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS devices */
	scroll-behavior: smooth;
	-ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
    scrollbar-width: none;  /* Hide scrollbar for Firefox */
}
.left-arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 60px; /* Adjust as needed */
    height: 100%;
    background: linear-gradient(to right, white, transparent);
    z-index: 1; /* Ensure it's above the text but below the arrow */
}

/* Adding gradient underlay for right arrow */
.right-arrow::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 60px; /* Adjust as needed */
    height: 100%;
    background: linear-gradient(to left, white, transparent);
    z-index: 1; /* Ensure it's above the text but below the arrow */
}
.nav-arrow {
    display: none; /* Hide arrows by default */
    cursor: pointer;
    /* Add more styling as needed */
}
.nav-arrow img {
    width: 24px;
    height: 24px;
	position: relative;
	z-index: 2;
}

.nav-arrow.left-arrow {
	padding-left: 6px;
    display: none; /* Initially hide the left arrow */
}
.nav-arrow.right-arrow {
	padding-right: 6px;
}
.nav-arrow.left-arrow, .nav-arrow.right-arrow {
	display: none;
}



/* Mobile and Tablet Sizes */
@media print, screen and (max-width:62.56em) {
	.nav-arrow.right-arrow {
        display: block; /* Show arrows on mobile */
    }
	.text-center-mobile {
		text-align: center;
	}
	.icon-boxes .cell {
		margin-bottom: 4%;
  }
}


@media print, screen and (min-width:62em) {
	.nav-arrow {
        display: none!important; /* Show arrows on mobile */
    }
	.cell-padding-desktop {
		padding: 1rem;
	  }
}

/* smaller than Xlarge */
@media print, screen and (max-width:90em) {
	.save-up-banner {
		max-width: 100px!important;
		max-height: 100px!important;
		bottom: 16px;
		right: 0px;
		top: inherit;
		padding: 0px;
		transform: none;
		left: inherit;
	}
}
/* End of Nav Arrows on SubNav */
.h1-title.news {
	margin-top: 0rem;
	margin-bottom: 0rem;
}
.h2-title.news {
	margin-top: 0rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Product Category Page */
.item6 { grid-area: title; }
.item7 { grid-area: image; }
.item8 { grid-area: desc; }
.item9 { grid-area: price; }

.product-container {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
  grid-template-areas:
	'image title price '
	'image desc price ';
  gap: 20px;
  padding: 10px;
}

@media print, screen and (max-width: 64em) {
	#filter-selector {
		display: none;
	  }
	.grid-container p, .overall-reviews button {
		font-size: 14px;
	}
	}

@media print, screen and (max-width: 40em) {
	.small-order-1 {
		order: 1;
	}
	.small-order-2 {
		order: 2;
	}
	.small-order-3 {
		order: 3;
	}
	.button-grid {
		display: grid;
		grid-gap: 8px;
		grid-template-columns: 1fr 1fr;
	}
	.accolades h3 {
		font-size: 1.2rem;
	}
	#products .grid-container, .grid-container.padding-4px {
		padding-left: 4px;
		padding-right: 4px;
	}
	#products .grid-container p, #products .grid-container ul, #products .grid-container ol  {
		font-size: 14px;
	}
	#products .category-title {
		font-size: 22px;
	}
	.product-container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
		  'title title'
		  'image price'
		  'desc desc';
		gap: 0px;
		padding: 0px;
	  }
}

.grey-border-box {
	padding: 8px;
	border: 2px solid rgb(220, 220, 220);
	border-radius: 8px;
}

.top-right-img {
	position: absolute;
    top: 4px;
    right: 4px;
	width: auto;
    height: 25px;
}
.margin-auto {
	display: block;
	margin: 0rem auto;
}
.youtube-frame {
	max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
.youtube-video {
	display: block;
    margin: 0rem auto;
    max-width: 750px;
    width: 100%;
    aspect-ratio: 16 / 9;
}
.article-brief {
	background-color: #f2f2f2;
color: #000;
padding: 2rem;
position: relative;
margin: 2rem auto 4rem;
}
.article-brief h3 {
	font-weight: 400;
	line-height: 1.5;
	font-size: 1.25rem;
}
#content .article-brief ul li a {
	color: black;
}
.article-brief ul li {
		margin: 0 0 .5rem 0;
}
.article-brief:after {
content: "";
display: block;
position: absolute;
bottom: -45px;
left: 46%;
width: 0;
border-width: 45px 25px 0;
border-style: solid;
border-color: #f2f2f2 rgba(0, 0, 0, 0);
}
#content .ss-figure a {
	border-bottom: none;
}
.margin-top-0 {
	margin-top: 0rem;
}
.margin-top-1 {
	margin-top: 1rem;
}
.margin-bottom-0 {
	margin-bottom: 0rem;
}
.margin-bottom-1 {
	margin-bottom: 1rem;
}
.margin-bottom-2 {
	margin-bottom: 2rem;
}
.red-text {
	color: red;
}
.flex-space {
	display: flex;
	justify-content: space-between;
}

.flex-left {
    display: flex;
    align-items: left;
}

.flex-right {
    display: flex;
    align-items: right;
}

.offer-details {
	letter-spacing: 0px;
    line-height: 1;
    font-size: 12px;
    color: darkgrey;
}

.ranking-list {
	color: #000;
	counter-reset: li; /* Resets counter for list items */
	padding-left: 1rem;
}

.ranking-list li {
	position: relative;
	list-style: none;
	padding-left: 0; /* Remove additional padding */
	display: flex;
	align-items: baseline; /* Aligns the number with the first line of the text */
	margin-top: 12px;
	line-height: 1.2; /* Adjusted line-height to prevent clipping */
	width: 100%; /* Ensures each li takes up the full width */
}

.ranking-list li::before {
	content: "#" counter(li); /* Adds # before the number */
	font-weight: bold;
	margin-right: 0.5em; /* Space between #number and text */
	color: #000;
	counter-increment: li; /* Increments the counter */
	flex-shrink: 0; /* Keeps the number fixed without shrinking */
}

.ranking-list li a {
	text-decoration: none; /* Remove underline from links */
	color: inherit; /* Ensure link color matches text color */
	display: inline-block;
	line-height: 1.2; /* Ensures the text aligns well with the li */
}



a.blacklink, .ranking-list a {
	color: #000;
	display: block;
    transition: transform 0.3s ease, text-decoration 0.3s ease;
    overflow: hidden; /* Ensures no overflow issues */
}

.nav-icons a {
    display: block;
    transition: transform 0.3s ease, text-decoration 0.3s ease;
    overflow: hidden; /* Ensures no overflow issues */
    padding-top: 10px; /* Adds space below to prevent cutting off */
}

.nav-icons a img {
    transition: transform 0.3s ease;
}

.nav-icons a:hover img {
    transform: translateY(-10px);
}

.nav-icons a h4, a.blacklink {
    margin-top: 10px;
    transition: text-decoration 0.3s ease;
}

.nav-icons a:hover h4, a.blacklink:hover, .ranking-list a:hover {
    text-decoration: underline;
}

.circle-black {
	display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background-color: black;
  color: white;
  font-weight: bold;
  line-height: 1;
  }
  
  .learningdiv .product h3 {
	font-size: 1.3rem;
  }

  .learningdiv .product p {
	font-size: 1rem;
    letter-spacing: normal;
    line-height: 1.5;
	color: #747474;
  }

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

  /* Audio Popup */
  #audioPopup {
    position: fixed;
    bottom: 10px;
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust to keep it centered */
    background-color: #000;
    color: #fff;
    padding: 10px;
    border-radius: 16px;
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease-in-out; /* Smooth animation */
    width: 300px; /* Default width for desktop */
    height: auto;
    overflow: hidden;
    flex-direction: column;
    z-index: 1000;
  }

  /* Expanded state for desktop */
  #audioPopup.expanded {
    width: 500px;
    height: auto;
    padding: 8px 16px;
    box-sizing: border-box;
    display: flex; /* Show the popup when expanded */
  }

  /* Music icon button centered for desktop */
  #openMusicBtn {
    position: fixed;
    bottom: 10px;
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust to keep it centered */

    background-color: #000;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: none; /* Initially hidden */
    z-index: 1000;
	width: 56px;
	height: 56px;
  }
  #openMusicBtn img {
	height: 48px;
	width: 48px;
	display: block;
    margin: auto;
  }
  /* Styles for mobile */
  @media screen and (max-width:62.56em) {
    #audioPopup {
      position: fixed;
      bottom: 10px;
      right: 10px;
      background-color: #000;
      color: #fff;
      padding: 10px;
      border-radius: 50%;
      display: none; /* Initially hidden */
      justify-content: center;
      align-items: center;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
      transition: all 0.4s ease-in-out;
      width: 60px;
      height: 60px;
      overflow: hidden;
    }

    #audioPopup.expanded {
      width: 90%;
      height: auto;
      right: 0px;
      bottom: 0px;
      border-radius: 12px;
      padding: 4px 8px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    #openMusicBtn {
      bottom: 10px;
	  right: 10px;
	  left: auto;
	  transform: none;
	  height: 36px;
	  width: 36px;
	  padding: 0rem;
	  aspect-ratio: 1 / 1;

    }
	#openMusicBtn img {
		height: 24px;
        width: 24px;
        margin: auto;
        display: block;
        margin-top: 4px;
	  }
	#openMusicBtn.lifted, #audioPopup.expanded.lifted {
		bottom: 90px;
	}
  }

  /* Align arrow, title, and close button in a row */
  .audioHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 4px;
  }

  #audioTitle {
    flex-grow: 1;
    font-size: 16px;
    text-align: center;
    margin: 0 10px;
    cursor: pointer;
  }

  .control-btn {
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    background: none;
    border: none;
  }

  #audioPopup .minimize-btn::after {
    content: '→'; /* Right arrow */
  }

  #audioPopup.expanded .minimize-btn::after {
    content: '↓'; /* Down arrow when expanded */
  }

  #audioPopup .close-btn::after {
	color: white;
    content: '✖'; /* Close button */
  }

  /* Ensures audio element takes full width */
  #audioPopup audio {
    width: 100%; /* Ensure full width */
    height: 40px; /* Set an explicit height for the audio controls */
    border-radius: 5px;
    display: block;
  }

  .controls {
    width: 100%; /* Ensure controls take the full width */
  }
  /* end of audio popup */

  .author-flex-container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
  }

  .author-flex-item {
	display: flex;
	align-items: center;
  }

  .poolsidechatbutton {
	max-width: max-content;
  }
  @media (max-width: 768px) {
	.author-flex-container {
	  flex-direction: column;
	  align-items: flex-start;
	}
	.author-flex-item.poolsidebutton, .author-flex-item.poolsidebutton img, .author-flex-item.poolsidebutton button {
	  width: 100%;
	}
  }

  .grid-container .medium-heading {
	font-weight: 800;
	font-size: 1.5rem;
	letter-spacing: normal;
	text-transform: none;
  }

  .padding-lr {
    padding-left: 1rem;
    padding-right: 1rem;
}

.border-radius {
    border-radius: 1.5rem;
}

.white-bg {
    background-color: white;
    overflow: hidden;
}

.grid-container h4.callout-text {
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 100%;
}

.grid-container .large-h-tag {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.4;
	text-transform: none;
	letter-spacing: normal;
}

@media print, screen and (max-width: 48em) {
    .grid-container .large-h-tag {
        font-size: 1.5rem;
    }
	.ranking-list {
		padding-left: 0rem;
	}
	.ranking-list li{
		font-size: 14px;
	}
}

.solid-black-bg {
	background-color: black;
	color: white;
}

.iframe-video {
    display: block;
    margin: 1rem auto;
    width: 100%;
    height: auto;
    max-width: 560px;
    max-height: 315px;
    aspect-ratio: 16 / 9;
}

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

#content a.no-style {
	text-decoration: none;
	border: none;
}

#table-of-contents a.highlight-blue {
	color: #2997ff;
	font-weight: bold;
  }

  .product-box-callout {
    position: relative;
    box-shadow: 0 0 5px 0 #6d9eff;
    border: 6px solid #3c78f0;
    padding: 32px;
    margin-bottom: 2rem;
}
.product-box-callout:after {
    display: inline-block;
    border: 11px inset rgba(0, 0, 0, 0);
    border-top: 11px solid #fff;
    content: "";
    position: absolute;
    display: block;
    height: 0;
    width: 0;
    left: 23px;
    bottom: -21px;
}
.product-box-callout .left-callout {
    font-size: 1.1875rem;
    line-height: 1.3125rem;
    font-family: nyt-franklin, Franklin Fallback Helvetica, Franklin Fallback Arial, helvetica, sans-serif;
    font-weight: 900;
    letter-spacing: -.5px;
    color: #000;
    display: inline-block;
    position: absolute;
    top: -20px;
    left: -10px;
    margin: 0;
    padding: 6px 16px 8px 14px;
    color: #fff;
    background-color: #1b4abe;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, .14);
}
.product-box-callout .left-callout:after {
    content: " ";
    display: block;
    position: absolute;
    left: -10px;
    bottom: -7px;
    border-color: rgba(0, 0, 0, 0) #092f8d rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    border-style: inset solid inset inset;
    border-width: 0 10px 7px;
}
.product-box-callout .bottom-callout-dialog {
    position: absolute;
    width: 40px;
    height: 40px;
    overflow: hidden;
    left: 12px;
    bottom: -46px;
}
.product-box-callout .bottom-callout-dialog:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #3c78f0;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    top: -10px;
    left: 12px;
    box-shadow: -1px -1px 5px -2px rgba(0, 0, 0, .5);
}
#content a.blackbox-link {
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 500;
    color: #000;
    font-weight: 700;
    width: 100%;
    padding: 9px 24px;
    border-radius: 7px;
    border: 0;
    background-color: #000;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    color: #fff;
    text-decoration: none;
    display: block;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

.numbered-heading {
	display: flex;
	align-items: center;
  }


  .robots-header {
	display: grid;
	grid-gap: 8px;
	padding: 8px;
	box-sizing: border-box;
	width: 100%; /* Ensures container fills available width */
	height: auto; /* Adjust if a fixed height is needed */
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	grid-template-areas:
	  "premier premier sigma sigma openbox openbox openbox openbox proline proline bestrobots bestrobots"
	  "premier premier sigma sigma openbox openbox openbox openbox maxseries maxseries bestrobots bestrobots";
  }

  @media screen and (max-width:62.56em) { 
	.robots-header {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		grid-template-rows: repeat(4, minmax(0, 1fr));
		grid-template-areas:
		"premier premier openbox openbox openbox openbox"
		"premier premier openbox openbox openbox openbox"
		"sigma sigma proline proline bestrobots bestrobots"
		"sigma sigma maxseries maxseries bestrobots bestrobots";
		}
  }
  @media print, screen and (max-width:48em) {
	.robots-header {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		grid-template-rows: repeat(4, minmax(0, 1fr));
		grid-template-areas:
		"premier premier sigma sigma"
		"premier premier sigma sigma"
		"openbox openbox openbox openbox"
		"openbox openbox openbox openbox";
	}
	.bestrobots, .proline, .maxseries {
		display: none;
	}
  }

  /* Define grid areas */
  .premier { grid-area: premier; }
  .sigma { grid-area: sigma; }
  .bestrobots { grid-area: bestrobots; }
  .openbox { grid-area: openbox; }
  .proline { grid-area: proline; }
  .maxseries { grid-area: maxseries; }
  
  /* Ensure images fit within grid cells */
  .robots-header div {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
  }
  
  .robots-header img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  .ico-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 8, .6);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.ico-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.ico-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

.ico-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.ico-option {
    background: none;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.ico-option:hover {
    border-color: #007bff;
    transform: translateY(-2px);
}

.ico-option img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.ico-option h4 {
    margin: 10px 0;
    color: #333;
}

@media (max-width: 768px) {
    .ico-modal-content {
        margin: 30% auto;
        padding: 15px;
    }
    
    .ico-options {
        flex-direction: column;
    }
    
    .ico-option {
        min-width: unset;
    }
}

.margin-auto {
	margin: 0rem auto;
}
.welcome-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.welcome-section h2 span {
    background: linear-gradient(135deg, #4dfff3 0, #4da8ff 50%, #b44dff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.welcome-input-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
}
.welcome-input {
    flex: 1;
    border: none;
    padding: 8px 12px;
    font-size: 16px;
    outline: 0;
    background: 0 0;
}
.welcome-send-button {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.welcome-send-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.welcome-send-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.welcome-input::placeholder {
    color: #757575;
}
.chat-button {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 1000;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.chat-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.chat-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.chat-popup {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 1rem;
    width: 360px;
    height: 682px;
    background: #fff;
    z-index: 1001;
    display: none;
    flex-direction: column;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 1.5px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid #e0e0e0;
}
.chat-popup.active {
    display: flex;
}
@media (max-width: 600px) {
    .chat-popup,
    .support-choice-float {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        margin: 0;
        border-radius: 0;
        max-width: none;
        max-height: none;
    }
    .chat-popup {
        z-index: 1001;
    }
    .support-choice-float {
        z-index: 2002;
    }
    .support-choice-card {
        height: 100vh;
        border-radius: 0;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .chat-header {
        border-radius: 0;
    }
    .chat-content {
        flex: 1;
        overflow-y: auto;
    }
    .chat-input-container {
        position: sticky;
        bottom: 0;
        background: var(--bg-color);
        padding: 1rem;
        border-top: 1px solid #f0f0f0;
    }
    .chat-messages {
        padding-bottom: 1rem;
    }
}
.chat-header {
    padding: 16px;
    background: #fff;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 1rem 1rem 0 0;
}
.chat-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #fff;
}
.chat-controls {
    display: flex;
    gap: 10px;
}
.chat-close,
.chat-minimize {
    background: 0 0;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.chat-close:hover,
.chat-minimize:hover {
    opacity: 1;
    color: #42a5f5;
}
.chat-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 0 0 1rem 1rem;
}
@media (max-width: 480px) {
    .chat-popup {
        height: 100%;
    }
}
.contact-container {
    padding: 0 1rem;
}

.chat-choice-btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
    padding: 1.1rem 0.5rem 0.7rem 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 1.5rem;
    border: none;
    background: #f5f5f5;
    color: #222;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}
.chat-choice-btn.ai-choice {
    background: #1976d2;
    color: #fff;
    margin-bottom: 1.2rem;
}
.chat-choice-btn.ai-choice:hover {
    background: #1251a3;
}
.chat-choice-btn.livechat-choice {
    background: #fff;
    color: #1976d2;
    border: 2px solid #1976d2;
}
.chat-choice-btn.livechat-choice:hover {
    background: #e3f0ff;
    color: #1251a3;
}
.support-choice-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 1.5px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid #e0e0e0;
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    width: 360px;
    height: 682px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    pointer-events: all;
}
.support-choice-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: 0 0;
    border: none;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
    opacity: 0.7;
    transition: color 0.2s, opacity 0.2s;
    z-index: 2;
}
.support-choice-close:hover {
    color: #1976d2;
    opacity: 1;
}
.support-choice-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex: 1;
    justify-content: center;
}
.support-choice-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}
.support-choice-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.2rem;
}
.support-choice-subtext {
    font-size: 0.98rem;
    color: #888;
    margin-bottom: 0.7rem;
}
.support-choice-btn {
    background: 0 0;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 0.7rem 1.6rem;
    font-size: 1.08rem;
    font-weight: 600;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s;
    box-shadow: none;
    letter-spacing: 0.01em;
}
.support-choice-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 1.2rem 0;
    width: 100%;
}
.support-choice-float {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 1rem;
    z-index: 2002;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
    width: 360px;
    height: 682px;
}
.answers-solved-image {
    width: auto;
    max-width: 150px;
}
.chat-popup {
    background: #fff !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 1.5px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid #e0e0e0;
}
.chat-header {
    background: #fff !important;
    color: #222 !important;
    border-bottom: 1px solid #f0f0f0;
}
.chat-title {
    color: #222 !important;
    font-weight: 600;
    font-size: 1.1rem;
}
.chat-controls .chat-close,
.chat-controls .chat-minimize {
    color: #888 !important;
    font-size: 22px;
    opacity: 0.7;
    background: 0 0;
    border: none;
    transition: color 0.2s, opacity 0.2s;
    order: 2;
}
.chat-controls .chat-minimize {
    order: 1;
}
.chat-controls .chat-close:hover,
.chat-controls .chat-minimize:hover {
    color: #000 !important;
    opacity: 1;
}
.chat-content {
    background: #fff !important;
}
.chat-container {
    background: #fff !important;
    box-shadow: none;
    border-radius: 0;
    font-family: "SF Pro Display", "Segoe UI", "Open Sans", Arial, sans-serif;
}
.chat-messages {
    background: #fff !important;
    padding: 24px 18px 80px 18px;
    gap: 18px;
    display: flex;
    flex-direction: column;
}
.message {
    max-width: 90%;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.message.ai {
    align-self: flex-start;
    justify-content: flex-start;
    width: 90%;
    max-width: 90%;
}
.message.user {
    align-self: flex-end;
    justify-content: flex-end;
    align-items: flex-end;
}
.avatar {
    display: none;
}
.message-content {
    background: #f7f7f7;
    color: #222;
    border-radius: 18px;
    padding: 14px 18px;
    font-size: 1.04rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin: 0;
    font-family: "SF Pro Display", "Segoe UI", "Open Sans", Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
}
.message.user .message-content {
    background: #e9e9e9;
    color: #222;
    border-radius: 18px;
}
.chat-input-container {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-radius: 0 0 1rem 1rem;
    box-shadow: none;
    padding: 18px;
}
.chat-input {
    background: #f7f7f7;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    color: #222;
    font-size: 1.08rem;
    font-family: "SF Pro Display", "Segoe UI", "Open Sans", Arial, sans-serif;
    box-shadow: none;
    padding: 12px 16px;
}
.send-button {
    background: #000;
    color: #fff;
    border-radius: 0;
    width: 40px;
    height: 40px;
    box-shadow: none;
    margin-left: 8px;
}
.send-button:hover {
    background: #222;
}
.send-button:disabled {
    background: #bbb;
    color: #fff;
}
.quick-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 4px;
    justify-content: flex-start;
    max-width: 100%;
    width: 100%;
}
.question-pill {
    background: #f7f7f7;
    color: #222;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 1rem;
    cursor: pointer;
    white-space: normal;
    max-width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: background 0.18s, color 0.18s;
    text-align: left;
}
.question-pill:hover {
    background: #e9e9e9;
    color: #000;
}
:root {
    --primary-color: #000000;
    --primary-dark: #333333;
    --primary-light: #666666;
    --accent-color: #1976d2;
    --accent-dark: #1565c0;
    --accent-light: #42a5f5;
    --secondary-color: #424242;
    --bg-color: #ffffff;
    --chat-bg: #f5f5f5;
    --user-bubble: #1976d2;
    --ai-bubble: #ffffff;
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}
.chat-container {
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.chat-header {
    padding: 12px 16px;
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}
.chat-header h2 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-light);
}
.close-button {
    background: 0 0;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.close-button:hover {
    color: var(--accent-light);
}
.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    scroll-behavior: smooth;
    padding-bottom: 80px;
}
.message {
    display: flex;
    gap: 12px;
    max-width: 80%;
    width: 100%;
    flex-direction: column;
}
.message-content {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    order: 2;
}
.message-content h1 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--primary-color);
    word-wrap: break-word;
    font-weight: 500;
}
.message-content h2 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--secondary-color);
    word-wrap: break-word;
    font-weight: 500;
}
.message-content h3 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 500;
    word-wrap: break-word;
}
.message.user {
    align-self: flex-end;
}
.message.user .message-content {
    order: 2;
}
.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.user .avatar {
    background-color: #1976d2;
    color: #fff;
    order: 2;
}
.ai .avatar {
    background-color: #fff;
    color: #fff;
}
.user .message-content {
    background-color: var(--user-bubble);
    color: var(--text-light);
    border-bottom-right-radius: 4px;
    box-shadow: var(--shadow-md);
}
.ai .message-content {
    background-color: var(--ai-bubble);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-sm);
}
.typing-indicator {
    display: inline-block;
}
.typing-indicator span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 4px;
    animation: pulse 1.5s infinite ease-in-out;
    opacity: 0.6;
}
.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}
.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
    margin-right: 0;
}
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}
.chat-input-container {
    padding: 16px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    background-color: #fff;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    bottom: 0;
    z-index: 10;
    border-radius: 20px;
}
.chat-input {
    flex: 1;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 12px 20px;
    outline: 0;
    font-size: 16px;
    font-family: var(--font-family);
    transition: var(--transition);
    resize: none;
    min-height: 20px;
    max-height: 120px;
    overflow-y: auto;
    width: 100%;
    box-shadow: var(--shadow-sm);
    background-color: var(--ai-bubble);
}
.chat-input:focus {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}
.send-button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.send-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.send-button:disabled {
    background-color: #bdbdbd;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.send-icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}
.quick-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    max-width: 100%;
}
.welcome-form {
    background-color: var(--ai-bubble);
    border-radius: 12px;
    padding: 20px;
    margin-top: 12px;
    width: 100%;
    max-width: 100%;
}
.form-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    width: 100%;
    max-width: 100%;
}
.form-button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.form-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.message-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}
.message-content a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}
.question-pill {
    background-color: var(--ai-bubble);
    border: none;
    border-radius: 16px;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.14);
    position: relative;
    overflow: hidden;
}
.question-pill:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
}
.question-pill:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.14);
}
.question-pill::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.question-pill:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: 0s;
}
.message-timestamp {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
}
@media (max-width: 768px) {
    .chat-header {
        padding: 8px 12px;
    }
    .chat-header h2 {
        font-size: 1.1rem;
    }
    .chat-messages {
        padding: 12px;
        padding-bottom: 80px;
    }
    .chat-input-container {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--bg-color);
        padding: 12px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    .message {
        max-width: 100%;
    }
    .message-content {
        max-width: 100%;
    }
    .quick-questions {
        padding-left: 0;
        max-width: 100%;
        margin-top: 8px;
    }
    .form-buttons {
        flex-direction: column;
        gap: 4px;
    }
    .form-button {
        width: 100%;
        padding: 10px 16px;
    }
    .avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .message-content {
        padding: 10px 14px;
        font-size: 13px;
    }
    .message-content h1 {
        font-size: 1.2rem;
    }
    .message-content h2 {
        font-size: 1.1rem;
    }
    .message-content h3 {
        font-size: 1rem;
    }
    .question-pill {
        padding: 6px 12px;
        font-size: 12px;
    }
    .chat-input {
        font-size: 16px;
    }
}
@media (max-width: 600px) {
    .chat-popup,
    .support-choice-float {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        margin: 0;
        border-radius: 0;
        max-width: none;
        max-height: none;
    }
    .chat-popup {
        z-index: 1001;
    }
    .support-choice-float {
        z-index: 2002;
    }
    .support-choice-card {
        height: 100vh;
        width: 100%;
        border-radius: 0;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .chat-header {
        border-radius: 0;
    }
    .chat-content {
        flex: 1;
        overflow-y: auto;
    }
    .chat-input-container {
        position: sticky;
        bottom: 0;
        background: var(--bg-color);
        padding: 1rem;
        border-top: 1px solid #f0f0f0;
    }
    .chat-messages {
        padding-bottom: 1rem;
    }
}

    /* Base styles for chat elements */


    /* Fullscreen mobile styles */
    @media (max-width: 600px) {
        .chat-popup,
        .support-choice-float {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            width: 100% !important;
            height: 100% !important;
            max-width: 100% !important;
            max-height: 100% !important;
            margin: 0 !important;
            border-radius: 0 !important;
            display: none;
            flex-direction: column;
            background: #fff;
            /* Add safe area insets */
            padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
        }

        .chat-popup.active {
            display: flex !important;
        }

        .chat-header {
            position: sticky;
            top: 0;
            width: 100% !important;
            padding: 15px;
            background: #fff;
            border-bottom: 1px solid #eee;
            z-index: 2;
        }

        .chat-content {
            flex: 1;
            width: 100% !important;
            height: calc(100% - 120px) !important;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            padding: 15px;
            padding-bottom: 80px;
        }

        .chat-input-container {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100% !important;
            padding: 15px;
            padding-bottom: calc(15px + env(safe-area-inset-bottom));
            background: #fff;
            border-top: 1px solid #eee;
            z-index: 2;
        }

        .chat-messages {
            width: 100% !important;
            padding-bottom: 15px;
        }

        .message {
            width: 100% !important;
            max-width: 100% !important;
            margin-bottom: 15px;
        }

        .message-content {
            width: calc(100% - 50px) !important;
            max-width: calc(100% - 50px) !important;
        }

        .support-choice-float {
            z-index: 2002;
            background: rgba(255, 255, 255, 0.95);
        }

        .support-choice-card {
            width: 100% !important;
            height: 100% !important;
            margin: 0;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 0;
            box-shadow: none;
        }

        .support-choice-content {
            width: 100% !important;
            max-width: 100% !important;
        }

        .support-choice-section {
            width: 100% !important;
            padding: 15px;
        }

        /* Fix for iOS height issues */
        @supports (-webkit-touch-callout: none) {
            .chat-popup,
            .support-choice-float {
                height: -webkit-fill-available !important;
            }

            .chat-content {
                height: calc(100vh - 120px - env(safe-area-inset-top) - env(safe-area-inset-bottom)) !important;
            }
        }
    }

	.message-content .open-live-chat.start-chat-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 0.5em 1.2em;
		border: none;
		border-radius: 9999px; /* pill shape */
		background-color: #000;
		color: #fff;
		font-weight: 500;
		font-size: 0.95rem;
		text-decoration: none;
		cursor: pointer;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
		transition: background-color 0.2s ease, transform 0.2s ease;
	  }
	  
	  .message-content .open-live-chat.start-chat-btn:hover {
		background-color: #1a1a1a;
		transform: translateY(-1px);
	  }
	  
	  .message-content .open-live-chat.start-chat-btn:active {
		transform: scale(0.98);
	  }
	  
	  .no-style-button.playaudiobutton {
		margin-top: 1rem;
	  }

	  .why-buy {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
		max-width: 1200px;
		margin: 1rem auto;
		padding: 0rem;
	}
	
	.feature-wrapper {
		display: flex;
		align-items: center;
		gap: 8px;
	}
	
	.icon-container {
		width: 8.333%;
	}
	
	.icon-text-container {
		width: 91.667%;
	}
	
	.icon-container img {
		width: 30px;
		height: 30px;
		object-fit: contain;
	}
	
	.icon-text-container p {
		margin: 0;
	}
	
	#openModal {
		background: none;
		border: none;
		padding: 0;
		font: inherit;
		cursor: pointer;
		display: flex;
		align-items: center;
		gap: 0.5rem;
		text-align: left;
	}
	
	#openModal img {
		width: 20px;
		height: 20px;
		opacity: 0.7;
	}
	
	#openModal:hover img {
		opacity: 1;
	}
	
	@media (min-width: 640px) {
		.icon-container {
			width: 16.667%;
		}
		.icon-text-container {
			width: 83.333%;
		}
	}
	
	@media (max-width: 639px) {
		.why-buy {
			grid-template-columns: 1fr;
		}
	}


	.special-offers-container {
		display: flex;
		align-items: center;
		gap: 5px;
		margin-bottom: 8px;
		margin-top: 1rem;
		width: 100%;
	}
	
	.special-offers-icon {
		display: block;
		flex: 0 0 30px;
		width: 30px !important;
		height: 30px !important;
		min-width: 30px;
		min-height: 30px;
		max-width: 30px;
		max-height: 30px;
		object-fit: contain;
		margin: 0;
		padding: 0;
	}
	
	.special-offers-text {
		display: flex;
		align-items: center;
		margin: 0;
		padding: 0;
		line-height: 30px;
		height: 30px;
	}
	
	.special-offers {
		display: flex;
		align-items: center;
		gap: 10px;
		margin-bottom: 10px;
	}
	
	.special-offers .promo-icons {
		flex-shrink: 0;
	}
	
	.special-offers p {
		margin: 0;
	}
	
	.special-offers-text .bluelink {
		margin-left: 8px;
	}