/* Import Google Fonts - Archivo with all weights */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Safari/Chrome font normalization */
html {
    font-synthesis: none;
    text-size-adjust: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-synthesis: none;
    font-synthesis-weight: none;
    font-synthesis-style: none;
}

:root {
    --select-border: #8F8F8F;
    --select-focus: blue;
    --select-arrow: var(--select-border);
}

/* Utilities / layout helpers
   -------------------------------------------------- */

.hidden {
    display: none;
}

.flex {
    display: flex;
}

.rel {
    position: relative;
}

.column {
    flex-direction: column;
}

.vertical-column {
    display: flex;
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.justify-around {
    justify-content: space-around;
}

.justify-between {
    justify-content: space-between;
}

.space-bottom {
    margin-bottom: 25px;
}

.max-1200 {
    /* updated 1200 -> 1600 in reskin */
    max-width: 1600px;
    margin: auto;
}

.sm-row {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.three-up span {
    display: inline-block;
}

.pa-captcha-wrap {
    margin-bottom: 8px;
}

/* Generic form / validation
   -------------------------------------------------- */

.validation-errors {
    color: #790000;
    font-weight: 700;
}

.validation-errors input {
    border-color: #790000;
    background: pink;
}

p.validation-errors {
    font-family: Oswald, Helvetica, Arial, sans-serif;
    border: red solid 1px;
    background: #faa;
    padding: 1em;
    border-radius: 10px;
    font-size: .7em;
    margin-bottom: 0;
    margin-top: 8px;
}

p.validation-errors:first-child {
    margin-top: 0;
}

.loyalty-errors {
    margin-top: 8px;
}

@media screen and (max-width: 980px) {
	#password-info {
		text-align: center;
	}
}

/* Global loyalty inputs
   -------------------------------------------------- */

#loyalty-rewards-registration input,
#loyalty-rewards-password-reset input {
    border-color: #8F8F8F;
    margin-bottom: 8px;
}

/* Checkbox wrap
   -------------------------------------------------- */

#checkbox-wrap {
    width: 100%;
    padding-top: 20px;
    border-radius: 3px;
}

#checkbox-wrap#checkbox-wrap label {
	font-size: 18px !important;
    font-family: Oswald, Helvetica, Arial, sans-serif;
    display: flex;
	align-items: baseline;
}

#checkbox-wrap label input[type=checkbox] {
	width: 18px;
	height: 18px;
}

@media (max-width: 767px) {
	#checkbox-wrap#checkbox-wrap label {
		margin-left: 0;
	}
}

#checkbox-wrap label:first-child {
    margin-bottom: 15px;
}

#checkbox-wrap label input:is(input[type="checkbox"]) {
	margin: 0;
	margin-right: 8px;
	accent-color: #8F8F8F;
	border-color: #fff;
	outline: 1px solid #fff;
}

#checkbox-wrap .validation-errors {
    margin-left: -6px;
}

body.rewards .page-header .banner-text rewards {
	font-family: 'Archivo', sans-serif;
	font-weight: 700;
	text-align: center;
}

/* Loyalty rewards registration select styling
   -------------------------------------------------- */

#loyalty-rewards-registration select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 0 1em 0 0;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    z-index: 1;
    outline: none;
    color: black !important;
}

#loyalty-rewards-registration select::selection {
    color: black !important;
}

#loyalty-rewards-registration select::placeholder {
	color: black !important;
}

#loyalty-rewards-registration select::-ms-expand {
    display: none;
}

#loyalty-rewards-registration .select {
    display: grid;
    grid-template-areas: "select";
    align-items: center;
    position: relative;
    min-width: 15ch;
    max-width: 30ch;
    border: 1px solid var(--select-border);
    padding: 5px 5px 7px;
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1.1;
    background-color: #fff;
    background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
    margin-bottom: 8px;
    color: black;
}

#loyalty-rewards-registration .select .tmprod-locations-option {
    color: black;
}

#loyalty-rewards-registration .select select,
#loyalty-rewards-registration .select::after {
    grid-area: select;
}

#loyalty-rewards-registration .select:not(.select--multiple)::after {
    content: "";
    justify-self: end;
    width: 0.8em;
    height: 0.5em;
    background-color: var(--select-arrow);
    -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}

#loyalty-rewards-registration select:focus + .focus {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 2px solid var(--select-focus);
    border-radius: inherit;
}

#loyalty-rewards-registration .select--disabled {
    cursor: not-allowed;
    background-color: #eee;
    background-image: linear-gradient(to top, #ddd, #eee 33%);
}

/* Loyalty account interface tabs
   -------------------------------------------------- */

#loyalty-account-interface nav,
#loyalty-account-interface ul {
    display: flex;
}

#loyalty-account-interface button:hover {
    cursor: pointer;
}

#loyalty-account-interface nav button {
    padding: .5em 2em 1em;
    border: none;
    border-radius: 10px 10px 0 0;
    color: #002B5E;
    font-weight: 700;
    margin-bottom: 10px;
    background: unset;
}

#loyalty-account-interface nav button.active {
    background: #F5F7F9;
}

#loyalty-account-interface ul {
    margin-bottom: -12px;
    border-radius: 10px;
    list-style-type: none;
    padding: 0;
}

#loyalty-account-interface form {
    margin-bottom: 25px;
}

#loyalty-account-interface input[type=submit]#submit2 {
    font-size: 1.7em;
    font-weight: bold;
}

/* Two-up layouts
   -------------------------------------------------- */

