/* â”€â”€ Base typography â”€â”€ */
html {
	scroll-behavior: smooth;
}

html,
body {
	margin: 0;
	background: #FFF;
}

body {
	font-family: "Inter", sans-serif;
	color: #000;
	
	line-height: 24px;
}

p {
font-size: 19px;
}

main article:first-of-type{
	line-height: 29px;
}

@media (min-width: 600px) {
	body {
		font-size: 19px;
		line-height: 27px;
	}

	main article:first-of-type {
		font-size: 21px;
		
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Inter", sans-serif;
	font-weight: 400;
}

h1,  h1.headline {
	font-size: 27px;
	line-height: 32px;
}

h2 {
	font-size: 24px;
	line-height: 28px;
}

h3 {
	font-size: 18px;
	line-height: 24px;
}

@media (min-width: 600px) {
	h1, h1.headline {
		font-size: 44px;
		line-height: 56px;
	}

	h2 {
		font-size: 32px;
		line-height: 38px;
	}

	h3 {
		font-size: 28px;
		line-height: 40px;
	}
}

section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
	font-family: "Inter", sans-serif;
	font-weight: 700;
}

/* â”€â”€ Links â”€â”€ */
a {
	color: #0071bc;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a[role="button"] {
	cursor: pointer;
}

/* â”€â”€ Lists â”€â”€ */
ol,
ul {
	margin-left: 20px;
	margin-bottom: 25px;
}

@media (min-width: 600px) {

	ol,
	ul {
		margin-left: 36px;
		margin-bottom: 28px;
	}
}

/* â”€â”€ mark â”€â”€ */
mark {
	background-color: #fff145;
	border-radius: 5px;
	padding: 0 0.125em;
}

/* â”€â”€ blockquote â”€â”€ */
blockquote {
	margin-left: 75px;
	font-style: italic;
}

/* â”€â”€ article â”€â”€ */
article {
	box-sizing: border-box;
	background: #ffffff;
}


/* â”€â”€ Buttons â”€â”€ */
button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	font-family: "Inter", sans-serif;
	font-size: 20px;
	font-weight: 700;
	padding: 0.25em 21px;
	margin-bottom: 1rem;
	border: none;
	border-radius: 4px;
	transition: all 0.05s ease-in-out;
	background: #808080;
	color: #ffffff;
}

button:disabled,
input[type="submit"]:disabled {
	cursor: not-allowed;
}

button:not(:disabled),
input[type="submit"]:not(:disabled) {
	cursor: pointer;
}

@media (min-width: 600px) {

	button,
	.button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		font-size: 25px;
	}
}

.button:hover {
	background: #676767;
	transform: translateY(-2px);
	text-decoration: none;
}

button.continue,
.continue.button,
input.continue,
input[name="btnPaymentOptionSubmit"] {
	background: #FF3000;
	display: block;
	margin: 0 auto 40px;
	padding: .45em 55px;
}

/* button.continue:hover,
.continue.button:hover,
input.continue:hover,
input:hover[name="btnPaymentOptionSubmit"],
button.continue:active,
.continue.button:active,
input.continue:active,
input:active[name="btnPaymentOptionSubmit"] {
	background: linear-gradient(to bottom, #a1150f, #5e1206);
} */

