/* RESET */
* {
	box-sizing: border-box;
}
html {
	font-size: 100%;
}
body {
	background-color: #FFFFFF;
	color: #333333;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
}
article, aside, footer, header, nav, section, figcaption, figure, main {
	display: block;
}
h1, h2, h3, h4, h5, h6 {
	color: #000000;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 10px 0;
}
h1 {
	color: #000000;
	font-size: 34px;
}
h2 {
	font-size: 30px;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 18px;
}
p {
	font-size: 18px;
	margin: 0;
}
ul, ol, dl {
	font-size: 18px;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
hr {
	border-top: 1px solid #CCCCCC;
}
fieldset {
	border: 2px solid #CCCCCC;
	border-radius: 0;
	font-size: 18px;
	padding: 10px;
	width: 100%;
}
legend {
	border: 0;
	font-weight: 400;
	margin: 0;
	width: auto;
}
label {
	font-size: 14px;
	font-weight: 700;
}
input {
	border: 2px solid #CCCCCC;
	border-radius: 0;
	color: #333333;
	font-size: 14px;
	padding: 10px;
	width: 100%;
}
input[type='date'], input[type='month'] {
	padding: 7px;
}
input[type='radio'], input[type='checkbox'] {
	width: auto;
}
textarea {
	border: 2px solid #CCCCCC;
	border-radius: 0;
	font-family: inherit;
	font-size: 18px;
	padding: 10px;
	width: 100%;
}
select {
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	border: 2px solid #CCCCCC;
	border-radius: 0;
	font-size: 14px;
	padding: 10px;
	width: 100%;
}
@supports (display: grid) {
	select {
		background-image: url('../images/icons/icon-arrow-down.svg');
		background-position: right 10px center;
		background-repeat: no-repeat;
		background-size: 16px;
		padding: 10px 40px 10px 10px;
	}
}
input:focus, textarea:focus, select:focus {
	border-color: #767676;
}
input.error, textarea.error, select.error {
	border: 2px solid #CC0000;
}
a {
	background-color: transparent;
	color: inherit;
	cursor: pointer;
	outline: 0;
	text-decoration: none;
}
a:hover, a:focus {
	color: #CC0000;
}
a:focus {
	outline: 1px solid;
	outline-offset: 2px;
}
img {
	height: auto;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}
strong { font-weight: 700; }
b { font-weight: 700; }
em { font-style: italic; }
i { font-style: italic; }
u { text-decoration: underline; }
sup {
	font-size: 75%;
	line-height: 0;
	margin-right: 3px;
	position: relative;
	top: -0.5em;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
small {
	font-size: 12px;
}
::selection {
	background: #CC0000;
	color: #FFFFFF;
	text-shadow: none;
}
::placeholder {
	font-weight: 300;
}
svg:not(:root) {
	overflow: hidden;
}
button {
	cursor: pointer;
	font: inherit;
}
button[disabled] {
	cursor: default;
}

/* Remove-Item:Focus on Cart Page && Change-Address:focus on checkout Styling */
button[id^="remove-item-link-"]:focus {
	outline: solid 1px;
	outline-offset: -2px;
}
button[id="change-address-link"]:focus {
	outline: solid 1px;
	outline-offset: 2px;
}
/* WYSIWYG CONTENT */
.wysiwyg-content {
	margin-left: 10px;
	margin-right: 10px;
}
.wysiwyg-content p {
	margin-bottom: 15px;
}
.wysiwyg-content ul, .wysiwyg-content ol, .wysiwyg-content dl {
	margin-bottom: 24px;
}
.wysiwyg-content ul {
	list-style-type: disc;
	padding-left: 1em;
	padding-right: 2em;
}
.wysiwyg-content ol {
	counter-reset: item;
	list-style-type: decimal;
	padding-left: 0;
	padding-right: 2em;
}
.wysiwyg-content dl {
	padding-left: 0;
	padding-right: 2em;
}
@media (min-width: 1025px) {
	.wysiwyg-content {
		margin-left: 0;
		margin-right: 0;
	}
}

/* List Item */
.wysiwyg-content li:not(:last-child) {
	margin-bottom: 5px;
}
.wysiwyg-content ol li {
	counter-increment: item;
	list-style-type: none;
	padding-left: 1em;
	position: relative;
}
.wysiwyg-content ol li::before {
	content: counter(item) '.';
	font-weight: 700;
	left: 0;
	position: absolute;
	top: 0;
}
.wysiwyg-content dl  dd {
	margin-bottom: 20px;
}

/* Blockquote */
.wysiwyg-content blockquote {
	border-left: 2px solid #000000;
	margin: 30px 0;
	padding: 15px;
}

/* Horizontal Rule */
.wysiwyg-content hr {
	margin: 24px auto;
}

/* Anchor */
.wysiwyg-content a {
	position: relative;
}
.wysiwyg-content a:not(.button) {
	color: #CC0000;
	text-decoration: underline;
}
.wysiwyg-content a:hover:not(.button), .wysiwyg-content a:focus:not(.button) {
	color: #000000;
}

/* Image */
.wysiwyg-content img {
	display: block;
	height: auto;
	line-height: 0;
	width: auto;
}

/* GRID */
.g-l-row {
	display: flow-root;
	margin: 0 auto;
	max-width: 1252px;
	padding: 0;
	position: relative;
	width: 100%;
}

/* HELPERS */
/* Accessibility */
.h-visual-hide {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

/* Reverse hide. */
.h-reverse-visual-hide {
	clip: auto;
	clip-path: none;
	height: auto;
	margin: 0;
	overflow: visible;
	padding: 0;
	position: static;
	width: auto;
}
.h-hidden {
	display: none;
}

.skip-navigation {
	background-color: #FFFFFF;
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}
.skip-navigation:focus, .skip-navigation:hover {
	border: 0;
	border-radius: 5px;
	clip: auto;
	clip-path: none;
	height: auto;
	left: 0;
	margin: 0;
	overflow: visible;
	padding: 6px 15px;
	position: fixed;
	top: 0;
	width: auto;
	z-index: 10000;
}
.skip-to-products {
	background-color: #FFFFFF;
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}
.skip-to-products:focus, .skip-to-products:hover {
	border: 0;
	border-radius: 5px;
	clip: auto;
	clip-path: none;
	height: auto;
	left: 0;
	margin: 0;
	overflow: visible;
	padding: 6px 15px;
	top: 80px;
	width: auto;
	z-index: 10000;
}

/* Spacing */
.h-space-bottom { margin-bottom: 50px; }

/* Text */
.h-text-center { text-align: center; }
.h-text-right { text-align: right; }
.h-text-bold { font-weight: 700; }
.h-text-italic { font-style: italic; }

/* Colors */
.h-color-primary { color: #CC0000; }
.h-color-secondary { color: #A50000; }
.h-color-tertiary { color: #EB0000; }
.h-color-white { color: #FFFFFF; }
.h-color-black { color: #000000; }
.h-color-gray { color: #808080; }
.h-color-gray-light { color: #F2F2F2; }
.h-color-gray-medium { color: #CCCCCC; }
.h-color-gray-dark { color: #767676; }
.h-color-text { color: #333333; }
.h-color-error { color: #CC0000; }
.h-color-success { color: #A7CE39; }
.h-color-warning { color: #FFD216; }
.h-color-info { color: #B8E3EB; }

/* Background Color */
.h-background-color-primary { background-color: #CC0000; }
.h-background-color-secondary { background-color: #A50000; }
.h-background-color-tertiary { background-color: #EB0000; }
.h-background-color-white { background-color: #FFFFFF; }
.h-background-color-black { background-color: #000000; }
.h-background-color-gray { background-color: #808080; }
.h-background-color-gray-light { background-color: #F2F2F2; }
.h-background-color-gray-medium { background-color: #CCCCCC; }
.h-background-color-gray-dark { background-color: #767676; }
.h-background-color-text { 	background-color: #333333; }
.h-background-color-error { background-color: #CC0000; }
.h-background-color-success { background-color: #A7CE39; }
.h-background-color-warning { background-color: #FFD216; }
.h-background-color-info { background-color: #B8E3EB; }

/* BUTTONS */
.button {
	-webkit-appearance: none;
	appearance: none;
	background-color: #CC0000;
	border: 2px solid #CC0000;
	border-radius: 0;
	color: #FFFFFF;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	line-height: 1;
	margin: 0;
	padding: 12px 32px;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.25s ease-out, color 0.25s ease-out, border-color 0.25s ease-out;
	width: 100%;
}
@media (min-width: 768px) {
	.button, .paypal_checkout {
		width: auto;
	}
}
.button:hover, .button:focus {
	background-color: #EB0000;
	border-color: #EB0000;
	color: #FFFFFF;
	text-decoration: none;
}
.button--secondary {
	background-color: #000000;
	border-color: #000000;
	color: #FFFFFF;
}
.button--secondary:hover, .button--secondary:focus {
	background-color: #333333;
	border-color: #333333;
	color: #FFFFFF;
}

.button--full-width {
	display: block;
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}

.button--hollow {
	background-color: transparent;
	border: 2px solid #CC0000;
	color: #CC0000;
}

.button--hollow:hover,
.button--hollow:focus {
	background-color: #EB0000;
	color: #FFFFFF;
}

.button--reset {
	background-color: transparent;
	border: 0;
}

.button[disabled] {
	background-color: transparent;
	border: 1px solid #808080;
	color: #808080;
	cursor: default;
}

/* PILL */
.pill {
	align-items: center;
	cursor: pointer;
	display: inline-flex;
	font-size: 16px;
	line-height: 1;
	text-decoration: none;
}

.pill:focus,
.pill:hover {
	border-color: #EB0000;
	text-decoration: none;
}

.pill:focus .pill__text,
.pill:hover .pill__text {
	border-color: #EB0000;
}

.pill:focus .pill__icon-container,
.pill:hover .pill__icon-container {
	background-color: #EB0000;
	border-color: #EB0000;
}

.pill__text {
	border: 2px solid #000000;
	border-radius: 30px 0 0 30px;
	line-height: 1;
	padding: 3px 10px 2px;
}

.pill__icon-container {
	background-color: #000000;
	border: 2px solid #000000;
	border-radius: 0 30px 30px 0;
	display: block;
	padding: 3px 10px 2px 5px;
}

.pill__icon {
	color: #FFFFFF;
	display: block;
}
.pill__text--remove{
	color: #CC0000;
}

/* FIELDS */
.field-group {
	margin-bottom: 10px;
}

@media (min-width: 768px) {
	.field-group {
		margin-bottom: 45px;
	}
}

.field-group--small {
	margin-bottom: 25px;
}

.field-group--two-column {
	display: flex; /* IE 11 */
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.field-group--two-column > *:first-child {
	margin-right: 20px;
}

@supports (display: grid) {
	.field-group--two-column > *:first-child {
		margin-right: 0;
	}
}

input.is-error,
select.is-error {
	background-color: rgba(204, 0, 0, 0.1);
	border: 2px solid #CC0000;
}

/* Custom Radio */
.input-custom-radio:checked + .label-custom-radio::before {
	background-color: #000000;
}

.input-custom-radio:focus + .label-custom-radio::before {
	border-color: #000000;
}

.input-custom-radio:checked + .label-custom-radio {
	color: #000000;
}

.label-custom-radio {
	align-items: center;
	cursor: pointer;
	display: inline-flex;
	grid-template-columns: 1fr;
	line-height: 1;
	margin-bottom: 15px;
}

@media (min-width: 768px) {
	.label-custom-radio {
		display: grid;
		grid-template-columns: max-content max-content;
	}
}

.label-custom-radio::before {
	background-clip: content-box;
	background-color: transparent;
	border: 1px solid #000000;
	border-radius: 50%;
	content: '';
	display: inline-block;
	flex-shrink: 0;
	height: 20px;
	margin-right: 5px;
	padding: 2px;
	transition: background-color 0.3s ease-in;
	width: 20px;
}

@media (min-width: 768px) {
	.label-custom-radio::before {
		margin-right: 15px;
	}
}

/* Custom Checkbox */
/* If checked */
/* Highlight label color */
.input-custom-checkbox.cant-click + .label-custom-checkbox {
	opacity: 0.5;
	pointer-events: none;
}
.input-custom-checkbox:checked + .label-custom-checkbox {
	color: #000000;
}

/* Fill checkbox */
.input-custom-checkbox:checked + .label-custom-checkbox::before {
	background-color: #000000;
	border-color: #000000;
}

/* Display checkmark */
.input-custom-checkbox:checked + .label-custom-checkbox::after {
	display: block;
}

/* If focused */
.input-custom-checkbox:focus + .label-custom-checkbox::before {
	border-color: #000000;
}

.input-custom-checkbox:focus + .label-custom-checkbox {
	outline: 1px solid;
	outline-offset: 2px;
}

/* Checkmark */
.label-custom-checkbox::after {
	border: solid #FFFFFF;
	border-width: 0 2px 2px 0;
	content: '';
	display: none;
	height: 10px;
	left: 7px;
	position: absolute;
	top: calc(50% - 5px); /* IE 11, Safari */
	transform: rotate(45deg);
	width: 5px;
}

.label-custom-checkbox--double-line::after {
	left: 6px;
	top: 10px;
}

/* Label */
.label-custom-checkbox {
	align-items: center;
	cursor: pointer;
	display: flex;
	line-height: 1;
	margin-bottom: 15px;
	position: relative;
}

.label-custom-checkbox::before {
	background-clip: content-box;
	background-color: #FFFFFF;
	border: 1px solid #CFCFCF;
	content: '';
	display: inline-block;
	flex-shrink: 0;
	height: 20px;
	margin-right: 10px;
	transition: background-color 0.3s ease-in;
	width: 20px;
}

.label-custom-checkbox--double-line::before {
	width: 23px;
}

/* Tooltip */
.custom-tooltip {
	align-items: center;
	background-color: transparent;
	border: 0;
	display: inline-flex;
	height: 10px;
	justify-content: center;
	margin-left: 4px;
	padding: 0;
}

.custom-tooltip img {
	display: block;
	height: 10px;
	width: 10px;
}

/* GLOBAL HEADER */
.g-header {
}

.g-header__top {
	background-color: #F7F7F7;
	display: none;
	margin: 0 auto;
	padding: 6px 0;
}

@media (min-width: 768px) {
	.g-header__top {
		display: block;
	}
}

.g-header__top-cvs-link {
	display: block;
}

.g-header__top-cvs-link svg {
	display: block;
}

.g-header__top-cvs-link:focus,
.g-header__top-cvs-link:hover {
	text-decoration: none;
}

.g-header__top-row {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media (min-width: 425px) {
	.g-header__top-row {
		flex-direction: row;
	}
}

.g-header__top-nav {
	display: flex;
	font-weight: bold;
}

.g-header__top-nav-item {
	font-size: 13px;
}

.g-header__top-nav-item:not(:last-child) {
	margin-right: 5px;
}

.g-header__bottom {
	border-bottom: 2px solid #CCCCCC;
}

/* Bottom */
@media (max-width: 767px) {
	.g-header__bottom {
		background-color: #FFFFFF;
	}
}

/* Logo */
.g-header__logo-container {
	background-color: #FFFFFF;
	display: flex;
	justify-content: center;
	padding-top: 15px;
	padding-bottom: 5px;
}

.g-header__logo-group {
	display: flex;
	flex-direction: column;
	text-align: center;
	padding-bottom: 5px;
}

@media (min-width: 768px) {
	.g-header__logo-group {
		align-items: flex-end;
		flex-direction: row;
		text-align-last: left;
		padding-bottom: 3px;
	}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.g-header__logo-group {
		display: inline-block;
	}
}

.g-header__logo {
	display: block;
	margin: 0;
	max-width: 130px;
}

@supports (display: grid) {
	.g-header__logo {
		margin: auto;
	}
}

@media (min-width: 768px) {
	.g-header__logo {
		margin: initial;
	}
}

@media (max-width: 767px) {
	.g-header__logo svg g {
		fill: #FFFFFF;
	}
}

.g-header__logo:hover {
	text-decoration: none; /* Edge */
}

.g-header__logo svg {
	display: block;
	max-width: inherit;
}

@media (max-width: 767px) {
	.g-header__logo svg {
		height: 36px;
		width: 140px;
	}
}

.g-header__my-account {
	color: #000000;
	display: none;
	font-size: 12px;
}

@media (min-width: 768px) {
	.g-header__my-account {
		display: inline;
	}
}

.g-header__my-account:focus,
.g-header__my-account:hover {
	color: #CC0000;
}

/* Nav Container */
.g-header__nav-container {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 10px 10px 14px 10px;
}

@media (max-width: 767px) {
	.g-header__nav-container {
		margin-bottom: 0;
		margin-top: -53px;
		position: static;
	}
}
@media (min-width: 1440px) {
	.g-header__nav-container {
		padding-left: 0;
		padding-right: 0;
	}
}

/* GLOBAL NAVIGATION */
.g-navigation {
	position: relative;
	z-index: 99;
}

.g-navigation__links {
	display: none;
	flex-direction: column;
}

@media (min-width: 768px) {
	.g-navigation__links {
		display: flex;
		flex-direction: row;
	}
}
@media (min-width: 1024px) {
	.g-navigation__links {
		gap: 30px;
	}
}

/* Active Menu */
.g-navigation__links.is-active {
	background: #FFFFFF;
	border-right: 1px solid #000000;
	display: flex;
	height: 100%;
	left: 0;
	padding: 0 0 20px;
	position: fixed;
	top: 97px;
	width: 90vw;
	z-index: 99;
}

.g-navigation__links.is-active .g-navigation__item--mobile {
	border-top: 2px solid #CCCCCC;
	display: block;
	padding-top: 30px;
}

.g-navigation__links.is-active .g-navigation__item-login {
	display: flex;
}

.g-navigation__overlay {
	background-color: rgba(0, 0, 0, 0.7);
	bottom: 0;
	display: block;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 98;
}

.g-navigation__item-login {
	align-items: center;
	background-color: #AC0000;
	color: #FFFFFF;
	display: none;
	font-size: 14px;
	padding: 10px 5px 5px 20px;
}

.g-navigation__item-login-icon {
	margin: 0 10px 0 0;
	vertical-align: baseline;
	max-width: 18px;
}

.g-navigation__item-login-sign-in {
	display: inline-block;
	margin-right: 10px;
}

.g-navigation__item-login-name {
	display: inline-block;
	margin-right: 10px;
}

.g-navigation__item-login-divide {
	display: inline-block;
	margin-right: 10px;
}

.g-navigation__item {
	line-height: 1;
}

@media (max-width: 767px) {
	.g-navigation__item {
		margin-bottom: 30px;
		padding: 0 20px;
	}
}

@media (min-width: 768px) {
	.g-navigation__item {
		margin-right: 22px;
	}

	.g-navigation__item--last {
		margin-right: 7px;
	}
}

.g-navigation__item--mobile {
	display: none;
}

.g-navigation__link {
	font-family: 'Arial', sans-serif;
	font-size: 16px;
}

.g-navigation__link:focus,
.g-navigation__link:hover {
	text-decoration: none;
}

.g-navigation__menu-trigger {
	color: #000000;
	cursor: pointer;
	display: block;
	font-size: 30px;
	line-height: 1;
	outline: 0;
	padding: 10px;
}

@media (min-width: 768px) {
	.g-navigation__menu-trigger {
		display: none;
	}
}

.g-navigation__menu-trigger:focus,
.g-navigation__menu-trigger:hover {
	color: #000000;
}

/* PayPal */
.paypal_checkout {
	max-width: 260px;
	min-width: 220px;
	padding-top: 10px;
}
.paypal_cart {
	max-width: 100%;
	padding-top: 10px;
}
.modal_or {
	max-width: 260px;
	text-align: center;
	padding: 15px;
	color:grey;
}

/* Cart */
.cart-empty .button {
	max-width: 220px;
	min-width: 220px;
}

.g-header__cart {
	position: relative;
	z-index: 90;
	text-align: right;
}

.g-header__cart-icon {
	background-image: url('../images/icons/icon-cart.png');
	background-position: left bottom;
	background-repeat: no-repeat;
	padding-left: 40px;
	position: relative;
}

.g-header__cart-icon:focus {
	outline-offset: 8px;
}

@media (min-width: 768px) {
	.g-header__cart-icon {
		padding-left: 36px;
	}
}

.g-header__cart-amount {
	color: #A50000;
	font-size: 15px;
	font-weight: bold;
	left: 0;
	max-width: 31px;
	position: absolute;
	right: 0;
	text-align: center;
	top: -10px;
}

.g-header__cart-text {
	color: #000000;
	display: none;
	font-size: 12px;
}

.g-header__cart-icon:focus .g-header__cart-text,
.g-header__cart-icon:hover .g-header__cart-text {
	color: #CC0000;
}

@media (min-width: 1024px) {
	.g-header__cart-text {
		display: inline;
	}
}

/* PAGE */
.page-title {
}

.page-hero {
	display: none;
	margin: -25px auto 50px;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.page-hero {
		display: block;
	}
}

.page-hero img {
	width: 100%;
}

@media (max-width: 767px) {
	.c-banner-container {
		padding: 0;
	}
}

.c-banner {
	background-color: rgba(13, 51, 75, 0.9);
	color: #FFFFFF;
	margin-bottom: 24px;
	padding: 5px 10px;
	position: relative;
	text-align: center;
	z-index: 2;
}

@media (max-width: 767px) {
	.c-banner {
		font-size: 14px;
	}
}

/* Flash Message */
.c-flash-message {
	background-color: rgba(204, 0, 0, 0.1);
	border-left: 5px solid #CC0000;
	color: #000000;
	display: none;
	margin-bottom: 20px;
	padding: 20px;
}

.c-flash-message.is-active {
	display: flex;
}

.c-flash-message--success {
	background-color: rgba(167, 206, 57, 0.1);
	border-left: 5px solid #A7CE39;
}

.c-flash-message--success .c-flash-message__icon--error {
	display: none;
}

.c-flash-message--error .c-flash-message__icon--success {
	display: none;
}

.c-flash-message__container {
	line-height: 1;
}

.c-flash-message__icon {
	color: #CC0000;
	display: inline-block;
	margin-right: 10px;
}

.c-flash-message__icon--success {
	color: #A7CE39;
}

.c-flash-message__title {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
}

.c-flash-message__message {
	font-size: 16px;
	line-height: 1.5;
}

/* FOOTER */
.g-footer {
	background-color: #F2F2F2;
}

.g-footer__top {
	display: flex; /* IE 11 */
	display: grid;
	gap: 15px 30px;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	justify-content: center; /* IE 11 */
	margin: auto;
	max-width: 800px;
	padding: 30px 10px;
}

.g-footer__links {
	margin-right: 40px; /* IE 11 */
}

@supports (display: grid) {
	.g-footer__links {
		margin: 0;
	}

	@media (max-width: 767px) {
		.g-footer__links {
			margin-bottom: 30px;
		}
	}
}

@media (min-width: 1024px) {
	.g-footer__top {
		justify-items: center;
	}
}

.g-footer__title {
	color: #CC0000;
	display: block;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 15px;
}

.g-footer__item {
	font-size: 14px;
}

.g-footer__item:not(:last-child) {
	margin-bottom: 15px;
}

.g-footer__link {
	color: #333333;
	text-decoration: underline;
}

.tm-header span {
	font-size: 7px;
	vertical-align: super;
	padding-left: 1px;
}

.tm-footer span {
	font-size: 7px;
	vertical-align: super;
	padding-left: 1px;
}

.tm-footer {
	border-bottom: .10px solid black;
	text-decoration: none !important;
}

.tm-footer:hover {
	border-bottom: .10px solid red;
}

.hero-text {
	background-color: #CC0000;
	height: 350px;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media(max-width: 992px) {
	.hero-text {
		height: auto;
	}
}

.location-hero {
	max-height: 350px;
	overflow: hidden;
}

.location-hero div {
	margin: 0 -15px;
}

.location-hero div img {
	width: 100%;
}

@media(max-width: 768px) {
	.hero-text {
		height: 100%;
	}
}

.insurance-accept {
	margin: 25px 0;
}

@media(max-width: 768px) {
	.insurance-accept h2 {
		font-size: 22px;
	}

	.insurance-accept p {
		font-size: 14px;
	}
}

.call-cvs {
	margin: 30px 0;
}

.call-cvs h2 {
	color: white;
}

.call-cvs a {
	text-decoration: underline;
}

.call-cvs a:hover {
	color: black;
}

@media(max-width: 768px) {
	 .call-cvs h2 {
		 font-size: 28px;
	 }
}

.services-section {
	list-style-type: disc;
	margin-left: 16px;
}

.services-section div {
	color: gray;
	font-size: 14px;
}

.services-section div li {
	margin: 0 0 8px 0;
}

.location-city {
	margin: 15px 0;
}

.location-city a {
	text-decoration: underline;
}

.location-city p {
	font-size: 15px;
}

/* Footer - Bottom */
.g-footer__bottom {
	background-color: #585858;
	padding: 18px;
}

.g-footer__bottom-links {
	color: #FFFFFF;
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	justify-content: space-between;
	margin: auto;
	max-width: 900px;
}

.g-footer__bottom-link:focus,
.g-footer__bottom-link:hover {
	color: #FFFFFF;
}

.g-footer__copyright {
	color: inherit;
	font-size: inherit;
}

.g-footer__scroll-top {
	background-color: #FFFFFF;
	border-top: 4px solid #CC0000;
	bottom: 0;
	box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
	cursor: pointer;
	display: none;
	font-size: 14px;
	padding-top: 5px;
	position: fixed;
	right: 20px;
	text-align: center;
	width: 64px;
}

.g-footer__social {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.g-footer__social-item:not(:last-child) {
	margin-right: 10px;
}

.g-footer__social-link {
	align-items: center;
	background-color: #585858;
	border-radius: 50%;
	color: #FFFFFF;
	display: flex;
	font-size: 23px;
	height: 50px;
	justify-content: center;
	width: 50px;
}

.g-footer__social-link:focus,
.g-footer__social-link:hover {
	color: #333333;
}

/* OTHER */
.cta-container {
	padding: 27px 0 0;
}

a.processing {
	background-color: grey;
	color: white !important;
	font-weight: 700;
	letter-spacing: 0.09em;
	padding: 10px 50px;
	text-transform: uppercase;
}

a.processing:hover {
	color: white !important;
	cursor: progress !important;
	text-decoration: none !important;
}

#submit-review-button.active {
	background-color: grey;
}

#submit-review-button.active:hover {
	cursor: default;
}

/* Heroes */
.full.container.hero {
	background-repeat: no-repeat;
	color: white;
	text-align: center;
	width: 1200px;
}

.full.container.hero .copy-container {
	margin: auto;
	padding-top: 160px;
	width: 450px;
}

.full.container.hero .copy-container h2 {
	font-size: 25px;
	font-weight: 700;
	letter-spacing: 0.0em;
	line-height: 1.4em;
}

/* 	Div Backgrounds */
div.orangebg {
	background-color: #F27922 !important;
	color: white !important;
}

div.orangebg a {
	color: white;
}

div.orangebg a:hover {
	color: white;
}

div.no-bg {
	background: none;
	background-image: none;
}

/* Banners */
#top-promo-banner {
	font-size: 16px;
	line-height: 24px;
	max-height: 40px;
	overflow: hidden;
	transition: max-height 0.1s linear;
	-webkit-transition-delay: 0s; /* Safari */
	transition-delay: 0s;
}

#top-promo-banner .container.full.orangebg {
	padding-bottom: 10px;
	padding-top: 10px;
}

#top-promo-banner .promo-copy {
	display: inline-block;
}

#top-promo-banner span {
	font-weight: 700;
}

@media (max-width: 480px) {
	#top-promo-banner {
		max-height: 80px;
	}

	#top-promo-banner .promo-copy {
		display: inline-block;
		max-width: 260px;
	}

	#top-promo-banner .close-x {
		display: inline-block;
		margin-top: 20px;
	}
}

/* Customer Reviews */
.mobile-only.reviews-container {
	font-size: 16px;
	margin-top: 20px;
}

.mobile-only.reviews-container .reviews-display {
	display: inline-block;
	padding-left: 10px;
}

.reviews-display {
	height: 16px;
	margin-top: 5px;
	width: 92px;
}

.reviews-display.one {
	background-position: 0 -98px;
}

.reviews-display.two {
	background-position: 0 -114px;
}

.reviews-display.three {
	background-position: 0 -131px;
}

.reviews-display.four {
	background-position: 0 -149px;
}

.reviews-display.five {
	background-position: 0 -165px;
}

/* Ratings Form */
.rating_selection {
	text-align: right;
}

.rating_selection label:first-of-type {
	display: none;
}

.rating_selection input[type='radio'],
.rating_selection span {
	display: none;
}

.rating_selection label {
	cursor: pointer;
}

.rating_selection label:before {
	color: #8EB5BA;
	content: '★';
	display: inline-block;
	font-size: 40px;
	letter-spacing: 0;
}

.rating_selection input:checked + label ~ label:before {
	color: #D3D2D0;
}

.rating_selection:hover label[for]:before {
	color: #8EB5BA;
}

.rating_selection:hover label:hover ~ label:before {
	color: #D3D2D0;
}

.upload-cta a {
	font-size: 15px;
	text-decoration: underline;
}

.upload-cta a:hover {
	text-decoration: none;
}

/* Spacers */
.pad-ten {
	clear: both;
	height: 10px;
}

.pad-thirty {
	clear: both;
	height: 30px;
}

.pad-fifty {
	clear: both;
	height: 50px;
}

.pad-sixty {
	clear: both;
	height: 60px;
}

.pad-seventy {
	clear: both;
	height: 70px;
}

.pad-eighty {
	clear: both;
	height: 80px;
}

.pad-ninety {
	clear: both;
	height: 90px;
}

.pad-one-hundred {
	clear: both;
	height: 100px;
}

.pad-one-twenty {
	clear: both;
	height: 120px;
}

.pad-one-thirty {
	clear: both;
	height: 130px;
}

.pad-one-fourty {
	clear: both;
	height: 140px;
}

.go-bold {
	background-color: white;
	clear: both;
	color: #67693F;
	font-weight: 700;
	letter-spacing: -0.08em;
	line-height: 170px;
	opacity: 0.09;
}

.go-bold.header {
	font-size: 120px;
}

.row.form-row {
	margin-bottom: 20px;
	margin-top: 20px;
}

h4.form-header {
	line-height: 1px;
}

/* Frames */
.hover-float {
	display: inline-block;
	margin: 0 5px;
	margin-bottom: 10px;
}

.frame-colors-container {
	margin-top: 10px;
}

.colors-container {
	margin-top: 10px;
}

.special-pricing {
	color: #F27922;
	font-weight: 500;
}

/* Misc */
.dots {
	height: 24px;
	width: 57px;
}

.edit-icon {
	background-image: url('../images/misc/edit-pencil.jpg');
	background-repeat: no-repeat;
	display: inline-block;
	height: 15px;
	margin-left: 5px;
	width: 15px;
}

.down-caret {
	display: inline-block;
	height: 8px;
	margin-left: 1px;
	width: 13px;
}

.down-caret:hover {
	background-position: 0 -8px;
}

.down-caret.up {
	background-position: -12px -1px;
}

.down-caret.up:hover {
	background-position: -12px -8px;
}

.swatch.checkbox {
	display: inline-block;
	height: 11px;
	margin: 0 0;
	width: 18px;
}

.swatch.checkbox.active {
	background-position: 0 -52px;
}

/* Color Swatches */
.frame-colors-container div.swatch,
.colors-container div.swatch {
	background-image: url('../images/misc/color-swatches.png%3Fv=5');
	background-position: -30px 0;
	background-repeat: no-repeat;
	height: 24px;
	margin: 0 0;
	width: 24px;
}

.frame-colors-container div.swatch:hover,
.colors-container div.swatch:hover {
	cursor: pointer;
	opacity: 0.8;
}

.frame-colors-container .frame-color,
.colors-container .frame-color {
	display: inline-block;
	height: auto;
	width: auto;
}

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

div.more-swatches {
	background-image: url('../images/category/more-colors.gif');
	background-repeat: no-repeat;
	background-size: 14px 14px;
	color: #544C49;
	font-size: 12px;
	font-weight: 500;
	height: 19px;
	width: 12px;
	display: inline-block;
	position:relative;
	top: 3px;
}

div.more-swatches:hover {
	cursor: default;
}

div.more-swatches-container {
	display: inline;
	position:relative;
	top: -4px;
}

div.swatches-count{
	display: inline-block;
	position:relative;
	top: -3px;
	height: 24px;
	font-size: 16px;
	color: #808080;
}

.frame-colors-container div.swatch.active,
.colors-container div.swatch.active {
	background-position: 0 0;
}

/* Specific Colors */
.frame-colors-container div.swatch.tortoise,
.colors-container div.swatch.tortoise {
	background-position: -30px 0;
}

.frame-colors-container div.swatch.tortoise.disabled,
.colors-container div.swatch.tortoise.disabled {
	background-position: -60px 0;
}

.frame-colors-container div.swatch.tortoise.active,
.colors-container div.swatch.tortoise.active {
	background-position: 0 0;
}

.frame-colors-container div.swatch.lighttortoise,
.colors-container div.swatch.lighttortoise {
	background-position: -30px -30px;
}

.frame-colors-container div.swatch.lighttortoise.active,
.colors-container div.swatch.lighttortoise.active {
	background-position: 0 -30px;
}
.frame-colors-container div.swatch.lighttortoise.disabled,
.colors-container div.swatch.lighttortoise.disabled {
	background-position: -60px -30px;
}

.frame-colors-container div.swatch.black,
.colors-container div.swatch.black {
	background-position: -30px -60px;
}

.frame-colors-container div.swatch.black.active,
.colors-container div.swatch.black.active {
	background-position: 0 -60px;
}
.frame-colors-container div.swatch.black.disabled,
.colors-container div.swatch.black.disabled {
	background-position: -60px -60px;
}

.frame-colors-container div.swatch.red,
.colors-container div.swatch.red {
	background-position: -30px -90px;
}

.frame-colors-container div.swatch.red.active,
.colors-container div.swatch.red.active {
	background-position: 0 -90px;
}
.frame-colors-container div.swatch.red.disabled,
.colors-container div.swatch.red.disabled {
	background-position: -60px -90px;
}

.frame-colors-container div.swatch.purple,
.colors-container div.swatch.purple {
	background-position: -30px -120px;
}

.frame-colors-container div.swatch.purple.active,
.colors-container div.swatch.purple.active {
	background-position: 0 -120px;
}
.frame-colors-container div.swatch.purple.disabled,
.colors-container div.swatch.purple.disabled {
	background-position: -60px -120px;
}

.frame-colors-container div.swatch.crystal,
.colors-container div.swatch.crystal {
	background-position: -30px -150px;
}

.frame-colors-container div.swatch.crystal.active,
.colors-container div.swatch.crystal.active {
	background-position: 0 -150px;
}
.frame-colors-container div.swatch.crystal.disabled,
.colors-container div.swatch.crystal.disabled {
	background-position: -60px -150px;
}

.frame-colors-container div.swatch.brown,
.colors-container div.swatch.brown {
	background-position: -30px -180px;
}

.frame-colors-container div.swatch.brown.active,
.colors-container div.swatch.brown.active {
	background-position: 0 -180px;
}
.frame-colors-container div.swatch.brown.disabled,
.colors-container div.swatch.brown.disabled {
	background-position: -60px -180px;
}

.frame-colors-container div.swatch.green,
.colors-container div.swatch.green {
	background-position: -30px -210px;
}

.frame-colors-container div.swatch.green.active,
.colors-container div.swatch.green.active {
	background-position: 0 -210px;
}
.frame-colors-container div.swatch.green.disabled,
.colors-container div.swatch.green.disabled {
	background-position: -60px -210px;
}

.frame-colors-container div.swatch.blue,
.colors-container div.swatch.blue {
	background-position: -30px -240px;
}

.frame-colors-container div.swatch.blue.active,
.colors-container div.swatch.blue.active {
	background-position: 0 -240px;
}
.frame-colors-container div.swatch.blue.disabled,
.colors-container div.swatch.blue.disabled {
	background-position: -60px -240px;
}

.frame-colors-container div.swatch.gunmetal,
.colors-container div.swatch.gunmetal {
	background-position: -30px -270px;
}

.frame-colors-container div.swatch.gunmetal.active,
.colors-container div.swatch.gunmetal.active {
	background-position: 0 -270px;
}
.frame-colors-container div.swatch.gunmetal.disabled,
.colors-container div.swatch.gunmetal.disabled {
	background-position: -60px -270px;
}

.frame-colors-container div.swatch.matteblack,
.colors-container div.swatch.matteblack {
	background-position: -30px -60px;
}

.frame-colors-container div.swatch.matteblack.active,
.colors-container div.swatch.matteblack.active {
	background-position: 0 -60px;
}
.frame-colors-container div.swatch.matteblack.disabled,
.colors-container div.swatch.matteblack.disabled {
	background-position: -60px -60px;
}

.frame-colors-container div.swatch.glossyblack,
.colors-container div.swatch.glossyblack {
	background-position: -30px -300px;
}

.frame-colors-container div.swatch.glossyblack.active,
.colors-container div.swatch.glossyblack.active {
	background-position: 0 -300px;
}
.frame-colors-container div.swatch.glossyblack.disabled,
.colors-container div.swatch.glossyblack.disabled {
	background-position: -60px -300px;
}

.frame-colors-container div.swatch.lightblue,
.colors-container div.swatch.lightblue {
	background-position: -30px -330px;
}

.frame-colors-container div.swatch.lightblue.active,
.colors-container div.swatch.lightblue.active {
	background-position: 0 -330px;
}
.frame-colors-container div.swatch.lightblue.disabled,
.colors-container div.swatch.lightblue.disabled {
	background-position: -60px -330px;
}

.frame-colors-container div.swatch.tan,
.colors-container div.swatch.tan {
	background-position: -30px -360px;
}

.frame-colors-container div.swatch.tan.active,
.colors-container div.swatch.tan.active {
	background-position: 0 -360px;
}
.frame-colors-container div.swatch.tan.disabled,
.colors-container div.swatch.tan.disabled {
	background-position: -60px -360px;
}

.frame-colors-container div.swatch.grey,
.colors-container div.swatch.grey {
	background-position: -30px -390px;
}

.frame-colors-container div.swatch.grey.active,
.colors-container div.swatch.grey.active {
	background-position: 0 -390px;
}
.frame-colors-container div.swatch.grey.disabled,
.colors-container div.swatch.grey.disabled {
	background-position: -60px -390px;
}

.frame-colors-container div.swatch.pink,
.colors-container div.swatch.pink {
	background-position: -30px -420px;
}

.frame-colors-container div.swatch.pink.active,
.colors-container div.swatch.pink.active {
	background-position: 0 -420px;
}
.frame-colors-container div.swatch.pink.disabled,
.colors-container div.swatch.pink.disabled {
	background-position: -60px -420px;
}

.frame-colors-container div.swatch.darkpurple,
.colors-container div.swatch.darkpurple {
	background-position: -30px -450px;
}

.frame-colors-container div.swatch.darkpurple.active,
.colors-container div.swatch.darkpurple.active {
	background-position: 0 -450px;
}
.frame-colors-container div.swatch.darkpurple.disabled,
.colors-container div.swatch.darkpurple.disabled {
	background-position: -60px -450px;
}

.frame-colors-container div.swatch.gold,
.colors-container div.swatch.gold {
	background-position: -30px -480px;
}

.frame-colors-container div.swatch.gold.active,
.colors-container div.swatch.gold.active {
	background-position: 0 -480px;
}
.frame-colors-container div.swatch.gold.disabled,
.colors-container div.swatch.gold.disabled {
	background-position: -60px -480px;
}
/* Toggles */
.toggle-container:hover {
	cursor: pointer;
	-webkit-user-select: none; /* Safari */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}

.blue-toggle {
	display: inline-block;
	height: 18px;
	margin-right: 5px;
	width: 33px;
}

.blue-toggle.active {
	background-position: -70px -214px;
}

.toggle-text {
	display: inline-block;
	height: 18px;
	line-height: 22px;
	vertical-align: top;
}

/* Browser Specific Styles */
.desktop-only {
	display: none;
}

.mobile-only {
	display: none;
}

/* Large desktop */
@media (min-width: 1200px) {
	.desktop-hidden {
		display: none;
	}

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

/* This is that weird spot in the middle */
@media (min-width: 1000px) and (max-width: 1200px) {
	.full.container {
		max-width: 100%;
		min-width: 100%;
		width: auto;
	}

	.desktop-hidden {
		display: none;
	}

	.desktop-only {
		display: inline-block;
		padding-left: 20px;
	}
}

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 1000px) {
	.full.container {
		max-width: 100%;
		min-width: 100%;
		width: auto;
	}

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

	.tablet-left {
		text-align: left;
	}

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

	.tablet-hidden {
		display: none;
	}

	.desktop-only {
		display: inline-block;
		padding-left: 20px;
	}
}

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
	.full.container {
		max-width: 100%;
		min-width: 100%;
		width: auto;
	}

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

	.mobile-left {
		text-align: left;
	}

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

	.tablet-hidden {
		display: none;
	}

	.mobile {
		display: block;
	}
}

/* Landscape phones and down */
@media (max-width: 480px) {
	.hover-float {
		margin-bottom: 1px;
	}

	.full.container {
		max-width: 100%;
		min-width: 100%;
		width: auto;
	}

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

	.mobile-left {
		text-align: left;
	}

	.mobile-hidden {
		display: none;
	}

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

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

@media (max-width: 375px) {
	.go-bold.header {
		font-size: 100px;
	}
}

/* Bootstrap Modals */
.modal-content {
	border-radius: 0;
}

.close {
	opacity: 1;
}

.close-modal {
	float: right;
	height: 21px;
	width: 21px;
}

.close-modal:hover {
	cursor: pointer;
}


.check-container.mobile {
	font-size: 16px;
}

.check-container:hover {
	cursor: pointer;
}

.check-container.mobile .wording {
	padding-left: 40px;
	padding-top: 7px;
}

.check.mobile {
	display: inline-block;
	height: 30px;
	width: 30px;
}

.check.mobile.active {
	background-position: -104px -263px;
}

.check.small {
	display: inline-block;
	height: 20px;
	width: 17px;
}

.check.small.active {
	background-position: -18px -282px;
}

.check.wording {
	padding-left: 25px;
}

.check.large {
	display: inline-block;
	height: 40px;
	width: 40px;
}

.upgrade-description {
	clear: both;
	color: #A9A5A4;
	margin-top: -3px;
	padding-left: 27px;
}

.check-container.mobile .upgrade-description {
	margin-top: 0;
	padding-left: 40px;
}

.mobile-upgrade-pricing {
	float: right;
}

/* Find */
@media (min-width: 768px) {
	.find-brand {
		margin-bottom: 20px;
	}
}

.find-brand__label {
	font-size: 14px;
}

.find-brand__input-container {
	position: relative;
}

.find-brand__input {
	padding-right: 40px;
}

.find-brand__button {
	background-color: transparent;
	border: 0;
	bottom: 0;
	color: #000000;
	padding: 10px;
	position: absolute;
	right: 0;
	top: 0;
}

/* Product Contacts */
.cart-contacts {
	border: 1px solid #D8D8D8;
	margin-bottom: 30px;
}

.cart-contacts__lens-header {
	align-items: center;
	background-color: #F7F7F7;
	border-bottom: 1px solid #D8D8D8;
	display: flex; /* IE 11 */
	display: grid;
	gap: 0 50px;
	grid-template-columns: 1fr;
	justify-content: space-between; /* IE 11 */
	padding: 10px 20px;
}

@media (min-width: 768px) {
	.cart-contacts__lens-header {
		grid-template-columns: max-content 1fr max-content;
		padding: 25px 20px;
	}
}

.cart-contacts__lens-header--white {
	background-color: transparent;
	border-bottom: 0;
}

.cart-contacts__name {
	color: #000000;
	font-weight: bold;
}

.cart-contacts__doctor {
	font-size: 14px;
}

.cart-contacts__doctor-name {
	font-weight: bold;
}

.cart-contacts__doctor-change {
	background-color: transparent;
	border: 0;
	color: #000000;
	display: block;
	font-size: 12px;
	text-decoration: underline;
}

@media (min-width: 768px) {
	.cart-contacts__doctor-change {
		display: inline-block;
	}
}

@media (min-width: 1140px) {
	.contacts-pcp{
		max-width:1160px;margin:0 auto;
	}
	.cart-contacts__doctor-change {
		margin-left: 30px;
	}
}

.cart-contacts__doctor-change:focus,
.cart-contacts__doctor-change:hover {
	color: #CC0000;
}

.cart-contacts__actions {
	display: flex;
}

.cart-contacts__actions-item {
}

.cart-contacts__actions-item:not(:last-child) {
	margin-right: 40px;
}

.cart-contacts__actions-link {
	color: #000000;
	font-size: 12px;
	text-decoration: underline;
}

.cart-contacts__actions-link:focus,
.cart-contacts__actions-link:hover {
	color: #CC0000;
}

.cart-contacts__lens-container {
}

.cart-contacts__lens {
	align-items: center;
	display: flex; /* IE 11 */
	display: grid;
	flex-wrap: wrap; /* IE 11 */
	font-size: 14px;
	gap: 15px 30px;
	grid-template-columns: max-content 1fr 1fr;
	justify-content: space-between; /* IE 11 */
	padding: 20px 10px;
}

@media (max-width: 767px) {
	.cart-contacts__lens + .cart-contacts__lens {
		border-top: 1px solid #D8D8D8;
	}
}

@media (min-width: 768px) {
	.cart-contacts__lens {
		gap: 15px;
		grid-template: 1fr 1fr / max-content 165px 1fr 160px max-content;
		width: auto;
	}
}

@media (min-width: 1024px) {
	.cart-contacts__lens {
		gap: 15px 35px;
	}
}

@media (min-width: 1208px) {
	.cart-contacts__lens {
		grid-template-columns: max-content 165px 1fr 180px max-content max-content;
		grid-template-rows: none;
		padding: 25px 20px;
	}
}

.cart-contacts__lens-eye {
	color: #000000;
	font-weight: bold;
}

.cart-contacts__lens-image {
	margin: 0 15px 15px; /* IE 11 */
	text-align: center;
	width: 100px; /* IE 11 */
}

@supports (display: grid) {
	.cart-contacts__lens-image {
		margin: 0;
		width: auto;
	}
}

@media (min-width: 768px) {
	.cart-contacts__lens-eye,
	.cart-contacts__lens-image,
	.cart-contacts__lens-details {
		grid-area: span 2;
	}
}

@media (max-width: 767px) {
	.cart-contacts__lens-details {
		grid-column: span 3;
	}
}

@media (min-width: 768px) {
	.cart-contacts__lens-details {
		margin-right: 15px; /* IE 11 */
		max-width: 150px; /* IE 11 */
	}
}

@supports (display: grid) {
	.cart-contacts__lens-details {
		margin: 0;
		max-width: none;
	}
}

.cart-contacts__lens-title {
	color: #000000;
	font-size: 17px;
	font-weight: bold;
}

.cart-contacts__lens-quantity {
	color: #000000;
	font-weight: bold;
}

@media (max-width: 767px) {
	.cart-contacts__lens-quantity {
		grid-area: 1 / 3;
	}
}
@media (min-width: 768px) and (max-width: 1024px) {
	.cart-contacts__lens-quantity,
	.cart-contacts__lens-quantity-checkout {
		grid-column-end: span 2;
	}
}
@media (min-width: 1024px) {
	.cart-contacts__lens-quantity--checkout {
		grid-column-end: span 2;
	}
}

.cart-contacts__lens-quantity--checkout {
	margin-right: 15px; /* IE 11 */
	text-align: right;
}

@supports (display: grid) {
	.cart-contacts__lens-quantity--checkout {
		margin-right: 0;
	}
}

.cart-contacts__lens-price {
	display: none;
	color: #000000;
	font-weight: bold;
	text-align: right;
}

@media (max-width: 767px) {
	.cart-contacts__lens-price {
		text-align: right;
	}
}

@media (min-width: 1208px) {
	.cart-contacts__lens-price--receipt {
		display: block;
	}
}
.cart-contacts__lens-price--receipt--strike{
	text-decoration: #CC0000 line-through;
	color: #CC0000;
	margin-right:10px;
}

.cart-contacts__lens-per-box {
	font-weight: bold;
	text-align: right;
}

@media (max-width: 767px) {
	.cart-contacts__lens-discount {
		grid-area: 3 / span 2;
	}
}

@media (min-width: 768px) and (max-width: 1207px) {
	.cart-contacts__lens-discount {
		grid-area: 2 / 4;
	}
}

/* Checkout Lens Container */
.checkout-steps__content .cart-contacts__lens {
	grid-template: 1fr 1fr / max-content 1fr 1fr;
}

@media (max-width: 1023px) {
	.checkout-steps__content .cart-contacts__lens-details {
		grid-area: auto / span 3;
	}

	.checkout-steps__content .cart-contacts__lens-quantity {
		grid-area: 1 / 3;
	}

	.checkout-steps__content .cart-contacts__lens-discount {
		grid-area: 3 / span 2;
	}

	.checkout-steps__content .cart-contacts__lens-header {
		gap: 0 10px;
		grid-template-columns: 1fr 1fr;
	}

	.checkout-steps__content .cart-contacts__doctor {
		grid-area: 2 / 1;
	}

	.checkout-steps__content .cart-contacts__actions {
		align-self: end;
		grid-area: 2 / 2;
		justify-self: end;
	}

	.checkout-steps__content .cart-contacts__actions-item:not(:last-child) {
		margin-right: 10px;
	}

	.checkout-steps__content .cart-contacts__actions-item {
		line-height: 1;
	}

	.checkout-steps__content .cart-contacts__actions-link {
		line-height: 1;
	}
}

@media (min-width: 768px) {
	.checkout-steps__content .cart-contacts__lens-discount {
		grid-area: 4 / span 2;
	}
}

@media (min-width: 1024px) {
	.checkout-steps__content .cart-contacts__lens {
		gap: 15px;
		grid-template: 1fr 1fr / max-content 165px 1fr 160px max-content;
		width: auto;
	}

	.checkout-steps__content .cart-contacts__lens-discount {
		grid-area: 2 / 4;
		text-align: right;
	}

	.checkout-steps__content .cart-contacts__lens-price {
		display: none;
	}

	.checkout-steps__content .cart-contacts__lens-header {
		grid-template-columns: max-content 1fr max-content;
	}
}

.cart-contacts__lens-per-box-price {
	color: #000000;
	display: block;
}

.cart-contacts__lens-per-box-strike-price {
	font-size: 14px;
	font-weight: normal;
}

.cart-contacts__lens-discount-amount {
	color: #CC0000;
	font-weight: bold;
}

.cart-contacts__lens-stats {
	display: flex;
	flex-wrap: wrap;
	max-width: 150px; /* IE 11 */
}

@supports (display: grid) {
	.cart-contacts__lens-stats {
		max-width: none;
	}
}

.cart-contacts__lens-stats-item {
	font-size: 13px;
}

.cart-contacts__lens-stats-item:not(:last-child) {
	margin-right: 10px;
}

@media (min-width: 768px) {
	.cart-contacts__lens-stats-item:not(:last-child) {
		margin-right: 30px;
	}
}

.cart-contacts__lens-stats-title {
	color: #000000;
	display: block;
	font-size: 14px;
}

/* Cart Totals */
.cart-totals {
	display: flex; /* IE 11 */
	justify-content: flex-end; /* IE 11 */
	margin-bottom: 50px;
}

@supports (display: grid) {
	.cart-totals {
		display: grid;
		grid-template-columns: 1fr 291px;
		width: auto;
	}
}

.cart-totals__continue {
	grid-column: span 2;
}

@media (min-width: 768px) {
	.cart-totals__continue {
		grid-column: 2;
		width: 290px; /* IE 11 */
	}
}

@supports (display: grid) {
	.cart-totals__continue {
		width: auto;
	}
}

.cart-totals__prices {
	color: #000000;
	display: flex;
	font-weight: bold;
	justify-content: space-between;
	margin-bottom: 35px;
}

.cart-totals-mobile {
	background-color: #F2F2F2;
	bottom: 0;
	color: #000000;
	display: flex;
	flex-direction: column;
	font-weight: bold;
	left: 0;
	padding: 10px;
	position: fixed;
	width: 100%;
	z-index: 90;
}

.cart-totals-mobile__top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

@media (min-width: 769px) {
	.cart-totals-mobile {
		display: none;
	}
}

/* ACCOUNT */
.account {
}

.account--heading {
	margin-bottom: 40px;
}

.account--layout {
	display: flex; /* IE 11 */
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr;
	margin-bottom: 50px;
}

@media (min-width: 768px) {
	.account--layout {
		grid-template-columns: 200px 1fr;
	}
}

.account__content {
	width: 100%; /* IE 11 */
}
@media (max-width: 767px) {
	@supports (display: grid) {
		.account__content--order-history {
			overflow-x: auto;
			width: auto;
		}
	}
}

.account__navigation {
	margin-right: 30px; /* IE 11 */
	width: 200px; /* IE 11 */
}

@supports (display: grid) {
	.account__navigation {
		margin-right: 0;
		width: auto;
	}
}

.account__welcome {
	color: #000000;
	font-size: 16px;
	margin-bottom: 20px;
}

.account__user {
	font-weight: bold;
}

.account__content-h2 {
	font-size: 20px;
	margin-bottom: 8px;
}

.account__content-h2--account-preferences {
	margin-bottom: 40px;
}

/* Order History */
.order-history {
	min-width: 650px;
	width: 100%;
}

.order-history__thead {
	background-color: transparent;
	color: #333333;
	font-size: 14px;
}

.order-history tbody tr:not(:last-child) {
	border: 0;
}

.order-history .order-history__tr,
.order-history tbody tr.order-history__tr {
	border-bottom: 1px solid #D8D8D8;
}

/* Is Active */
.order-history .order-history__tr.is-active {
	background-color: #F9F9F9;
	border-bottom: 0;
	border-left: 1px solid #D8D8D8;
	border-right: 1px solid #D8D8D8;
	/* box-shadow: 0 0 0 0 transparent, inset 0 0 0 1px #D8D8D8, 0 0 0 0 transparent, inset 0 0 0 1px #D8D8D8; */
}

.order-history .order-history__tr .order-history__up {
	display: none;
}

.order-history .order-history__tr.is-active .order-history__down {
	display: none;
}

.order-history .order-history__tr.is-active .order-history__up {
	display: inline-block;
}

.order-history .order-history__tbody .order-history__tr td {
	color: #767676;
	font-size: 15px;
	font-weight: normal;
}

.order-history__toggle-container {
	white-space: nowrap;
	width: 1%;
}

button.order-history__toggle {
	width: 40px;
}
.order-history__toggle {
	color: #000000;
	font-size: 30px;
}

.order-history__details-td {
	font-weight: normal;
	padding: 0;
}

.order-history__details {
	background-color: #F9F9F9;
	border: 1px solid #D8D8D8;
	border-top: 0;
	display: none;
	padding: 16px 10px;
}

.order-history__details-list {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: 0 40px 18px;
}

.order-history__details-status {
	align-items: center;
	color: #000000;
	display: flex;
	font-size: 14px;
	font-weight: bold;
}

.order-history__icon-complete {
	display: none;
}

.order-history__icon,
.order-history__icon-complete {
	font-size: 20px;
	margin-right: 8px;
}

.order-history__details-status.is-complete .order-history__icon-complete {
	color: #CC0000;
	display: inline-block;
}

.order-history__details-status.is-complete .order-history__icon {
	display: none;
}

.order-history__text {
	flex-shrink: 0;
}

.order-history__line {
	background-color: #000000;
	display: inline-block;
	flex: 1;
	height: 2px;
	margin: 0 4px;
}

.order-history__details-product, .order-history__details-rx-details-line-wrapper {
	align-items: center;
	background-color: #FFFFFF;
	border: 1px solid #E9E9E9;
	color: #767676;
	display: flex; /* IE 11 */
	flex-direction: column;
	gap: 10px;
	grid-template-columns: 20px 80px minmax(190px, 430px) auto max-content;
	justify-content: space-between; /* IE 11 */
	margin-bottom: 24px;
	padding: 30px 15px;
}

.order-history__details-product-lineitem {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 10px 0px 10px 0px;
}

.order-history__details-product-lineitem-sub {
    display: flex;
    width: 15%;
    align-items: center;
}

.order-history__details-product-eye {
	width: 5%;
}

.order-history__details-product-image {
	width: 60%;
}

.order-history__details-product-name {
	color: #000000;
	font-weight: bold;
	width: 55%;
}

.order-history__details-product-quantity {
	justify-content: center;
}

.order-history__details-product-subtotal {
	justify-content: center;
}

.order-history__details-rx-lineitem {
	display: flex;
	flex-direction: row;
	width: 100%;
}

.order-history__details-rx-lineitem-sub {
	display: flex;
	flex-grow: 1;
	flex-direction: column;
}

.order-history__details-rx-lineitem-details {
	display: flex;
	flex-direction: row;
	margin: 5px 0px 5px 0px;
}

.order-history__details-rx-lineitem-sub-sub-title {
	display: flex;
	text-align: center;
	font-size: 12px;
    color: #000000;
    font-weight: 700;
}

.order-history__details-rx-lineitem-sub-sub-item {
    display: flex;
    font-size: 15px;
    font-family: Verdana;
    margin-top: -7px;
}

.order-history__details-rx-lineitem-sub-doctor {
	margin-left: 30px;
}

.order-history__details-rx-lineitem-sub-doctor-title {
	display: flex;
	text-align: center;
	font-size: 12px;
}

.order-history__details-rx-lineitem-sub-doctor-info, .order-history__details-rx-lineitem-sub-expiration {
	font-weight: 700;
	font-size: 14px;
}

.order-history__details-rx-lineitem-sub-expiration {
	text-align: right;
}

.order-history__details-easy-reorder-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	cursor: pointer;
}

.order-history__details-easy-reorder-title, .order-history__details-easy-reorder-desc {
	display: flex;
}

.order-history__details-easy-reorder-title {
	font-weight: 700;
	color: #C00000;
	text-decoration: underline;
}

.order-history__details-easy-reorder-desc {
	font-size: 10px;
}

.order-history__details-summary {
	display: flex; /* IE 11 */
	display: grid;
	gap: 50px 140px;
	grid-template-columns: 1fr 1fr;
	justify-content: space-between; /* IE 11 */
}

.order-history__details-summary-item {
	color: #767676;
	display: grid;
	font-size: 15px;
	gap: 25px;
	grid-template-columns: 150px 1fr;
	margin-bottom: 20px;
}

.order-history__details-summary-item--black {
	color: #000000;
}

.order-history__details-summary-item--invoice {
	gap: 10px 25px;
}

.order-history__details-summary-item-invoice {
	font-size: 14px;
	text-decoration: underline;
}

.order-history__details-summary-link {
	text-decoration: underline;
}

.order-history__details-summary-address {
	font-size: 15px;
	font-weight: normal;
}

/* COMPONENT SIDEBAR */
.c-sidebar {
}

.c-sidebar__title {
	color: #333333;
	font-size: 16px;
	margin-bottom: 15px;
}

.c-sidebar__title.is-active {
	color: #CC0000;
}

.c-sidebar__options {
	display: none;
}

@media (min-width: 768px) {
	.c-sidebar__options {
		display: block;
	}
}

/* Mobile Active Sidebar */
.c-sidebar__options.is-active {
	background-color: #FFFFFF;
	display: block;
	height: 100%;
	left: 0;
	overflow-y: scroll;
	padding: 20px 0;
	position: fixed;
	top: 0;
	z-index: 99;
}

.c-sidebar__options.is-active .c-sidebar__title {
	padding: 0 20px;
}

.c-sidebar__options.is-active .c-sidebar__link {
	border: 0;
	padding: 0 20px;
}

.c-sidebar__options.is-active .c-sidebar__item {
	border-bottom: 1px solid #CDCDCD;
	padding-bottom: 10px;
}

.c-sidebar__options.is-active .c-sidebar__menu-close {
	display: block;
}

.c-sidebar__menu-close {
	background-color: transparent;
	border: 0;
	display: none;
	padding: 17px;
	position: absolute;
	right: 0;
	top: 0;
}

.c-sidebar__list--all {
	display: none;
}

@media (min-width: 768px) {
	.c-sidebar__list--all {
		display: block;
	}
}

.c-sidebar__list {
	margin-bottom: 30px;
}

@media (min-width: 768px) {
	.c-sidebar__list {
		display: block;
	}
}

.c-sidebar__item {
	line-height: 1;
}

.c-sidebar__item:not(:last-child) {
	margin-bottom: 10px;
}

.c-sidebar__link {
	border-left: 5px solid transparent;
	color: #000000;
	display: block;
	font-size: 14px;
	padding-left: 10px;
}

.c-sidebar__link:focus,
.c-sidebar__link:hover {
	text-decoration: none;
}

.c-sidebar__link.is-active {
	border-left-color: #CC0000;
	color: #CC0000;
}

/* Sidebar Modifier */
.c-sidebar--large .c-sidebar__item {
	margin-bottom: 24px;
}

.c-sidebar--large .c-sidebar__link {
	color: #333333;
	font-size: 16px;
	font-weight: bold;
}

.c-sidebar--large .c-sidebar__link:focus,
.c-sidebar--large .c-sidebar__link:hover {
	color: #CC0000;
	text-decoration: none;
}

.c-sidebar--large .c-sidebar__link.is-active {
	border-left-color: #CC0000;
	color: #CC0000;
}

/* PRODUCTS - Lenses */
.l-products {
	display: flex; /* IE 11 */
	gap: 30px;
	grid-template-columns: 1fr;
	margin-bottom: 50px;
	position: relative;
}

@media (min-width: 768px) {
	.l-products {
		grid-template-columns: 220px 1fr;
	}
}

@supports (display: grid) {
	.l-products {
		display: grid;
	}
}

@media (min-width: 768px) {
	.page-contacts-h1 {
		margin-bottom: 20px;
	}
}

.product-filtering {
	display: flex;
	margin-bottom: 20px;
}

.product-filtering__item:not(:last-child) {
	margin-right: 10px;
}

@media (min-width: 768px) {
	.product-filtering__item:not(:last-child) {
		margin-right: 30px;
	}
}

.product-filtering__link {
	color: #000000;
	font-size: 12px;
	text-decoration: underline;
}

@media (min-width: 768px) {
	.product-filtering__link {
		font-size: 14px;
	}
}

.product-filtering__link.is-active {
	font-weight: bold;
	text-decoration: none;
}

.product-filtering__button-filter {
	background-color: transparent;
	border: 0;
	font-size: 12px;
	padding: 0;
	text-decoration: underline;
}

@media (min-width: 768px) {
	.product-filtering__button-filter {
		font-size: 14px;
	}
}

@media (min-width: 768px) {
	.product-filtering__item--filter-menu {
		display: none;
	}
}

.product-filtering__button-filter:focus,
.product-filtering__button-filter:hover {
	color: #CC0000;
}

.empty-products {
	grid-column: span 2;
	text-align: center;
}

.empty-products__icon {
	margin-bottom: 30px;
	width: 100px;
}

.empty-products__message {
	margin-bottom: 40px;
}

/* Sidebar */
.l-products__sidebar {
}

@media (min-width: 768px) {
	.l-products__sidebar {
		display: block;
		margin-right: 30px;
		width: 220px;
	}

	@supports (display: grid) {
		.l-products__sidebar {
			margin: 0;
			width: auto;
		}
	}
}

.l-products__products-container {
	width: calc(100% - 250px); /* IE 11 */
}

@supports (display: grid) {
	.l-products__products-container {
		width: auto; /* IE 11 */
	}
}

/* Lenses */
.l-products__products {
	align-content: start;
	display: flex; /* IE 11 */
	display: grid;
	flex-wrap: wrap;
	/*grid-template-columns: 1fr 1fr;*/
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (min-width: 768px) {
	.l-products__products {
		gap: 30px;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}

/* <a> */
.l-products__product {
	border: 1px solid transparent;
	display: block;
	padding: 12px;
	text-align: center;
}

@media (min-width: 768px) {
	.l-products__product {
		width: 276px;
	}
}

.l-products__product:focus,
.l-products__product:hover {
	border-color: #CCCCCC;
	text-decoration: none;
}

.l-products__image {
	display: block;
	margin-bottom: 30px;
}

.l-products__details {
	color: #767676;
	font-size: 16px;
	font-weight: 300;
}

.l-products__count {
}

.l-products__link:focus,
.l-products__link:hover {
	color: inherit;
	text-decoration: none;
}

.l-products__title {
	color: #000000;
	display: block;
	font-size: inherit;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 5px;
}

/* REBATES */
.l-products__products .rebate-messaging {
	margin: 0;
	text-align: center;
}
.lense-details .rebate-messaging {
	margin : 0 0 15px 0;
}
.cart-contacts .rebate-messaging {
	margin: 0 0 15px 60px;
}
.l-products__products .rebate-messaging .rebate-availability {
	font-size: 14px;
	color: #CC0000;
	font-weight: normal;
}
.lense-details .rebate-availability,
.cart-contacts .rebate-availability {
	margin: 0;
	color: #CC0000;
	font-size: 16px;
	font-weight: bold;
}
.rebate-messaging .rebate-disclosure {
	margin: 0;
	color: #CC0000;
	font-size: 14px;
	font-weight: normal;
}
.rebate-tally,
.discount-tally {
	display: block;
	min-width: 100%;
	font-size: 14px;
	color: #CC0000;
	font-weight: normal;
}

/* BREADCRUMBS */
.c-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	margin-bottom: 30px;
	text-transform: capitalize;
}

.c-breadcrumbs__item {
}

.c-breadcrumbs__icon {
	color: #6C6C6C;
	margin: 0 10px;
}

.c-breadcrumbs__link {
	color: #000000;
	text-decoration: underline;
}
.c-breadcrumbs__current {
	color: #000000;
}

/* MODAL */
.modal-header {
	border: 0;
	padding-left: 35px;
}

/* <h2> */
.modal-header .modal-title {
	font-size: 24px;
	margin-top: 38px;
}

.modal-actions {
	display: flex;
	flex-direction: column;
	margin: auto;
	max-width: 300px;
	padding: 15px;
}

.modal-actions__save {
	margin-bottom: 24px;
}

.modal-actions__cancel {
	text-decoration: underline;
}

.modal-body {
	padding: 15px 35px;
}

.modal-body .find-doctor {
	margin: 0;
	max-width: none;
	padding: 0;
}
/* Google places autocomplete in modal */
.pac-container{
	z-index:9999;
}

.modal-body .rx-options__form {
	max-width: none;
}

/* Order Confirmation */
.order-confirmation {
}

.order-confirmation__details {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	margin-bottom: 60px;
}

@media (min-width: 768px) {
	.order-confirmation__details {
		display: flex; /* IE 11 */
		flex-wrap: wrap; /* IE 11 */
		justify-content: space-between; /* IE 11 */
	}
}

.order-confirmation__details b {
	display: block;
	margin-bottom: 5px;
}

@media (min-width: 768px) {
	.order-confirmation__details b {
		margin-bottom: 20px;
	}
}

.order-confirmation__details p {
	font-size: 16px;
}

.order-confirmation__details-heading {
	border-bottom: 1px solid #D8D8D8;
	color: #0D334B;
	font-size: 20px;
	margin-bottom: 28px;
	margin-top: 60px;
	padding-bottom: 20px;
}

.order-confirmation__order-details {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 60px;
}

.order-confirmation__order-totals {
	max-width: 380px;
	min-width: 100%;
}

@media (min-width: 768px) {
	.order-confirmation__order-totals {
		min-width: 380px;
	}
}

.order-confirmation__order-totals-title {
	color: #0D334B;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 24px;
}

.order-confirmation__order-totals-list {
	border-top: 1px solid #E9E9E9;
	padding: 25px 0;
}

.order-confirmation__order-totals-item {
	color: #767676;
	display: flex;
	font-size: 18px;
	justify-content: space-between;
	margin-bottom: 30px;
}

.order-confirmation__order-totals-item--tally {
	border-top: 1px solid #E9E9E9;
	color: #0D334B;
	font-weight: bold;
	padding-top: 30px;
}
.order-confirmation__order-totals-item--grand-total {
	color: #0D334B;
	font-weight: bold;
}
.order-confirmation__order-line-price-red{
	color:#CC0000;
}

/* PAGES */
/* How To Order */
.how-to-order {
	background-color: #F6F6F6;
	display: flex; /* IE 11 */
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	margin-bottom: 32px;
	padding: 15px;
}

@media (min-width: 768px) {
	.how-to-order {
		padding: 30px 35px;
	}
}

.how-to-order__step {
	align-items: center;
	background-color: #FFFFFF;
	color: #333333;
	display: flex;
	flex: 1; /* IE 11 */
	flex-direction: column;
	font-size: 22px;
	font-weight: bold;
	padding: 15px;
}

.how-to-order__heading {
	align-items: center;
	color: #CC0000;
	display: flex;
	font-size: 18px;
	margin-bottom: 22px;
	max-width: 200px;
}

.how-to-order__number {
	margin-right: 10px;
}

.how-to-order__image {
	display: block;
	margin-bottom: 30px;
}

.how-to-order__description {
	font-size: 14px;
	text-align: center;
	width: 100%;
}

/* Get a Prescription Page Modifier */
.how-to-order--get-prescription {
	gap: 20px;
	padding: 20px;
}

.how-to-order--get-prescription .how-to-order__heading {
	align-items: flex-start;
	min-height: 54px;
	text-align: center;
}

.how-to-order--get-prescription .how-to-order__description a {
	text-decoration: underline;
}

.how-to-order--get-prescription .how-to-order__image-container {
	margin-bottom: 20px;
	min-height: 101px;
}

.how-to-order--get-prescription .how-to-order__image {
	margin-bottom: 0;
}

/* FAQs` */
.faqs-title {
	margin-bottom: 16px;
}

.faqs {
	margin-bottom: 40px;
}

.faqs .panel-default > .panel-heading {
	background-color: transparent;
	border-radius: 0;
	padding: 0;
}

.faqs.panel-group .panel + .panel {
	border-top: 0;
	margin: 0;
}

.faqs.panel-group .panel {
	border-radius: 0;
}

.faqs.panel-group .panel-heading + .panel-collapse > .panel-body {
	border-top: 0;
}

.faqs .panel-body {
	font-size: 16px;
	padding: 15px 33px;
}

.faqs .panel-title a {
	align-items: center;
	display: flex;
	font-weight: normal;
	padding: 8px 10px;
	text-decoration: none;
}

.faqs .panel-title a:focus,
.faqs .panel-title a:hover {
	color: #000000;
}

.faqs .panel-title a:hover {
	background-color: #D8D8D8;
}

.faqs__title {
	font-weight: bold;
}

.faqs__arrow {
	display: inline-block;
	font-size: 23px;
	min-width: 23px;
}

.faqs__arrow-down {
	display: none;
}

.faqs .panel-title a[aria-expanded='true'] .faqs__arrow-down {
	display: block;
}

.faqs .panel-title a[aria-expanded='true'] .faqs__arrow-right {
	display: none;
}

/* CUSTOMER SERVICE */
.customer-service {
	display: flex; /* IE 11 */
	display: grid;
	gap: 20px 130px;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	margin-bottom: 70px;
}

.customer-service__contact,
.customer-service__info {
	flex: 1; /* IE 11 */
}

.customer-service__info {
	margin-right: 130px; /* IE 11 */
}

@supports (display: grid) {
	.customer-service__info {
		margin-right: 0;
	}
}

.customer-service-heading {
	margin-bottom: 32px;
}

.customer-service p {
	font-size: 16px;
}

.customer-service h2 {
	font-size: 22px;
}

.wysiwyg-content .customer-service__spacing {
	margin-bottom: 32px;
}

.wysiwyg-content a.customer-service__phone {
	display: inline-block;
	font-weight: bold;
}

.customer-service__input-message {
	min-height: 240px;
}

/* MY PRESCRIPTIONS */
.my-prescriptions {
}

.my-prescriptions__container {
	margin-bottom: 37px;
}

.my-prescriptions__item {
	border: 1px solid #E9E9E9;
	display: flex; /* IE 11 */
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
	justify-content: space-between; /* IE 11 */
	padding: 27px 20px;
}

@media (min-width: 768px) {
	.my-prescriptions__item {
		grid-template-columns: max-content 80px 1fr max-content max-content;
	}
}

.my-prescriptions__item + .my-prescriptions__item {
	border-top: 0;
}

.my-prescriptions__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.my-prescriptions__item-name-container, .my-prescriptions__item-date-container, .my-prescriptions__item-image-container {
	display: flex;
	flex-grow: 1;
	flex-direction: column;
}

.my-prescriptions__details-rx-details-line-wrapper {
	align-items: center;
	color: #767676;
	display: flex; /* IE 11 */
	flex-direction: row;
	grid-template-columns: 20px 80px minmax(190px, 430px) auto max-content;
	justify-content: space-between; /* IE 11 */
	padding: 0px 15px;
	height: 100%;
}

.my-prescriptions-top-row, .my-prescriptions-bottom-row {
	display: flex;
	flex-direction: row;
	width: 100%;
}

.my-prescriptions-top-row {
	margin: 0px 20px 20px 20px;
}

.my-prescriptions-bottom-row {
	margin: 0px 20px 0px 20px;
	border-top: 1px solid #D9D9D9;
	padding: 20px 0px 0px 0px;
}

.my-prescriptions__details-rx-details {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.my-prescriptions__details-rx-details-title {
	display: flex;
	flex-direction: row;
}

.my-prescriptions__details-rx-details-title-left, .my-prescriptions__details-rx-details-title-right {
	display: flex;
	flex-grow: 1;
	font-weight: 700;
    font-size: 14px;
}

.my-prescriptions__details-rx-details-title-left {
	text-align: left;
	margin-left: 15px;
}

.my-prescriptions__details-rx-details-title-right {
	text-align: right;
	display: block;
	color: #C00000;
}

.my-prescriptions__item-image-container {
	margin: 0px 20px 0px 0px;
}

.my-prescriptions__details {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	margin-bottom: 10px;
}

.my-prescriptions__details-rx-lineitem {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	align-self: flex-start;
	min-height: 100%;
}

.my-prescriptions__details-rx-lineitem-sub {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.my-prescriptions__details-rx-lineitem-sub.glasses .my-prescriptions__details-rx-lineitem-sub-sub {
	width:90px;
}
.my-prescriptions__details-rx-lineitem-sub-sub {
	display: flex;
	flex-direction: column;
	width: 60px;
}
.sub-sub-which-lens {
	width: 40px;
}
.sub-sub-add-power {
	width: 63px;
}

.my-prescriptions__details-rx-lineitem-sub-sub-title {
	display: flex;
    text-align: center;
    font-size: 12px;
    color: #000000;
    font-weight: 700;
}

.my-prescriptions__details-rx-lineitem-sub-sub-item {
	display: flex;
    font-size: 15px;
    font-family: Verdana;
    margin-top: -7px;
}

.my-prescriptions__details-rx-lineitem-sub-doctor {

}

.my-prescriptions__details-rx-lineitem-sub-doctor-title {
	display: flex;
    text-align: center;
    font-size: 12px;
}

.my-prescriptions__details-rx-lineitem-sub-doctor-info {
    font-weight: 700;
    font-size: 14px;
}

.my-prescriptions__details-rx-wrapper {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

.my-prescriptions__details-rx-lineitem-details {
	display: flex;
	flex-direction: row;
	margin-bottom: 10px;
}

.my-prescriptions__details-rx-lineitem-pack {
    position: relative;
    left: 131px;
    top: 5px;
}

.my-prescriptions__details-rx-lineitem-pack-line {
	height: 25px;
}

.my-prescriptions__details-rx-lineitem-button-wrapper {
    position: relative;
    margin-top: 10px;
    width: 56%;
    margin: 0 auto;
    padding-top: 10px;
    left: 71px;
}

.my-prescriptions__details-name {
	font-size: 14px;
	font-weight: bold;
	margin-right: 55px;
}

.my-prescriptions__details-doctor {
	color: #848484;
	font-style: italic;
	font-weight: bold;
	margin-right: 66px;
}

.my-prescriptions__item-name {
	color: #000000;
	display: block;
	font-size: 17px;
	font-weight: bold;
}

.my-prescriptions__item-eye {
	color: #767676;
	font-size: 13px;
}

.my-prescriptions__item-title {
	display: block;
	font-weight: 700;
	color: #333333;
}

.my-prescriptions__item-date-container {
	color: #767676;
	font-size: 13px;
	text-align: right;
}

.my-prescriptions__details-rx-details-title-right {
	color: #C00000;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: underline;
    margin-top: calc(14%);
}

.my-prescriptions__details-easy-reorder-desc {
	color: #333333;
	font-size: 10px;
    text-decoration: underline;
    text-decoration-color: #FFFFFF;
}


@media (max-width: 768px) {
	.my-prescriptions-top-row {
		flex-direction: column;
		text-align: center;
		margin: 0;
		gap: 10px;
	}

	.my-prescriptions__item-image-container {
		margin: 0;
	}

	.my-prescriptions__item-date-container {
		text-align: center;
	}

	.my-prescriptions__details-rx-details-line-wrapper {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}

	.my-prescriptions__details-rx-lineitem {
		min-height: 10px;
	}

	.my-prescriptions__details-rx-lineitem:last-child {
		align-self: flex-end;
	}

	.my-prescriptions__details-rx-lineitem-sub,
	.my-prescriptions__details-rx-lineitem-sub-doctor {
		text-align: left;
	}

	.my-prescriptions__details-rx-details-title-right {
		margin-top: 0;
	}
}

/* ACCOUNT PREFERENCES */
.account-preferences {
	max-width: 500px;
}
@supports (display:grid) {
	.account-preferences {
		display: grid;
		gap: 20px;
		grid-template-columns: minmax(auto,500px);
		max-width: none;
	}
}

/* RENEW PRESCRIPTION */
.renew-prescription {
}

.renew-prescription__text {
	font-size: 16px;
	margin: 0 auto 50px;
	max-width: 500px;
	text-align: center;
}

.renew-prescription__how-it-works {
	border: 1px solid #333333;
	margin: auto;
	margin-bottom: 50px;
	max-width: 760px;
	padding: 25px;
	text-align: center;
}

.renew-prescription__how-it-works-steps {
	display: flex; /* IE 11 */
	display: grid;
	font-size: 16px;
	gap: 98px;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.renew-prescription__how-it-works-heading {
	font-size: 21px;
	margin-bottom: 40px;
}

/* DISCLAIMER */
.disclaimer {
	margin-bottom: 48px;
	padding-top: 10px;
	margin-top: 70px;
	border-top: 2px solid #707070;
}

.insurance-disclaimer{
	margin: 10px 0 !important;
}

.disclaimer p {
	color: #767676;
	font-size: 12px;
	margin-bottom: 10px;
}
#overlay {
	background: #ffffff;
	color: #666666;
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 5000;
	top: 0;
	left: 0;
	float: left;
	text-align: center;
	padding-top: 25%;
	opacity: .80;
}
.spinner {
	margin: 0 auto;
	height: 64px;
	width: 64px;
	animation: rotate 0.8s infinite linear;
	border: 5px solid firebrick;
	border-right-color: transparent;
	border-radius: 50%;
}
@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
#error_message_block {
	border: 1px solid #DD0000;
    background-color: #FFCCCC;
    color: #FF0000;
    font-size: 15px;
    padding: 2px 2px 2px 5px;
    border-radius: 3px;
    margin: 0px 0px 2px 0px;
    display: flex;
    flex-direction: row;
}
#error_icon, #error_text {
	display: flex;
}
#error_icon {
	padding: 15px;
	font-size: 30px;
}
#cs-error_header {
	padding-top: 20px;
	font-size: 16px;
	color: #000000;
	font-weight: 700;
}
#error_text {
	flex-direction: column;
	padding-bottom: 10px;
}
#cs-error_desc {
	color: #555555;
}
.visible {
	display: block;
}
.hidden {
	display: none;
}
.noscroll {
	overflow: hidden;
}
.exam-started-link {
	color: #C00000;
	font-weight: 700;
}

.exam-message {
	gap: 0px;
}

.exam-message p {
	font-size: 14px;
	width: 100%;
	padding: 0 15px;
}

.opacity-40 {
	opacity: .4;
}
.header-hero-text {
	background-color: #CC0000;
	color: #FFFFFF;
	text-align: center;
	padding: 5px 10px 10px 10px;
	max-width: 1440px;
}
.invert-image-color {
	filter: invert(1);
}
.close-menu-icon {
	margin: 0;
}
.close-menu-button {
	display: flex;
	justify-content: end;
	flex-grow: 1;
}
.g-navigation__item--my-account {
	padding: 20px 20px 15px 20px;
	margin: 0;
	font-weight: bold;
	border-bottom: 2px solid #CCCCCC;
	margin-bottom: 20px;
}
@media (min-width: 768px) {
	.g-navigation__item--my-account {
		display: none;
	}
}
.g-navigation__item--cvs-home {
	font-weight: bold;
}
.g-header__top-nav-item-my-account {
	font-weight: bold;
	padding-left: 20px;
	margin-left: 20px;
	border-left: 2px solid #CCCCCC;
}
.g-navigation__link-top-nav-item-my-account {
	font-size: 12px;
}
.g-navigation__top-nav-item-login-icon {
	margin: 0 10px 0 0 ;
	vertical-align: baseline;
	max-width: 13px;
}
#top-nav-cvs {
	font-weight: bold;
}
#top-nav-cvs:hover {
	text-decoration: underline;
}
.g-header__search-bar-mobile {
	margin: 10px;
	width: auto;
}
@media (min-width: 768px) {
	.g-header__search-bar-mobile {
		display: none;
	}
}
.g-header__search-form {

}
.g-header__search-wrapper {
	display: flex;
	width: 100%;
	border: 2px solid #CCCCCC;
}
.g-header__search-input-box {
	border: 0;
}
.g-header__search-button {
	border: 0;
	background-color: #FFFFFF;
	color: #CC0000;
	padding-right: 20px;
}
.g-header__search-bar {
	margin: 0;
	width: 55%;
	display: none;
}
#optical_chooser_title {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
@media (min-width: 414px) {
	.disclaimer {
		width: unset;
		margin-left: 10px;
		margin-right: 10px;
	}
}
@media (min-width: 768px) {
	.g-header__logo-container {
		justify-content: space-between;
	}
	.g-header__top-nav-link {
		color: #CC0000;
		font-size: 12px;
	}
	.g-header__logo-container, .g-header__top-row, .g-header__nav-container {
		padding-left: 10px;
		padding-right: 10px;
	}
	.g-header__search-bar {
		display: block;
	}
}
@media (min-width: 1024px) {
	.g-header__logo-container, .g-header__top-row, .g-header__nav-container {
		padding-left: 40px;
		padding-right: 40px;
	}
}
@media (min-width: 1440px) {
	.g-header__logo-container, .g-header__top-row, .g-header__nav-container {
		padding-left: 0;
		padding-right: 0;
	}
	.disclaimer {
		margin-left: auto;
		margin-right: auto;
	}
}