#loyalty-signup .two-up label,
#loyalty-account-interface .two-up label,
#rewards-registration .two-up .label,
#rewards-registration .two-up label,
.vertical-column {
    width: calc(50% - 25px);
}

#loyalty-signup .two-up,
#loyalty-account-interface .two-up,
#rewards-registration .two-up {
    display: flex;
    justify-content: space-between;
}

#loyalty-signup .two-up .vertical-column label,
#loyalty-account-interface .two-up .vertical-column label,
#rewards-registration .two-up .vertical-column label {
    width: 100%;
}

#loyalty-signup input[type=checkbox],
#rewards-registration input[type=checkbox] {
    height: 15px;
    width: 15px;
}

/* App store badges
   -------------------------------------------------- */

.apple-app-store-badge {
    background: url("/app/plugins/tmprod-loyalty/assets/images/apple-app-store-badge.svg") center no-repeat;
    height: 90px;
    background-size: contain;
    color: white;
}

.google-play-badge {
    background: url("/app/plugins/tmprod-loyalty/assets/images/google-play-badge.png") center no-repeat;
    height: 90px;
    background-size: contain;
    color: white;
}

a.google-play-badge span,
a.apple-app-store-badge span {
    position: relative;
    z-index: -99;
}

a.google-play-badge:hover,
a.apple-app-store-badge:hover,
a.google-play-badge:active,
a.apple-app-store-badge:active,
a.google-play-badge:focus,
a.apple-app-store-badge:focus {
    color: white;
}

#app-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
}

/* Gauge
   -------------------------------------------------- */

.gague {
    font-family: Oswald, Helvetica, Arial, sans-serif;
    display: grid;
    place-items: center;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    font-size: 5em;
    font-weight: 400;
}

.gague.sky {
    color: #0369a1;
    background: conic-gradient(#FF6936 0% 89%, #002B5E 89% 100%);
}

.gague .gague-inner {
    border: solid 20px white;
    color: white;
    text-shadow: #0A246A 1px 1px 0px;
    display: grid;
    place-items: center;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: url("/app/plugins/tmprod-loyalty/assets/images/GourmetRound_FlavorfulVeggie 1.png") center no-repeat;
    background-size: contain;
}

.gague .gague-inner span {
    font-size: .5em;
}

/* Points widget / account stats
   -------------------------------------------------- */

#loyalty-points-widget {
    width: 850px;
    max-width: 900px;
    background: #F5F7F9;
    border-radius: 10px;
    padding: 60px 50px;
    margin-bottom: 64px;
}

#loyalty-points-widget form {
    text-align: center;
}

#loyalty-points-widget h2,
#loyalty-rewards-tiers-widget h3,
#loyalty-rewards-faq-top h2 {
    margin-bottom: 40px;
    display: inline-block;
    font-size: 2em;
}

#loyalty-points-widget p {
    margin-top: 25px;
    font-size: 1.5em;
    text-align: center;
    font-weight: 400;
    font-family: Oswald, Helvetica, Arial, sans-serif;
}

#loyalty-points-widget p a {
    text-decoration: underline;
}

#loyalty-account-stats {
    margin-left: 30px;
}

#loyalty-account-stats div {
    line-height: 1.2;
    font-weight: 700;
    font-family: Oswald, Helvetica, Arial, sans-serif;
    color: #FF6936;
    font-size: 2.8em;
    margin-bottom: 30px;
}

#loyalty-account-stats div span {
    display: block;
    color: #002B5E;
    font-size: .5em;
}

/* Flash message
   -------------------------------------------------- */

#flash-message {
    padding: 1em;
    background: #e4f2de;
    color: #363e33;
    border-radius: 10px;
}

/* Account edit/profile / favorite locations
   -------------------------------------------------- */

#loyalty-account-edit-profile {
    border-radius: 10px;
    padding: 32px;
    padding-top: 16px;
    background: #F5F7F9;
}

#favorite-locations-widget {
    display: flex;
    flex-direction: column;
    font-family: Oswald, Helvetica, Arial, sans-serif;
    background: #FF6936;
    max-width: 300px;
    margin-left: 20px;
    border-radius: 10px;
    text-align: center;
    padding: 120px 15px 15px;
    margin-bottom: 64px;
    color: white;
}

#favorite-locations-widget span {
    font-weight: 400;
    display: block;
    font-size: .8em;
    text-transform: uppercase;
}

#favorite-locations-widget #favorite-locations-text {
    margin-top: 20px;
    margin-bottom: 26px;
    font-weight: 700;
    font-size: 2em;
}

#favorite-locations-widget .button {
    margin: 0 auto 40px;
}

#favorite-locations-widget img {
    max-width: 75%;
    margin: 0 auto;
}

#logout-button {
    margin-top: 30px;
}

/* Landing hero / steps
   -------------------------------------------------- */

#loyalty-rewards-landing h2 span {
    transform: rotate(-3deg);
    position: relative;
    display: block;
    text-transform: uppercase;
}

#loyalty-rewards-landing h2 {
    text-transform: capitalize;
    text-align: center;
    line-height: 1.5;
    font-size: 2.3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}

#loyalty-rewards-landing h2 > svg {
    text-transform: capitalize;
    display: block;
    font-family: 'Lobster', serif;
    fill: white;
    max-width: 1200px;
    width: 100%;
}

#loyalty-rewards-landing h2 svg text#background {
    fill: none;
    stroke: #FF6936;
    stroke-width: 5px;
    stroke-linejoin: round;
}