.button.button--success {
	background: linear-gradient(to bottom, #39b54a, #009245);
}

.button.button--success:hover {
	background: linear-gradient(to bottom, #009245, #02662f);
}

.button.button--continue {
	background: linear-gradient(to bottom, #cb1817, #891206);
}

/* .button.button--continue:hover {
	background: linear-gradient(to bottom, #a1150f, #5e1206);
} */

.cta-button {
	background: linear-gradient(to bottom, #cb1817, #891206);
	color: #ffffff;
	border-radius: 4px;
	padding: 0.45em 55px;
	font-size: 25px;
	font-weight: 700;
	cursor: pointer;
}

.cta-button:hover {
	background: linear-gradient(to bottom, #a1150f, #5e1206);
}

/* â”€â”€ Inputs / selects â”€â”€ */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="date"],
input[type="month"],
select,
textarea {
	box-sizing: border-box;
	font-family: inherit;
	font-size: 19px;
	width: 100%;
	padding: 12px;
	border: solid 1px #b3b3b3;
	margin-bottom: 1rem;
}

select#billing_country,  #billing_state_block select{
	padding:12px;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
	font-size: 19px;
	color: #b3b3b3;
}

select:not([multiple]) {
	-webkit-appearance: none;
	appearance: none;
	background-color: #ffffff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23444444' d='M11 7h-6l3-4z'%3E%3C/path%3E%3Cpath fill='%23444444' d='M5 9h6l-3 4z'%3E%3C/path%3E%3C/svg%3E"), linear-gradient(to bottom, #fff 0%, #fff 100%);
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: 1em auto, 100%;
}

select option {
	font-weight: normal;
}

option {
	color: black;
}

/* â”€â”€ Fieldset / legend â”€â”€ */
fieldset {
	margin: 32px 0 1em !important;
	padding: 0 0 15px !important;
	border: none;
	box-sizing: border-box;
}

legend {
	font-size: 24px;
	font-weight: 400;
	text-align: left;
	margin: 0 0 15px;
	padding: calc(1em/3) 0;
	width: 100%;
}

legend .step-no {
	font-size: 26px;
	font-weight: 700;
}

figure {
	margin-bottom: 1em;
}

/* â”€â”€ Utility â”€â”€ */
.visually-hidden,
.sr-only {
	position: absolute;
	overflow: hidden;
	clip: rect(0 0 0 0);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
}

.constrained-width {
	box-sizing: border-box;
	width: 100%;
	max-width: 920px;
}

.center-block {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 600px) {
	.shadow {
		box-shadow: 0 1px 1px rgba(128, 128, 128, .12), 0 2px 2px rgba(128, 128, 128, .12), 0 4px 4px rgba(128, 128, 128, .12);
	}
}

/* â”€â”€ Images â”€â”€ */
.img-center,
.img-right {
	display: block;
	margin: 27px auto;
	width: 100%;
	max-width: 575px;
}

@media (min-width: 800px) {
	.img-right {
		display: inline;
		float: right;
		margin: 0 0 20px 20px;
		width: unset;
		max-width: 280px;
	}
}

@media (min-width: 900px) {
	.img-right {
		max-width: 320px;
	}
}

/* â”€â”€ Navbar â”€â”€ */
#navbar {
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	justify-content: center;
    align-items: stretch;
    padding: 0 24px;
	background: none;
	box-shadow: none;
	opacity: 1;
	transition: background 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
	pointer-events: none;
}

#navbar > .nav-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    max-width: 1680px;
    padding: 15px 0;
}

#navbar>* {
	pointer-events: all;
}

#navbar.solid {
	background: #14131F;
	box-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

#navbar.hidden {
	opacity: 0;
	background: rgba(18, 42, 95, 0) !important;
	box-shadow: none !important;
}

.nav-logo {
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
	gap: 8px;
	width: 322px;
	max-width: 100%;
}

.nav-logo img {
	width: 322px;
	max-width: 100%;
}

@media (max-width:575px){
	.nav-logo {
		width: 200px;
	}
}

.nav-cta {
	background: #00FF00;
	color: #000;
	border: none;
	padding: 7px 18px;
	border-radius: 20px;
	font-size: 17px;
	font-weight: 500;
	cursor: pointer;
	margin-bottom: 0;
}

@media (max-width:575px){
	.nav-cta {
		padding:7px 10px;
	}
	#navbar {
        padding: 0 15px;
    }
}

#offer-row {
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}

.offer-badge {
	border: 2px solid #FF3000;
	color: #FF3000;
	background: #fff;
	padding: 4px 14px;
	border-radius: 20px;
}

@media (min-width: 1120px) {
	#offer-row {
		margin-top: -53px;
	}
}

/* â”€â”€ Headline / Subhead â”€â”€ */
.headline {
	margin-bottom: 6px;
}

@media (min-width: 900px) {
	.headline {
		margin-bottom: 27px;
		line-height: 1.2;
	}
}

.subhead,
.subhead--conf {
	font-size: 40px;
	text-align: center;
	margin-top: 25px;
	margin-bottom: 25px;
	line-height:normal;
}

@media (max-width:767px){
	.subhead{
		font-size:25px;
	}
}

@media (min-width: 900px) {

	.subhead,
	.subhead--conf {
		margin-top: 50px;
		margin-bottom: 30px;
	}
}

/* â”€â”€ Feature box â”€â”€ */
.feature-box {
	box-sizing: border-box;
	border: solid 1px #913324;
	width: 100%;
}

@media (min-width: 600px) {
	.feature-box {
		margin: 0 auto 1em;
	}
}

.feature__heading,
.receipt__heading {
	/* background-color: #913324; */
	color: #ffffff;
	font-family: "Inter", sans-serif;
	font-size: 15px;
	text-align: center;
	margin-top: 0;
	padding: 0.5em 0;
}

@media (min-width: 600px) {

	.feature__heading,
	.receipt__heading {
		font-size: 20px;
	}
}

.feature__copy,
.receipt__copy {
	font-size: 15px;
	line-height: 24px;
	padding: 0 25px;
}

@media (min-width: 600px) {

	.feature__copy,
	.receipt__copy {
		font-size: inherit;
		line-height: inherit;
		padding: 0 30px;
	}
}

.feature__copy .img-right,
.receipt__copy .img-right {
	max-width: 200px;
}

/* â”€â”€ Choice section â”€â”€ */
.choice {
	box-sizing: border-box;
	margin: 0 0 1em;
	/* border: solid 1px #979797; */
	width: 100%;
	/* background: #ffffff; */
	padding: 20px;
	border-radius: 14px;
	transition: box-shadow 120ms;
}

.choice:hover {
	box-shadow: 0px 1px 5px 1px rgba(128, 128, 128, .6);
}

.choice input[type="radio"] {
	margin: 0 5px;
	vertical-align: baseline;
}

.choice__box {
	overflow: auto;
}

.choice__box .choice__title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #808080;
	padding: 0 15px 0 5px;
}

.choice__box .choice__selection {
	display: flex;
}

.choice__box .choice__selection input[type="radio"] {
	align-self: center;
	margin-right: 10px;
}

.choice__box .choice__name,
.choice__box .choice__price {
	color: #000;
	font-family: "Inter", sans-serif;
	font-size: 19px;
	line-height: normal;
	margin: 0;
	font-weight: 700;
}

@media (min-width: 900px) {

	.choice__box .choice__name,
	.choice__box .choice__price {
		font-size: 24px;
		line-height: 28px;
	}
}

.choice__box .choice__name {
	display: inline;
}

.choice__box .choice__copy {
	font-size: 15px;
	line-height: 20px;
	padding: 0 25px;
}

@media (min-width: 600px) {
	.choice__box .choice__copy {
		font-size: inherit;
		line-height: inherit;
		padding: 0 30px;
	}
}

.choice-selected {
	background-color: #F1F4FF;
}

.click-label {
	cursor: pointer;
}

.choice-underline {
	position: relative;
}

.choice:hover .choice__name .choice-underline::after {
	transform: scaleX(1) translateY(3px);
	transform-origin: bottom left;
	transition: transform 200ms;
}

@media (min-width: 600px) {
	.choice--best {
		position: relative;
	}

	.choice--best .choice__price {
		margin-right: 50px;
	}

	.choice--best::after {
		position: absolute;
		content: "";
		background-image: url(https://s3.amazonaws.com/assets.oxfordclub.com/templates/img/best-deal-starburst.svg);
		width: 5em;
		height: 5em;
		background-size: 5em 5em;
		right: -2.5em;
		top: -1em;
	}
}





/* Redesigned Choice Section Styles */
.click-label {
cursor:pointer;
}

.choice-checkbox {
appearance: none;
margin: 0;
font: inherit;
width: 20px;
height: 20px;
border: 2px solid #979797;
border-radius: 50%;
display: grid;
place-content: center;

}


.choice-selected {
background-color: #F1F4FF;
}

.choice-checkbox::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #979797;
  border-radius: 50%;
  background-color: #007bff; /* Blue fill */
  transform: scale(0);
  transition: transform 120ms ease-in-out;

}


.choice-checkbox:checked::before {
    transform: scale(1);
}

.choice__box .choice__name {
    display: inline-block !important;
    position: relative;
}


.choice-underline {
    position: relative;
}

.choice:hover .choice__name .choice-underline::after {
    transform: scaleX(1) translateY(3px);
    transform-origin: bottom left;
    transition: transform 200ms;
}



/* Form field styling */

 .exp-grid{
                    display:grid;
                    margin:0;
                    grid-template-columns:1fr;
                    gap:0px;
                }

                .exp-grid.mmyyyy{
                    gap:0;
                }

                .exp-grid.mmyyyy{
                    grid-template-columns:1fr 1fr;
                }

                @media (min-width:500px){
                    .exp-grid{
                        grid-template-columns:1fr 1fr;
                        gap:20px;
                    }
                }