#loyalty-rewards-landing ol {
    list-style: none;
    justify-content: center;
}

#loyalty-rewards-landing ol li {
    flex-direction: column;
    font-family: Oswald, Helvetica, Arial, sans-serif;
    padding: 20px;
    max-width: 475px;
    margin-top: 40px;
}

#loyalty-rewards-landing ol li::before {
    font-size: 3em;
    font-weight: 700;
    color: #FF6936;
}

#loyalty-rewards-landing ol li h3 {
    text-align: center;
    margin: 0 auto;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    font-family: 'Lobster', serif;
    text-transform: capitalize;
    font-size: 4em;
    z-index: 1;
}

#loyalty-rewards-landing ol li h3 span {
    color: #FF6936;
    line-height: 0;
    margin-right: 19px;
    inline-size: 2em;
    block-size: 2em;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 5px solid #FF6936;
    background: #fff;
    font-family: "Archivo", sans-serif;
    font-weight: 800;
    font-size: 1.5em;
    position: relative;
    user-select: none;
    padding-bottom: 10px;
}

#loyalty-rewards-landing ol li h3 span:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: #FF6936;
    transform: translate(9%, 2%) scale(1.035);
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#loyalty-rewards-landing ol li img {
    margin-bottom: 64px;
    height: 140px;
}

#loyalty-rewards-landing ol li h5 {
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 400;
    text-align: center;
    text-transform: unset;
    color: #002B5E;
    letter-spacing: -0.01em;
    font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    font-synthesis: none;
}

.earn-free-pizza {
    margin-top: -10px;
    padding-bottom: 60px;
}

@media screen and (max-width: 979px) {
    .earn-free-pizza {
        margin-top: -10px;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .earn-free-pizza {
        margin-top: -10px;
        padding-bottom: 20px;
    }
}

#loyalty-rewards-landing .earn-free-pizza h2 {
    font-weight: 700;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0;
    font-family: 'Archivo-Narrow', sans-serif;
    letter-spacing: 5px;
    flex-wrap: wrap;
	line-height: 0.8;
    padding: 0 10px;

	& > span {
		font-family: 'Archivo', sans-serif;
		font-weight: 900;
	}
}

@media screen and (max-width: 750px) {
	#loyalty-rewards-landing .earn-free-pizza h2 {
		display: block;
		letter-spacing: 0.05em;

		span {
			display: inline;
		}
	}
}

#loyalty-rewards-landing .earn-free-pizza h2 span {
    transform: unset;
    font-weight: 900;
    font-size: unset !important;
}

.earn-free-pizza p {
    font-weight: 400;
    max-width: 635px;
    color: #002B5E;
    text-align: center;
    margin: 30px auto 0;
    font-size: 25px;
    padding: 0 30px;
}

#loyalty-rewards-easy-steps-widgets .buttons-row,
.earn-free-pizza .buttons-row {
    display: flex;
    text-align: center;
    gap: 20px;
    justify-content: center;
    padding: 0 20px;
    margin-top: 30px;
}

#loyalty-rewards-easy-steps-widgets .buttons-row .button,
.earn-free-pizza .buttons-row .button {
    width: 100%;
    max-width: 250px;
}

.justify-around .button:first-child {
    margin-right: 10px;
}

#loyalty-rewards-easy-steps-widgets {
    background-color: #EEF0F1;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0;

	& > h2 {
		padding-inline: 20px !important;
	}

	& h5 {
		font-size: 25px;
	}
}

.site-wrap {
	overflow: clip;
}

/* App widget / tiers widget
   -------------------------------------------------- */

#loyalty-rewards-app-widget {
    display: flex;
    gap: 40px;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 50px;
    justify-content: center;
}

#loyalty-rewards-app-widget .loyalty-rewards-app-widget-left img,
#loyalty-rewards-app-widget .loyalty-rewards-app-widget-left picture {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-height: 350px;
}

#loyalty-rewards-app-widget .loyalty-rewards-app-widget-right {
    display: flex;
    gap: 40px;
    min-width: 770px;
}

@media (981px <= width <= 1400px) {
	#loyalty-rewards-app-widget .loyalty-rewards-app-widget-right {
		min-width: 532px;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
}

@media (width <= 980px) {
	#loyalty-rewards-app-widget .loyalty-rewards-app-widget-right {
		min-width: unset;
	}
}

#loyalty-rewards-app-widget .loyalty-rewards-app-widget-right-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 550px;
    font-size: 1.2em;
}

#loyalty-rewards-app-widget .loyalty-rewards-app-widget-right .apple-app-store-badge,
#loyalty-rewards-app-widget .loyalty-rewards-app-widget-right .google-play-badge {
	span {
		position: absolute;
		inline-size: 1px;
		block-size: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0,0,0,0);
		border: 0;
	}
}

@media (width <= 980px) {
	#loyalty-rewards-app-widget .loyalty-rewards-app-widget-right-text {
		text-align: center;
	}
}

@media (width <= 650px) {
	#loyalty-rewards-app-widget .loyalty-rewards-app-widget-right p {
		max-width: 270px;
		margin-inline: auto;
	}

    #loyalty-rewards-app-widget {
        padding: 50px 20px;
    }

    #loyalty-rewards-app-widget .loyalty-rewards-app-widget-right-text {
        font-size: 1.1em;
    }
}

#loyalty-rewards-app-widget .loyalty-rewards-app-widget-right-text p,
#loyalty-rewards-app-widget .loyalty-rewards-app-widget-right-text h4 {
    color: #002B5E;
    font-weight: 700;
}

#loyalty-rewards-app-widget .loyalty-rewards-app-widget-right-text p {
    font-weight: 400;
}

#loyalty-rewards-app-widget .flex {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

@media (981px <= width <= 1400px) {
	#loyalty-rewards-app-widget .flex {
		flex-direction: row;
		align-items: center;
		gap: 10px;
	}

    #loyalty-rewards-app-widget .loyalty-rewards-app-widget-right .apple-app-store-badge,
    #loyalty-rewards-app-widget .loyalty-rewards-app-widget-right .google-play-badge {
        width: 240px;
    }
}

#loyalty-rewards-tiers-widget {
    padding: 50px;
    background-color: #EEF0F1;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

#loyalty-rewards-tiers-widget p {
    font-weight: 700;
    max-width: 430px;
    color: #002B5E;
}

#loyalty-rewards-tiers-widget p span {
    color: #FF6936;
    display: block;
    margin-top: 20px;
}

#loyalty-rewards-tiers-widget h3 {
    margin-bottom: auto;
    text-align: center;
}

body.rewards main .page-wrap {
    padding: 0;
}

body.rewards main .page-wrap .container {
    max-width: 1400px;
}

.loyalty-rewards-tier-widget {
    display: flex;
    padding: 20px 0;
}

.loyalty-rewards-tier-widget .image-wrap {
    width: 300px;
}

.loyalty-rewards-tier-widget .image-wrap img,
.loyalty-rewards-tier-widget .image-wrap picture {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loyalty-rewards-tier-widget .loyalty-rewards-tier-widget-content {
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
}

.loyalty-rewards-tier-widget .tier-amount {
    width: 100%;
}

.loyalty-rewards-tier-widget .tier-amount svg {
    font-family: 'Lobster', serif;
    font-weight: 700;
    text-transform: lowercase;
    font-size: 2.3em;
    width: 100%;
}

.loyalty-rewards-tier-widget ul {
    text-align: center;
    list-style-type: none !important;
    padding-left: 0 !important;
    font-weight: 600;
    font-size: 1em;
    color: #002B5E;
    line-height: 1.4;
}

.loyalty-rewards-tier-widget ul li small {
    display: block;
    margin-top: -0.5em;
}

.loyalty-rewards-tier-widget svg {
    font-size: 1.4em;
    text-transform: capitalize;
    display: block;
    font-family: 'Oswald', sans-serif;
    fill: #FF6936;
}

.loyalty-rewards-tier-widget text#background {
    fill: none;
    stroke: white;
    stroke-width: 5px;
    stroke-linejoin: round;
}

#loyalty-rewards-tiers-widgets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.loyalty-rewards-tier-widget h4 {
    font-size: 3em;
    color: white;
}

/* There's even more
   -------------------------------------------------- */

.loyalty-rewards-even-more-widget {
    width: calc(33% - 25px);
}

#loyalty-rewards-theres-even-more {
    margin-bottom: 40px;
    padding-top: 64px;
    padding-bottom: 42px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

#loyalty-rewards-theres-even-more h2 {
    align-items: flex-start;
	padding-inline: 20px !important;
    margin-bottom: 64px;
}

#loyalty-rewards-theres-even-more h2:not(pizza) > svg {
    max-width: 900px;
    transform: rotate(-5deg);
}

@media screen and (max-width: 850px) {
	#loyalty-rewards-theres-even-more {
		padding-top: 35px;
	}

    #loyalty-rewards-theres-even-more h2:is(h2) {
        margin-bottom: 30px;
    }

	#loyalty-rewards-theres-even-more h2:not(pizza) > svg {
		margin-top: -25px;
		margin-bottom: -45px;
	}

    .loyalty-rewards-tier-widget .image-wrap {
        width: 100%;
    }
}

#loyalty-rewards-theres-even-more img,
#loyalty-rewards-theres-even-more picture {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 120px;
    margin-bottom: 15px;
}

#loyalty-rewards-theres-even-more h4 {
    text-align: center;
    color: #FF6936;
    font-family: 'Lobster', serif;
    text-transform: capitalize;
    margin-bottom: 0;
    font-size: 4em;
}

#loyalty-rewards-theres-even-more p {
    text-align: center;
    color: #002B5E;
    font-size: 25px;
    font-weight: 400;
    max-width: 300px;
    margin: auto;
}

/* Registration + login layout
   -------------------------------------------------- */

#loyalty-rewards-registration {
    background: #F5F7F9;
    border-radius: 0px 10px 10px 0px;
}

#loyalty-rewards-registration-form {
    padding: 25px;
    padding-top: 32px;
    width: calc(100% - 550px);

	& > h2 {
		text-align: center;
		font-family: 'Archivo', sans-serif;
		font-weight: 700;
		margin-bottom: 20px;
	}
}

#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards {
    width: 550px;
    padding: 32px;
    background: #FF6936;
    background-blend-mode: normal, multiply, normal;
}

#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards h3 span {
    font-size: .6em;
    color: white;
    display: block;
    text-align: left;
}

#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards h3 > img,
#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards h3 > picture {
	filter: saturate(0) brightness(0) invert(1);
	display: inline-block;
	width: 113px;
	height: 41px;
	margin-right: -20px;
}

#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards h3 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media screen and (max-width: 1150px) {
	#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards h3 > img,
	#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards h3 > picture {
		display: none;
	}
}

#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards h3 pizza {
	filter: saturate(0) brightness(0) invert(1);
}