.best-deal::after {
	content:"";
	display: inline-block;
	background-image: url(https://s3.us-east-1.amazonaws.com/assets.monumenttradersalliance.com/promos/TPU/Big/OF/img/best-deal.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 80px;
	height: 28px;
	margin: 0 10px;
	vertical-align: middle;
}

@media (min-width: 900px) {
	.best-deal::after {
		width: 145px;
		height: 39px;
		margin: 0 20px;
	}
}

.choice-checkbox {
	appearance: none;
	margin: 0;
	font: inherit;
	width: 20px;
	height: 20px;
	border: 2px solid #979797;
	border-radius: 50%;
	display: grid;
	place-content: center;
	align-self: flex-start;
}

.choice-checkbox::before {
	content: "";
	width: 16px;
	height: 16px;
	border: 2px solid #979797;
	border-radius: 50%;
	background-color: #007bff;
	transform: scale(0);
	transition: transform 120ms ease-in-out;
}

.choice-checkbox:checked::before {
	transform: scale(1);
}

/* â”€â”€ Cart total â”€â”€ */
.cart-total {
	display: flex;
	align-items: center;
	font-weight: bold;
	color: #FF3000;
	font-size: 20px;
	margin: 15px 10px 0 0;
}

.cart-total .line {
	flex: 1;
	height: 1px;
	border-bottom: 2px dashed #FF3000;
	margin: 5px 10px 0;
	align-self: center;
}

@media (min-width: 900px) {
	.cart-total {
		font-size: 24px;
	}
}

/* â”€â”€ Step / Form â”€â”€ */


.step__header {
	text-align:center;
	margin-bottom: 20px;
	line-height: normal;
}

.form-group {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	margin-bottom: 32px;
}

.form-group .control-label {
	font-size: 16px;
	margin-bottom: .3em;
	display: block;
}

.form-group input,
.form-group div,
.form-group span,
.form-group select {
	width: 100%;
	margin: unset;
	border-radius: 6px;
}

@media (min-width: 900px) {
	.form-group .control-label {
		margin-right: 1em;
	}

	.form-group {
		max-width: 100%;
	}
}

.form-notes {
	margin: 0 25px 20px;
}

.form-notes p {
	margin-top: 0;
}

.form-check label {
	display: block;
	box-sizing: border-box;
	width: 100%;
	max-width: 590px;
	text-indent: -2.2em;
	padding-left: 2.2em;
}

@media (min-width: 600px) {
	.form-check label {
		text-indent: -1.5em;
		padding-left: 1.5em;
	}
}

.form-check label input {
	display: inline;
	width: auto;
	margin-right: 1em;
	margin-left: 0;
}

.form-help {
	width: 100%;
	max-width: 590px;
	margin: 0.5em 0 0;
}

/* #choices-radiogroup,
#billing_form,
#shipping_form,
#payment-form {
	padding: 0 25px;
} */

.expiration-date {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

/* â”€â”€ Text suppressed â”€â”€ */
.text-suppressed,
.form-notes,
.form-check label,
.form-help {
	font-size: 11px;
	line-height: 14px;
	color: #999999;
}

@media (min-width: 600px) {

	.text-suppressed,
	.form-notes,
	.form-check label,
	.form-help {
		font-size: 15px;
		line-height: 20px;
	}
}

main .text-suppressed,
main .form-notes,
main .form-check label,
article .text-suppressed,
article .form-notes,
article .form-check label {
	color: #666666;
}

/* â”€â”€ Checkmark lists â”€â”€ */
ul.checkmarks,
ul.checkmarks-blue,
ul.checkmarks2 li {
	list-style: none;
}

ul.checkmarks li {
	margin-bottom: 10px;
}


ul.checkmarks li::before {
	content: '\2714';
	display: inline-block;
	height: 1em;
	width: 1em;
	margin-right: 0.1em;
	margin-bottom: -0.2em;
	margin-left: -1.12em;
	background-size: contain;
	background-repeat: no-repeat;
}

/* â”€â”€ Guarantee box â”€â”€ */
.guarantee-box {
	background: url('https://s3.amazonaws.com/assets.monumenttradersalliance.com/promos/tpu-super/img/guarantee-bg.png') no-repeat center;
	padding: 0.5rem;
	border: 2px solid #ccc;
}

.guarantee-inner {
	margin: 20px;
	border: 10px solid black;
	padding: 1rem;
}

.guarantee-textarea p,
.guarantee-textarea h3 {
	text-align: center;
}

.guarantee-textarea p {
	font-weight: bold;
}

.guarantee-textarea h3 {
	font-size: 1.75rem;
}

@media (max-width: 768px) {
	.guarantee-textarea h3 {
		line-height: 1.9rem;
	}
}

.guarantee-signature {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.guarantee-imgarea {
	padding: 0 2rem 0.5rem 2rem;
	max-width: 100%;
	display: grid;
	grid-template-rows: 1fr;
	gap: 2.5rem;
}

.mobile-image {
	display: block;
	margin: 0 auto;
	max-width: 65%;
}

@media (max-width: 768px) {
	.desktop-image {
		display: none;
	}
}

@media (min-width: 768px) {
	.guarantee-imgarea img {
		max-width: 55%;
	}
}

/* â”€â”€ Receipt â”€â”€ */
.receipt-box {
	padding: 0;
}

.receipt-box ul {
	list-style: none;
	padding: 0;
	margin-left: 0;
}

.receipt__heading {
	/* background-color: #333333; */
	font-weight: 700;
}

.receipt__copy {
	padding: 0 25px;
}

@media (min-width: 600px) {
	.receipt__copy {
		padding: 0 45px;
	}
}

.receipt__footer {
	box-sizing: border-box;
	width: 100%;
	text-align: right;
	/* background-color: #913324; */
	font-weight: 700;
	padding: 0 30px;
	clear: both;
}

.receipt__subtotal {
	padding: 0.5em 0;
}

.selected-choice li {
	display: flex;
	justify-content: space-between;
}

.selected-choice__name,
.selected-choice__price,
p.shippingPrice {
	font-weight: 700;
}

/* .selected-choice__price,
p.shippingPrice {
	color: #913324;
} */

/* â”€â”€ Billing terms â”€â”€ */
    #billing-terms{
        padding:20px !important;
        border:1px dashed #7F7F7F !important;
        width:unset !important;
        text-align:left !important;
		margin-bottom: 20px !important;
    }
.billing-terms {
	margin: 0 auto;
	padding: 0 25px;
}


@media (min-width: 900px) {
	.billing-terms {
		width: auto;
		max-width: 790px;
	}
}

#autoRenewAuth .form-group {
	justify-content: flex-start;
}

#autoRenewAuth .form-check label {
	max-width: 790px;
}