#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards ul {
    margin-left: 0;
    padding-left: 0;
}

#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards h3 {
    color: white;
    text-align: left;
	font-size: 58px;
	font-family: 'Archivo', sans-serif;
	font-weight: 700;
	text-align: center;
}

#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards p {
    color: white;
}

#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards p#extra-info {
	text-align: center;
	font-family: 'Archivo-Narrow', sans-serif;
	font-size: 25px;
	font-weight: 700;
	max-width: 420px;
	margin-inline: auto;
	margin-block: 64px;
}

@media screen and (max-width: 1150px) {
	#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards p#extra-info {
		margin-block: 40px;
	}
}

@media screen and (max-width: 720px) {
	#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards p#extra-info {
		margin-block: 20px;
	}
}

#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards p#loyalty-rewards-login-here-cta,
#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards p#loyalty-rewards-faq-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-right: 	20px;
	max-width: 420px;
	margin-inline: auto;

	> span {
		font-family: 'Archivo-Narrow', sans-serif;
		font-weight: 700;
		font-size: 25px;
	}
}

#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards .button {
    font-size: 25px;
    font-weight: 700;
    padding: 14px 12px;
    margin-left: 10px;
	font-family: 'Archivo-Narrow', sans-serif;
	min-width: 180px;
	border-radius: 16px;
	text-align: center;
	margin-top: 0;
}

section#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards {
    border-radius: 10px 0 0 10px;
    position: relative;
    overflow: hidden;
}

#loyalty-rewards-signup-date-format-tip {
    font-weight: 400;
    font-size: .9em;
}

#rewards-registration input[type=submit] {
    font-size: 1.618em;
    font-weight: 700;
    margin-top: 25px;
}

#loyalty-rewards-registration-flash-errors {
    padding: 15px 0 0;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    border: solid 1px red;
    background: pink;
    margin-bottom: 32px;
}

#password-info {
    color: white;
    text-align: left;
}

#password-info ul {
    list-style-type: none;
}

#password-info h5 {
    font-size: .7em;
}

.rewards header.fixed {
    display: none;
}

label.checkbox {
    margin-left: 14px;
}

#loyalty-rewards-login-here-cta span,
#loyalty-rewards-faq-cta span {
    font-size: 1.5em;
    font-weight: 700;
    font-family: Oswald, Helvetica, Arial, sans-serif;
}

#loyalty-rewards-login-form label,
#rewards-registration label,
#loyalty-rewards-reset-password-form label {
    margin-bottom: unset;
    font-size: 25px;
	font-family: 'Archivo-Narrow', sans-serif;
	font-weight: 700;
	line-height: 1;
}

#loyalty-rewards-login-form label input,
#rewards-registration label input,
#loyalty-rewards-reset-password-form label input {
    font-size: .8em;
    margin-bottom: 24px;
	border: none;

	&:has(~ p) {
		margin-bottom: 0;
	}
}

#loyalty-rewards-login-form label p,
#rewards-registration label p,
#loyalty-rewards-reset-password-form label p {
	font-size: 12px;
	margin-bottom: 12px;
}

header.site-header nav.primary-navigation .menu-wrapper {
    margin-top: 10px;
}

h5#loyalty-rewards-terms-header {
    margin-top: 25px;
    margin-bottom: 25px;
}

#loyalty-rewards-registration-form h5 {
    margin-bottom: 20px;
    font-size: 19px;
}

#loyalty-rewards-login-body {
    width: 50%;
    padding: 25px;
    padding-right: 100px;
}

#loyalty-login h4 {
    text-transform: uppercase;
}

#loyalty-login {
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    background: #eeeeee;
    color: #5A585A;
}

#loyalty-login-body {
	flex: 1;
	padding: 32px;
}

@media (max-width: 767px) {
	#loyalty-login-body {
		padding: 16px !important;
	}
}

#loyalty-login-body label input {
	margin-top: 6px;
}

.make-me-a-pizza {
    background: url("/app/plugins/tmprod-loyalty/assets/images/login.png");
    width: 50%;
    background-size: cover;
}

#loyalty-login p a {
    color: #5A585A;
}

#loyalty-login input[type=submit] {
    font-size: 1.2em;
}

a#login-create-account-cta {
    display: inline-block;
    margin-left: 20px;
    font-size: 1.2em;
}

@media (max-width: 1100px) {
	#loyalty-login input[type=submit] {
		font-size: 1.1em;
		display: block;
	}

	a#login-create-account-cta {
		margin-left: 0;
		font-size: 1.1em;
		display: block;
		margin-top: 20px;
	}
}

@media (max-width: 480px) {
	#loyalty-login input[type=submit] {
		font-size: 0.9em;
	}

	a#login-create-account-cta {
		font-size: 0.9em;
	}
}

/* Password reset
   -------------------------------------------------- */

#loyalty-rewards-password-reset {
    margin-top: 60px;
    margin-bottom: 100px;
    font-size: 1.3em;
}

#loyalty-rewards-password-reset form {
    max-width: 555px;
}

#loyalty-rewards-password-reset label {
    font-family: Oswald, Helvetica, Arial, sans-serif;
    font-size: 1.2em;
}

#loyalty-rewards-password-reset input[type=email] {
    margin-top: 15px;
    margin-bottom: 30px;
    display: block;
}

#loyalty-rewards-password-reset input[type=submit] {
    font-family: Oswald, Helvetica, Arial, sans-serif;
}

/* FAQ
   -------------------------------------------------- */

#loyalty-rewards-faq {
    display: flex;
    flex-direction: column;
}

#loyalty-rewards-faq-top {
    display: flex;
    flex-direction: column;
}

#loyalty-rewards-faq-top-top {
    margin-top: 40px;
    margin-right: 128px;
    width: 70%;
}

#loyalty-rewards-faq-top h2 {
    margin: 75px auto 70px;
    display: inline-block;
    font-size: 3em;
    max-width: 700px;
    text-align: center;
}

#loyalty-rewards-faq-sandwich {
    padding: 45px;
    background: #FF6936;
    border-radius: 10px;
    margin-top: 32px;
    color: white;
}

#loyalty-rewards-faq-top-bottom h3 {
    margin: 0 32px 12px;
    font-size: 1.7em;
}

#loyalty-rewards-faq-top-bottom h3,
#loyalty-rewards-faq-top-bottom h4,
#loyalty-rewards-faq-top-bottom h5 {
    text-align: center;
    color: white;
}

#loyalty-rewards-faq-top-bottom h4 {
    font-size: 1.2em;
}

#loyalty-rewards-faq-top-bottom h5 {
    font-size: .93em;
    margin-bottom: 12px;
}

#loyalty-rewards-faq-top .app-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    margin-top: 16px;
}

#loyalty-rewards-faq-top .apple-app-store-badge {
    width: 163px;
    margin-right: 15px;
}

#loyalty-rewards-faq-top .google-play-badge {
    width: 186px;
}

#loyalty-rewards-faq-top-bottom p {
    text-align: center;
    margin-bottom: 12px;
}

#loyalty-rewards-faq-top-bottom p a {
    text-decoration: underline;
    color: white;
}

#loyalty-rewards-faq-bottom {
    margin-top: 60px;
    background: #F5F7F9;
    padding: 20px 40px;
}

#loyalty-rewards-faq-bottom p {
    margin-bottom: 32px;
}

.loyalty-rewards-required {
    font-size: 1.5em;
    color: #FF6936;
    line-height: 0;
}

/* Login / FAQ / misc responsive + CTA colors
   -------------------------------------------------- */

@media screen and (min-width: 851px) {
    #loyalty-rewards-landing h2:not(pizza) > svg {
        margin-top: -50px;
        margin-bottom: -75px;
    }
}

@media screen and (min-width: 560px) {
    #loyalty-rewards-landing .earn-free-pizza h2 {
        font-size: 4rem;
    }
}

@media screen and (min-width: 976px) {
    #loyalty-rewards-landing .earn-free-pizza h2 {
        font-size: 8rem;
        gap: 20px;
    }

    #loyalty-rewards-landing .earn-free-pizza h2 span {
        margin-top: -4px;
    }
}

@media screen and (min-width: 1151px) {
    #loyalty-rewards-login-here-cta a,
    #loyalty-rewards-faq-cta a {
        background: #fff;
        color: #FF6936;
    }
}

/* Medium / smaller breakpoints
   -------------------------------------------------- */

@media screen and (max-width: 1220px) {
    #loyalty-rewards-faq-top-top {
        margin: 0 auto;
    }
}

@media screen and (max-width: 1216px) {
    #loyalty-rewards-registration-get-inn-on-cottage-inn-rewards,
    section#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards {
        -webkit-border-radius: unset;
        -moz-border-radius: unset;
        border-radius: unset;
    }
}

@media screen and (max-width: 1150px) {
    #loyalty-rewards-theres-even-more {
        margin-bottom: 0;
    }

    #loyalty-rewards-registration-form {
        width: 100%;
    }

    #loyalty-rewards-theres-even-more .flex {
        flex-direction: column;
        gap: 40px;
    }

    .loyalty-rewards-even-more-widget {
        width: unset;
    }

    #loyalty-rewards-registration-get-inn-on-cottage-inn-rewards {
		text-align: center;
	}

    #loyalty-rewards-registration-get-inn-on-cottage-inn-rewards h3 {
		text-align: center;
	}

	#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards p#loyalty-rewards-login-here-cta,
	#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards p#loyalty-rewards-faq-cta {
		flex-direction: column;
	}

	#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards a.button {
		margin-top: 10px;
		margin-inline: 0;
		display: block;
		width: 100%;
		text-align: center;
		background: #fff;
		color: #FF6936;
	}
}

@media screen and (max-width: 1120px) {
    #loyalty-rewards-faq .flex {
        flex-direction: column;
    }

    #loyalty-rewards-faq-sandwich h3 {
        font-size: 2.3em;
        margin-bottom: 12px;
    }

    #loyalty-rewards-faq-sandwich h5 {
        margin-bottom: 22px;
    }

    #loyalty-rewards-faq-top .app-buttons {
        margin-bottom: 20px;
    }

    #loyalty-rewards-faq-sandwich p {
        margin-bottom: 15px;
    }

    #loyalty-points-widget .flex {
        flex-direction: column-reverse;
    }

    .gague {
        width: 519.15px;
        height: 519.15px;
        border-radius: 50%;
        font-size: 5em;
        margin: auto;
    }

    .gague .gague-inner {
        width: 444.99px;
        height: 444.99px;
    }

    .gague .gague-inner span {
        font-size: .5em;
    }

    #loyalty-account-stats {
        text-align: center;
        margin-left: unset;
    }
}

@media screen and (max-width: 1120px) {
    #loyalty-rewards-faq-sandwich h3 {
        font-size: 2.3em;
    }
}