/* â”€â”€ Testimonial â”€â”€ */
.testimonial,
blockquote.testimonial {
	margin-right: auto;
	margin-left: auto;
	padding: 5px 25px;
	background-color: #d4eef9;
	font-style: normal;
}

.testimonial__name {
	text-align: right;
	color: #0071bc;
	font-weight: 700;
}

.testimonial__name::before {
	display: inline;
	content: ' â€“ ';
}

/* â”€â”€ Disclaimer â”€â”€ */
/* .disclaimer {
	padding: 0 25px;
}

@media (min-width: 600px) {
	.disclaimer p {
		font-size: 13px;
	}
} */



/* â”€â”€ Promo codes â”€â”€ */
/* .promoCodes {
	font-weight: 700;
	display: inline-block;
	padding: 0 0.5em;
	color: #0071bc;
	background-color: #d4eef9;
}

.codes {
	font-weight: 700;
	color: #c10000;
} */

/* â”€â”€ Warning / error / success â”€â”€ */
.warning,
.alertMessage {
	color: #c10000;
	background-color: #ffbaba;
}

.error {
	color: #c10000;
}

.error-message {
	pointer-events: none !important;
}

.success {
	color: #009245;
}

.alertMessage {
	display: block;
}

.form-group .alertMessage {
	width: 100%;
	font-size: small;
	padding: 0.25em 1em;
}

/* â”€â”€ Countdown â”€â”€ */
.countdown,
.expired {
	font-size: 19px;
	color: #c10000;
	text-transform: uppercase;
	font-weight: 700;
}

@media (min-width: 900px) {

	.countdown,
	.expired {
		font-size: 21px;
	}
}

/* â”€â”€ Modal â”€â”€ */
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	margin: 0;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
}

.modal__content {
	background-color: #fff;
	width: 100%;
	max-width: 850px;
	margin: auto;
	padding: 20px;
	border: solid 1px #808080;
}

.close {
	color: #808080;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: #0071bc;
	text-decoration: none;
	cursor: pointer;
}

/* â”€â”€ FAQ â”€â”€ */
.faq {
	max-width: calc(100% - 50px);
	margin: 0 auto 20px;
}

.faq-toggle {
	display: none;
}

.faq-question {
	display: block;
	transition: all 0.2s ease-out;
	padding-bottom: 1rem;
	font-weight: 700;
	cursor: pointer;
}

.faq-question::before {
	content: "";
	vertical-align: middle;
	display: inline-block;
	transform: translateY(-2px);
	transition: transform 0.2s ease-out;
	margin-right: 10px;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #0071bc;
}

.faq-content .faq-answer {
	padding: 0 calc(1rem + 10px);
}

.faq-answer p {
	margin-top: unset;
}

.faq-content {
	overflow: hidden;
	transition: max-height 0.2s ease-in-out;
	max-height: 0;
}

.faq:not(:last-child) .faq-content {
	border-bottom: 1px solid #b3b3b3;
}

.faq-toggle:checked+.faq-question+.faq-content {
	max-height: 100vh;
}

.faq-toggle:checked+.faq-question {
	padding-bottom: 0;
}

.faq-toggle:checked+.faq-question::before {
	transform: rotate(90deg) translateX(-3px);
}

/* â”€â”€ Coupon code â”€â”€ */
.coupon-code {
	background: #c4dbe9;
	display: grid;
	padding: 1em;
	gap: 1em;
	grid-template-areas: "label""input""submit""message";
}

@media (min-width: 600px) {
	.coupon-code {
		grid-template-areas: "label .""input submit""message message";
		grid-template-columns: 2fr 1fr;
	}
}

.coupon-code__label {
	font-weight: 700;
	grid-area: label;
}

.coupon-code__input {
	grid-area: input;
	margin: unset !important;
}

.coupon-code__submit {
	grid-area: submit;
	border-radius: 4px;
	cursor: pointer;
	padding: 0.5em;
	background: linear-gradient(to top, #2e3992, #1672b3);
	text-align: center;
	font-weight: 700;
	color: #fff;
}

.coupon-code__submit:hover {
	background: linear-gradient(to bottom, #2e3992, #1672b3);
	text-decoration: none;
}

.coupon-code__message {
	text-align: center;
	font-weight: 700;
	grid-area: message;
}

/* â”€â”€ One-click form â”€â”€ */
#oneClickForm {
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
	width: 100%;
	max-width: 880px;
	background-color: #fff;
	text-align: center;
}

#oneClickForm_title {
	font-family: "Inter", sans-serif;
	color: #000;
	font-size: 24px;
	font-weight: 700;
	text-align: left;
	margin: 0 0 15px;
	padding: calc(1em/3) 0;
	width: 100%;
	border-bottom: 4px solid black;
	margin-bottom: 20px;
	line-height: normal;
}

#oneClickForm_creditCardType {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

#oneClickForm_cardNumber {
	display: inline-block;
	margin-left: 10px;
	font-size: 1.25em;
}