@media screen and (max-width: 1000px) {
    #loyalty-account-main .flex {
        flex-direction: column;
    }

    #loyalty-points-widget {
        max-width: 100%;
    }

    #favorite-locations-widget {
        max-width: 100%;
        margin-top: 20px;
        margin-left: unset;
        padding: 64px;
    }

    #loyalty-points-widget h2 {
        margin: auto;
        margin-bottom: 50px;
    }

    #favorite-locations-widget img {
        margin-top: 0;
    }
}

@media screen and (max-width: 980px) {
    #loyalty-signup .two-up,
    #loyalty-account-interface .two-up {
        display: block;
    }

    #loyalty-signup .two-up label,
    #loyalty-account-interface .two-up label {
        width: 100%;
    }

    #loyalty-rewards-easy-steps-widgets .buttons-row {
        margin-top: 0;
    }

    .earn-free-pizza .buttons-row {
        margin-top: 10px;
    }

    #loyalty-rewards-app-widget {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    #loyalty-rewards-app-widget .loyalty-rewards-app-widget-right {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    #loyalty-rewards-app-widget .loyalty-rewards-app-widget-right .flex {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    #loyalty-rewards-app-widget .loyalty-rewards-app-widget-right .apple-app-store-badge,
    #loyalty-rewards-app-widget .loyalty-rewards-app-widget-right .google-play-badge {
        width: 240px;
    }

    #loyalty-rewards-easy-steps-widgets {
        padding: 20px 0;
    }

	#password-info {
		text-align: center;
	}
}

.for-more-info-cta {
	text-align: center;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

@media screen and (max-width: 940px) {
    #loyalty-rewards-landing ol li img {
        height: 120px;
    }

    .justify-around {
        justify-content: center;
    }

    .justify-around a:first-child {
        margin-right: 16px;
    }

    #loyalty-rewards-landing ol {
        flex-direction: column;
    }

    #loyalty-rewards-landing ol li h5 {
        max-width: 75%;
        margin: 0 auto;
        letter-spacing: -0.01em;
        font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        -webkit-font-smoothing: antialiased;
        font-synthesis: none;
    }

    #loyalty-rewards-landing ol li {
        max-width: 100%;
        margin-top: 0;
    }

	#loyalty-rewards-landing ol li:first-child {
		padding-top: 10px;
	}

    #loyalty-rewards-landing ol li:nth-child(even) {
        background: #F5F7F9;
    }

	#loyalty-rewards-landing ol li:last-child {
		padding-bottom: 10px;
	}

    #loyalty-rewards-landing ol li h3 {
        margin-bottom: 16px;
    }

    #loyalty-login-body {
        width: 61.8%;
    }

    .make-me-a-pizza {
        width: 38.2%;
    }
}

@media screen and (max-width: 912px) {
    #loyalty-rewards-faq-top-top {
        margin: 0 auto;
    }
}

@media screen and (max-width: 900px) {
    /* intentionally left empty for future rules */
}

@media screen and (max-width: 850px) {
    #loyalty-rewards-landing h2 span {
        font-size: 0.6em;
    }

    .loyalty-rewards-tier-widget {
        width: 100% !important;
    }

    #loyalty-rewards-tiers-widget div.flex {
        flex-direction: column;
    }

    #loyalty-rewards-tiers-widget div.flex h3,
    #loyalty-rewards-tiers-widget div.flex p {
        margin: auto;
    }

    #loyalty-rewards-tiers-widget div.flex h3 {
        margin-bottom: 60px;
    }

    #loyalty-rewards-tiers-widgets .loyalty-rewards-tier-widget:last-child:not(:nth-child(even)) {
        flex-direction: column;
    }

    #loyalty-rewards-tiers-widgets .loyalty-rewards-tier-widget:last-child:not(:nth-child(even)) .maybe-column {
        width: 100%;
    }

    #loyalty-rewards-tiers-widgets .loyalty-rewards-tier-widget:last-child:not(:nth-child(even)) .maybe-column ul {
        text-align: center;
    }

    #loyalty-rewards-tiers-widgets .loyalty-rewards-tier-widget:last-child:not(:nth-child(even)) .maybe-column .tier-amount {
        text-align: center;
        margin-top: 0;
    }

    #loyalty-rewards-landing ol li h3 span {
        font-size: 1em;
    }

    .loyalty-rewards-tier-widget .loyalty-rewards-tier-widget-content {
        width: 100%;
        padding: 0;
    }

    #loyalty-rewards-faq-top-top {
        margin: 0 auto;
    }
}