#oneClickForm_cvv_container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 10px;
	gap: 10px;
	margin-bottom: 0;
}

#oneClickForm_cvv_container label {
	order: 1;
}

#oneClickForm_spreedly_cvv {
	height: 45px;
	border: solid 1px #b3b3b3;
	background-color: white;
	border-radius: .25rem;
	max-width: 260px;
	width: 100%;
	order: 2;
}

#oneClickForm_placeOrder {
	background: linear-gradient(to bottom, #cb1817, #891206);
	margin-left: 1em;
	padding: .45em 55px;
}

#oneClickForm_placeOrder:hover {
	background: linear-gradient(to bottom, #a1150f, #5e1206);
}

#oneClickForm_cvv_container .error-message {
	order: 3;
	flex: 0 0 100%;
	left: auto !important;
}

/* â”€â”€ Miscellaneous â”€â”€ */
.shoppingCartShippingType {
	float: left;
	margin-top: 0;
	font-size: 15px;
	line-height: 20px;
	font-family: "Inter", sans-serif;
}

@media (min-width: 900px) {
	.shoppingCartShippingType {
		font-size: 20px;
		line-height: 27px;
	}
}

p.shoppingCartShippingLocation {
	display: none;
}

p.shippingPrice {
	float: right;
	margin-top: 0;
}

.autorenewMessage,
.premiumMessage,
.priceOption,
.itemQuantity {
	display: none;
}

.form-group .form-group {
	max-width: unset;
	margin: 0 0 20px;
}

@media (min-width: 900px) {
	.form-control.auto-cardtype {
		padding-left: 85px !important;
	}
}

.auto-cardtype.Visa {
	background-image: url(https://s3.amazonaws.com/assets.oxfordclub.com/templates/img/cc/visa.svg) !important;
}

.auto-cardtype.MasterCard {
	background-image: url(https://s3.amazonaws.com/assets.oxfordclub.com/templates/img/cc/mastercard.svg) !important;
}

.auto-cardtype.American.Express {
	background-image: url(https://s3.amazonaws.com/assets.oxfordclub.com/templates/img/cc/amex.svg) !important;
}

.auto-cardtype.Discover {
	background-image: url(https://s3.amazonaws.com/assets.oxfordclub.com/templates/img/cc/discover.svg) !important;
}

.auto-cardtype.UKMaestro {
	background-image: url(https://s3.amazonaws.com/assets.oxfordclub.com/templates/img/cc/maestro.svg) !important;
}

p.password1 {
	display: inline-block;
	color: #0071BC;
	font-size: 15px;
	padding: 0;
	width: 100%;
	max-width: 590px;
	line-height: 18px;
}

.iti__country-container {
	align-self: center;
}

.eop-spacer {
	height: 200px;
}

.headline-group {
	text-align: center;
	margin-bottom: 30px;
}

.headline-group>* {
	margin-top: unset;
}

@media (min-width: 900px) {
	.headline-group {
		margin-bottom: 40px;
	}
}

#mainContainer {
	margin-top: 0;
}

#mainContainer>*+* {
	margin-top: 32px;
}

#mainContainer> :last-child {
	margin-bottom: 32px;
}

#Upsell>*+*,
#NoUpsell>*+* {
	margin-top: 32px;
}

#Upsell> :last-child,
#NoUpsell> :last-child {
	margin-bottom: 32px;
}

@media (min-width: 600px) {
	.sticky-bar {
		position: sticky;
		top: 88px;
		z-index: 1;
	}

	.nowrap-md {
		white-space: nowrap;
	}
}

/* â”€â”€ Radial background â”€â”€ */
.radial-bg {
	background: #3648AC;
	background: radial-gradient(circle, rgba(54, 72, 172, 1) 0%, rgba(43, 46, 115, 1) 50%, rgba(11, 6, 59, 1) 100%);
}

/* â”€â”€ Chess banner background (can't be Tailwind â€” complex bg + responsive) â”€â”€ */
.chess-banner {
	background: #0a0a0a;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	min-height: 160px;
	position: relative;
	background-image: url('https://s3.us-east-1.amazonaws.com/assets.monumenttradersalliance.com/promos/TPU/Big/OF/img/chess-board.png');
	background-repeat: no-repeat;
	background-position: 100% 50%;
	background-size: cover;
}