@media screen and (max-width: 800px) {
    #tmprod-locations-select {
        margin-bottom: 30px;
    }

    #loyalty-rewards-faq-sandwich h3 {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 750px) {
    #rewards-registration .two-up {
        display: block;
    }

    #rewards-registration .two-up label,
    .vertical-column {
        width: 100%;
    }

    #rewards-registration label {
        font-size: 1.5em;
    }

    #tmprod-locations-selected-address {
        font-size: .8em;
    }

    #checkbox-wrap {
        width: 100%;
        padding-top: 10px;
    }

    #loyalty-rewards-registration h5 {
        display: none;
    }

    .loyalty-rewards-required {
        font-size: 1.5em;
        line-height: 0;
    }

    #rewards-registration input[type=submit] {
        font-size: 1.618em;
    }

    label.checkbox {
        font-size: .7em !important;
    }

    #loyalty-rewards-registration .select {
        max-width: unset;
    }

    .pa-captcha-wrap {
        transform: scale(0.77);
        margin-left: -40px;
    }

    .loyalty-rewards-tier-widget {
        padding: 8px;
        flex-direction: column;
        align-items: center;
    }

    .loyalty-rewards-tier-widget p {
        font-size: .8em;
    }

    .loyalty-rewards-tier-widget .image-wrap {
        margin-bottom: 15px;
        min-height: 98px;
    }

    #password-info {
        font-size: 1.2em;
    }

    #loyalty-rewards-faq-top-top {
        width: 100%;
    }

    #loyalty-rewards-faq-sandwich {
        padding: 16px;
        padding-top: 32px;
    }

    #loyalty-rewards-faq-sandwich h3 {
        font-size: 1.2em;
    }

    #loyalty-rewards-faq-sandwich h4 {
        font-size: 1em;
    }

    #loyalty-rewards-faq-sandwich h5 {
        font-size: .83em;
        margin-bottom: 0;
    }

    #loyalty-rewards-faq-top-bottom p {
        font-size: .9em;
    }

    #loyalty-rewards-faq-top-bottom a {
        font-size: 1.2em;
    }

    #loyalty-rewards-faq-top .app-buttons {
        height: 64px;
        margin-top: 0;
        margin-bottom: 0;
        padding: 0;
    }

    #loyalty-rewards-registration-get-inn-on-cottage-inn-rewards h3 span {
        font-size: .6em;
    }

    #loyalty-rewards-registration-get-inn-on-cottage-inn-rewards h3 {
        font-size: 2.3em;
    }

    .wc-month-row,
    .wc-year-row {
        font-size: 2em;
    }

    .gague .gague-inner {
        width: 204px;
        height: 204px;
        font-size: .5em;
    }

    #loyalty-points-widget p {
        margin-top: 10px;
    }

    .gague {
        width: 250px;
        height: 250px;
    }

    #loyalty-account-edit-profile {
        padding: 16px;
    }

    #loyalty-points-widget {
        padding: 16px;
    }

    #loyalty-points-widget h2 {
        font-size: 1.15em;
        margin: 8px;
        margin-top: 16px;
        margin-bottom: 32px;
    }

    #loyalty-account-interface nav ul li button {
        line-height: 1.2;
        padding: 16px;
    }

    #favorite-locations-widget {
        padding: 16px;
        padding-top: 64px;
        padding-bottom: 72px;
    }

    #tmprod-locations-select {
        margin-bottom: 8px;
        color: black;
    }

    #submit2 {
        margin-top: 16px;
    }

    #loyalty-account-edit-profile h3 {
        text-align: center;
    }

    #loyalty-rewards-faq-top-bottom h3 {
        margin-left: unset;
        margin-right: unset;
    }

    #loyalty-rewards-faq-top-bottom p {
        margin-bottom: 4px;
    }

    #loyalty-rewards-faq-top .app-buttons {
        margin-bottom: 16px;
    }

    #loyalty-rewards-faq-bottom {
        padding: 8px;
        font-size: .8em;
    }

    #loyalty-rewards-landing ol li img {
        margin-bottom: 16px;
    }

    #loyalty-rewards-landing h2 {
        line-height: 1;
        padding: 0;
        font-size: 2.65em;
        margin-bottom: 0;
    }

    #loyalty-rewards-tiers-widget {
        font-size: .8em;
        padding: 50px 16px;
    }

    #loyalty-login-body {
        width: 100%;
        font-size: 1.2em;
        padding-right: 25px;
    }

    #loyalty-login-body label {
        font-size: 1.2em;
    }

    #loyalty-login-body label input {
        font-size: 1.1em;
    }

    .make-me-a-pizza {
        display: none;
    }

    #loyalty-login h4 {
        text-align: center;
    }

    #loyalty-rewards-theres-even-more h4 {
        font-size: 2em;
    }

    #loyalty-rewards-theres-even-more img,
    #loyalty-rewards-theres-even-more picture {
        margin-bottom: 0 !important;
    }

	section#loyalty-rewards-registration {
		flex-direction: column;
	}

	#loyalty-rewards-registration-get-inn-on-cottage-inn-rewards {
		width: 100%;
	}
}

@media screen and (max-width: 720px) {
    .gague {
        width: 320.85px;
        height: 320.85px;
        border-radius: 50%;
        font-size: 4em;
    }

    .gague .gague-inner {
        width: 275px;
        height: 275px;
    }

    .gague .gague-inner span {
        font-size: .5em;
    }
}

@media screen and (max-width: 700px) {
    #loyalty-rewards-password-reset input[type=email] {
        font-size: 1.1em;
    }

    #loyalty-rewards-password-reset input[type=submit] {
        font-size: 1.1em;
    }
}

/* Extra small login adjustments */

@media screen and (max-width: 700px) {
    #loyalty-login-body {
        width: 100%;
        font-size: 1.2em;
        padding-right: 25px;
    }

    #loyalty-login-body label {
        font-size: 1.2em;
    }

    #loyalty-login-body label input {
        font-size: 1.1em;
    }

    .make-me-a-pizza {
        display: none;
    }

    #loyalty-login h4 {
        text-align: center;
    }

    #loyalty-rewards-theres-even-more h4 {
        font-size: 2em;
    }
}

/* Misc
   -------------------------------------------------- */

#loyalty-login-body label input {
    font-size: 1.1em;
}

#loyalty-rewards-faq-top .app-buttons {
    margin-bottom: 16px;
}