.chess-fade {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 80px;
	background: linear-gradient(to right, #0a0a0a, transparent);
}


@media (max-width:767px){
	.chess-banner {
		background-position: 70% 50%;
		background-size: cover;
	}
}

@media (max-width: 520px) {
	.chess-banner {
		flex-direction: column;
	}

	.chess-fade {
		width: 100%;
		height: 60px;
		top: 0;
		bottom: auto;
		background: linear-gradient(to bottom, #0a0a0a, transparent);
	}
}

/* â”€â”€ Bryan cutout (gradient bg) â”€â”€ */
.bryan-container {
	display: flex;
	flex-direction: column;
}

.bryan-cutout {
	display: flex;
	margin-top: 21px;
	width:268px;
	max-width: 100%;
	justify-content: center;
	border-radius: 8px;
}

.bryan-cutout img {
	width: 245px;
	max-width: 100%;
	align-self: flex-end;
	margin-top: -28px;
}

.bryan-container p {
	font-size: 14px;
	text-align: center;
	line-height: normal;
	font-weight: 600;
	color: #8D8D8D;
}

@media (max-width:575px){
	.bryan-container p{
		font-size:12px;
	}
	.bryan-cutout{
		max-width:160px;
	}
}

/* â”€â”€ Report animations (must stay in CSS) â”€â”€ */
/* .scene {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0 50px;
	position: absolute;
	bottom: -199px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

.hero {
	position: relative;
	padding-bottom: 200px;
}

.content {
	position: relative;
	z-index: 1;
	padding-top: 200px;
}

.book-ghost {
	width: 222px;
	visibility: hidden;
}

.book-ghost img {
	width: 100%;
	display: block;
	border-radius: 10px;
}

.book {
	position: absolute;
	width: 222px;
	border-radius: 10px;
	overflow: visible;
	transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
}

.book img {
	width: 100%;
	display: block;
	border-radius: 10px;
	box-shadow: 4px 6px 18px rgba(0, 0, 0, 0.4);
}

.book-center {
	z-index: 3;
	transform: scale(1.08);
}

.book-left {
	z-index: 2;
	transform: translateX(0px) scale(0.91);
	opacity: 0;
}

.book-right {
	z-index: 2;
	transform: translateX(0px) scale(0.91);
	opacity: 0;
}

.book-left.revealed {
	transform: translateX(-211px) scale(0.91);
	opacity: 1;
}

.book-right.revealed {
	transform: translateX(211px) scale(0.91);
	opacity: 1;
} */

.scene {
	display: grid;
	justify-content: center;
	padding: 20px 0 0;
	margin-bottom: calc((clamp(120px, 25vw, 222px) * 0.8) * -1);
	position: relative;
	z-index: 10;
	
}

.hero {
	position: relative;
}

.content {
	position: relative;
	z-index: 1;
}

.book-ghost {
	display: none;
}

.book {
	grid-column: 1;
	grid-row: 1;
	width: clamp(120px, 30vw, 222px);
	border-radius: 10px;
	overflow: visible;
	transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
}

.book img {
	width: 100%;
	display: block;
	border-radius: 10px;
	filter: drop-shadow(4px 6px 18px rgba(0, 0, 0, 0.4));
}

.book-center {
	z-index: 3;
	transform: scale(1.08);
	justify-self: center;
}

.book-left {
	z-index: 2;
	transform: translateX(0) scale(0.91);
	opacity: 0;
	justify-self: center;
}

.book-right {
	z-index: 2;
	transform: translateX(0) scale(0.91);
	opacity: 0;
	justify-self: center;
}

.book-left.revealed {
	transform: translateX(calc(-100% - -3px)) scale(0.91);
	opacity: 1;
}

.book-right.revealed {
	transform: translateX(calc(100% + -3px)) scale(0.91);
	opacity: 1;
}





.badge-wrap {
	/* position: absolute;
	bottom: -22px;
	right: -18px;
	z-index: 10; */
	opacity: 0;
	transform: scale(0.7);
	transition: opacity 0.4s ease 0.85s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.85s;
}

.badge-wrap.revealed {
	opacity: 1;
	transform: scale(1);
}

/* .badge {
	background: #ff4400;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 14px;
	font-weight: 800;
	padding: 7px 14px;
	border-radius: 24px;
	white-space: nowrap;
	display: block;
	letter-spacing: 0.01em;
} */

.badge {
        position: absolute;
    /* top: 0; */
    /* left: 0; */
    bottom: -4px;
    right: -38px;
    display: block;
    width: auto;
    height: 34px;
    margin-left: 10px;
    padding: 0 14px 0 8px;
    background-color: #FF3000;
    border-radius: 4px 6px 6px 4px;
    border-left: 1px solid #FF3000;
    font-size: 20px;
    color: white;
    font-weight: 700;
    line-height: 32px;
    transform: rotate(-10deg);
}


.badge::before {
    content: "";
    position: absolute;
    display: block;
    top: 1px;
    left: -16.5px;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-right: 16px solid #FF3000;
}
.badge::after {
    content: "";
    border-radius: 50%;
    width: 4px;
    height: 4px;
    display: block;
    position: absolute;
    left: -5px;
    top: 16px;
}

@media (max-width:575px){
	.badge{
		height: 25px;
		font-size:14px;
		line-height: 24px;
	}

	.badge::before {
		content: "";
		position: absolute;
		display: block;
		top: 1px;
		left: -12.5px;
		width: 0;
		height: 0;
		border-top: 11px solid transparent;
		border-bottom: 12px solid transparent;
		border-right: 12px solid #FF3000;
	}
}

/* .badge{
	display: inline-block;
  background: #e31a00;
  color: white;
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  padding: 0.4em 1.5em 0.4em 2.2em;
  text-shadow: 1px 2px 3px rgba(0,0,0,0.35);
  transform: rotate(-8deg);
  clip-path: path("M 60,0 L 310,0 Q 330,0 330,20 L 330,60 Q 330,80 310,80 L 60,80 L 0,40 Z");
  filter: drop-shadow(2px 3px 4px rgba(0,0,0,0.4));
} */

.replay-btn {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 13px;
	cursor: pointer;
	border: 0.5px solid var(--color-border-secondary);
	background: var(--color-background-primary);
	padding: 5px 16px;
	border-radius: 20px;
	opacity: 0;
	transition: opacity 0.4s ease;
	white-space: nowrap;
}

.replay-btn.visible {
	opacity: 1;
}

/* â”€â”€ Pulse animation â”€â”€ */
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(203, 24, 23, 0.7);
	}

	70% {
		box-shadow: 0 0 0 14px rgba(203, 24, 23, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(203, 24, 23, 0);
	}
}

.pulse button,
button.pulse {
	animation: pulse 2s infinite;
}

.guarantee-section{
	background:url(https://s3.us-east-1.amazonaws.com/assets.monumenttradersalliance.com/promos/DPL/DPL+Open+House/0726/note-bg.jpg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}



.h-hr, .h-hr-angle {
    display: flex;
	gap:10px;
    flex-direction: row;
    align-items: center;
}

.h-hr-left::before, .h-hr-right::after{
	position: relative;
    height: 2px;
    content: '\a0';
    flex-grow: 1;
	background-color:#979797;
}

   #spreedly-number {
                height: 53px;
                border: solid 1px #b3b3b3;
                border-radius: 0.25rem;
				max-width:100%;
                width: 100%;
                background-color: #fff;
            }

            #spreedly-cvv {
                height: 53px;
                border: solid 1px #b3b3b3;
                border-radius: 0.25rem;
                max-width: 588px;
                width: 100%;
                background-color: #fff;
            }

			.accepted-credit-cards img{
				display:inline !important;
			}



@media (min-width:800px){


	.black-arrow:after{
		content:'';
		background:url(https://s3.us-east-1.amazonaws.com/assets.monumenttradersalliance.com/promos/DPL/DPL+Open+House/0726/black-arrow.svg) no-repeat center / contain;
		position:absolute;
		width: 188px;
		height: 80px;
		right: -201px;
		top: -14px;
	}



	

}

@media (min-width:1042px){
		.green-arrow:before{
		content:'';
		background:url(https://s3.us-east-1.amazonaws.com/assets.monumenttradersalliance.com/promos/DPL/DPL+Open+House/0726/green-arrow.svg) no-repeat center / contain;
		position:absolute;
		width: 240px;
        height: 90px;
        top: -11px;
        left: -121px;
	}
}

@media (min-width:1158px){
	.arrow:after{
		content:'';
		background:url(https://s3.us-east-1.amazonaws.com/assets.monumenttradersalliance.com/promos/DPL/DPL+Open+House/0726/white-arrow.svg) no-repeat center / contain;
		position:absolute;
		width: 188px;
		height: 80px;
		right: -201px;
		top: -14px;
	}
}



.arrow-list {
  list-style: none;
  padding-left: 0;
}

.arrow-list li {
  position: relative;
  padding-left: 28px;
}

.arrow-list li::before {
  content: "➤";
  color: #0020D8;
  font-size: 19px;
  position: absolute;
  left: 0;
  top: 0;
  /* transform: translateY(-50%); */
}

.special-img{
	margin-top:-45px;
}
.special-img2{
	margin-top:-37px;
}

@media (min-width:800px){
	.special-img{
		margin-bottom:-55px;
	}
	.special-img2{
		margin-bottom:-55px;
	}
	.vip-badge{
		margin-bottom:-20px;
		margin-top:-20px;
	}
}



.feature__copy,
.receipt__copy {
    font-size: 15px;
    padding: 0.5em 25px;
}

@media (min-width: 600px) {
    .feature__copy,
    .receipt__copy {
        font-size: inherit;
        line-height: inherit;
        padding: 0.5em 30px;
    }
}



.receipt-box {
    padding: 0 0 0.5em;
}

.receipt-box ul {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.receipt__heading {
    font-weight: 700;
    line-height: inherit;
    text-align: center;
    color: black;
    padding: calc(1em / 3) 0;
}

.receipt__copy {
    padding: 0 25px;
}

@media (min-width: 600px) {
    .receipt__copy {
        padding: 0 30px;
    }
}

.receipt__footer {
    font-weight: 700;
    padding: 0 30px;
}

.receipt__subtotal {
    padding: 0.5em 0;
}

.step__header,
.receipt__heading {
    font-size: 20px;
    background-color: #97EAD5;
    margin-bottom: 40px;
}

@media (min-width: 900px) {
    .step__header,
    .receipt__heading {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }
}



    .nate-right {
        display: inline;
        float: right;
        margin: 0 0 20px 20px;
        width: unset;
        max-width: 280px;
    }
