/*
// //////////////////////
// Main
// //////////////////////
*/


/*

@font-face {
	font-family: Play;
	src: url(./Play-Regular.ttf);
}

resets
1. normalize

structure
2. icons
3. colors
4. layout-and-grid
5. typography
6. form-styles
7. buttons
8. social-share-links
9. info
10. fixes-buggy-things

layouts
11. header
12. footer
13. checkout
14. order summary
15. pricing plans
16. login

*/

:root {

/* 1. normalize */
/* 2. icons */

	--icon-checkmark-small: "\e91b";

/* 3. colors */

	/* Grayscale */
	--black: #222222;
	--dkgray: #515c63;
	--mdgray: #67767f;
	--ltgray: #d5dadd;
	--light: #f2f3f4;
	--offwhite: #fbfbfc;
	--grayborder: #c3cace;

	/* SportsEngine Brand Colors */
	--blue: #008cc3;
	--green: #00a846;
	--yellow: #f0b428;
	--ltorange: #ff8246;
	--orange: #e16428;
	--purple: #5a5a96;
	--magenta: #b42846;
	--red: #ea322f;

	/* TrackWrestling Brand Colors */
	--ltblue: #0070bb;
	--dkgold: #b8992c;
	--gold: #cbb93d;
	--twblue: #0070bb;
	--twblue-opaque: rgba(0, 112, 187, 0.1);
	--twblue-hover: #005a96;
	--twgray: #f1f1f1;

	/* 3rd Party */
	--twitter: #4099ff;
	--facebook: #3b5998;
	--instagram: #8a3ab9;
	--youtube: #ff0000;
	
/* 4. layout-and-grid */

	--container-width: 960px;
	--container-width-expanded: 1120px;
	--container-width-slim: 720px;
	--container-width-tablet: 640px;
	--col-padding: 20px;

	--max-width-desktop-lg: 1120px;
	--max-width-desktop: 1000px;
	--max-width-tablet: 680px;

	--section-extra-tb-padding: 115px;
	--section-extra-tb-padding-mobile: 115px;

	--section-tb-padding: 48px;
	--section-rl-padding: 48px;
	--section-tb-padding-mobile: 32px;
	--section-rl-padding-mobile: 24px;

	--cell-padding: 1rem 2rem;
	
/* 5. typography */

	--body-font: "Roboto", Helvetica, Arial, sans-serif;
	--action-font: "Roboto Condensed", Helvetica, Arial, sans-serif;
	--heading-font: "Fjalla One", Helvetica, Arial, sans-serif;
	--tw-font: Play, Arial, sans-serif;
	--alt-font: "Russo One", sans-serif;
	
/* 6. form-styles */

	--field-height: 44px;
	--placeholder-color: #c3cace;
	--field-border: #c3cace;
	--field-radius: 5px;
	--field-shadow: 0 2px 2px rgba(35, 40, 43, 0.15);

	--checkbox-size: 20px;
	--radio-check-size: 12px;
	--fancy-checkbox-size: 36px;
	
/* 7. buttons */

 --button-radius: 5px;
 --button-height: 44px;
 --button-shadow: 0 2px 2px rgba(35, 40, 43, 0.15);

 --buttongray-bottom: #c3cace;
 --buttongray-top: #d5dadd;

/* 8. social-share-links */

	--share-icon-size: 36px;
	
/* 9. info */
/* 10. fixes-buggy-things */
/* 11. header */

	--header-height: 70px;
	--header-height-mobile: 50px;
	--fixed-header-callout-height: 50px;
	
/* 12. footer */
/* 13. checkout */
/* 14. order summary */
/* 15. pricing plans */
/* 16. login */
/* 17. stripe payment */
	
}

/* 1. normalize */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, img,
ol, ul, li, form, label, table, tbody, tfoot, thead, tr, th, td,
article, aside, footer, header, menu, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: "Roboto", Helvetica, sans-serif;
	font-weight: 400;
	color: #222;
	line-height: 1;
}

a {
	text-decoration: none;
	background-color: transparent;
}
a:active,
a:hover {
	outline: 0;
}

img {
	border: 0;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.p0 {
    padding: 0 !important;
}

.p1 {
    padding: 1em !important;
}

/* 2. icons */

.before-symbol {
	padding-right: 5px;
	display: inline-block;
	transform: translateY(2px);
}

.after-symbol {
	padding-left: 5px;
	display: inline-block;
	transform: translateY(2px);
}

.icon {
	display: inline-block;
	width: 21px;
	height: 21px;
	transform: translateY(3px);
}

.shape-trophy {
	fill: #fff;
	margin-right: 5px;
}

.shape-facebook {
	fill: #3b5998;
	fill: var(--facebook);
}

.shape-twitter {
	fill: #4099ff;
	fill: var(--twitter);
}

.fill-white {
	fill: #fff;
}

.fill-blue {
	fill: #008cc3;
	fill: var(--blue);
}

.dollar-sign {
	display: inline-block;
	transform: translateY(-4px);
	font-size: 12px;
	//font-size: calc((12px / 16px) * 1rem);
}

.unicode-symbol {
	font-size: 20px;
	//font-size: calc((20px / 16px) * 1rem);
}

.headline-accent {
	margin: 20px 0;
}
h2 + .headline-accent {
	margin: -8px 0 20px 0;
}

.headline-accent .line-accent {
	display: inline-block;
	height: 6px;
	width: 85px;
	border-top: 2px solid #cccccc;
	border-bottom: 2px solid #cccccc;
}

.headline-accent svg {
	fill: #67767f;
	fill: var(--mdgray);
	display: inline-block;
	width: 21px;
	height: 21px;
	margin: 0 3px;
	transform: translateY(8px);
}
.headline-accent i {
	color: #67767f;
	color: var(--mdgray);
	font-size: 21px;
	//font-size: calc((21px / 16px) * 1rem);
	display: inline-block;
	width: 21px;
	height: 21px;
	margin: 0 3px;
	transform: translateY(8px);
}
.headline-accent.gold svg {
	fill: var(--ignite);
}
.headline-accent.gold i {
	color: var(--ignite);
}

.headline-accent .line-accent-text {
	color: #67767f;
	color: var(--mdgray);
	font-size: 21px;
	display: inline-block;
	margin: 0 10px;
	vertical-align: middle;
}


/* 3. colors */


/* 4. layout-and-grid */

html {
	background-color: #fff;
}

body,
html {
	margin: 0;
}
body.no-scroll,
html.no-scroll {
	overflow: hidden;
	height: 100vh;
}

header, main, section, footer, nav, div {
	width: 100%;
}

header.light, main.light, section.light, footer.light, nav.light, div.light {
	background: #f2f3f4;
	background: var(--light);
}
header.white, main.white, section.white, footer.white, nav.white, div.white {
	background: var(#fff);
}
header.gray, main.gray, section.gray, footer.gray, nav.gray, div.gray {
	background: #f1f1f1;
	background: var(--twgray);
}
header.blue, main.blue, section.blue, footer.blue, nav.blue, div.blue {
	background: #008cc3;
	background: var(--blue);
}
header.orange, main.orange, section.orange, footer.orange, nav.orange, div.orange {
	background: #e16428;
	background: var(--orange);
}
header.border-bottom, main.border-bottom, section.border-bottom, footer.border-bottom, nav.border-bottom, div.border-bottom {
	border-bottom: 1px solid #c3cace;
	border-bottom: 1px solid var(--grayborder);
}
header.border-top, main.border-top, section.border-top, footer.border-top, nav.border-top, div.border-top {
	border-top: 1px solid #c3cace;
	border-top: 1px solid var(--grayborder);
}
header.center-text, main.center-text, section.center-text, footer.center-text, nav.center-text, div.center-text {
	text-align: center;
}
header.knockout, main.knockout, section.knockout, footer.knockout, nav.knockout, div.knockout {
	color: #fff;
}
header.transparent, main.transparent, section.transparent, footer.transparent, nav.transparent, div.transparent {
	background: transparent;
}
.italic-text {
	font-style: italic;
}

.standard-padding {
	padding: 48px 24px;
	padding: var(--section-tb-padding) 24px;
}

.extra-pad-top {
	padding-top: 115px;
	padding-top: var(--section-extra-tb-padding);
}
	
.extra-pad-bottom {
	padding-bottom: 115px;
	padding-bottom: var(--section-extra-tb-padding);
}

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

.container {
	width: 100%;
	max-width: 960px;
	max-width: var(--container-width);
	margin: 0 auto;
}
.container.no-pad {
	padding: 0;
}
.container.no-max-width {
	max-width: none;
}

.flex-row {
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-row.full-height {
	height: 100%;
}

.flex-col,
.fixed-col {
	box-sizing: border-box;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%;
}

.fixed-col.col-one-fifth {
	-ms-flex-preferred-size: 20%;
	flex-basis: 20%;
	max-width: 20%;
}

.fixed-col.col-one-fourth {
	-ms-flex-preferred-size: 25%;
	flex-basis: 25%;
	max-width: 25%;
}

.fixed-col.col-one-third {
	-ms-flex-preferred-size: 33.33333%;
	flex-basis: 33.33333%;
	max-width: 33.33333%;
}

.fixed-col.col-two-fifths {
	-ms-flex-preferred-size: 40%;
	flex-basis: 40%;
	max-width: 40%;
}

.fixed-col.col-half {
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
	max-width: 50%;
}

.fixed-col.col-three-fifths {
	-ms-flex-preferred-size: 60%;
	flex-basis: 60%;
	max-width: 60%;
}

.fixed-col.col-two-thirds {
	-ms-flex-preferred-size: 66.66666%;
	flex-basis: 66.66666%;
	max-width: 66.66666%;
}

.fixed-col.col-three-fourths {
	-ms-flex-preferred-size: 75%;
	flex-basis: 75%;
	max-width: 75%;
}

.fixed-col.col-four-fifths {
	-ms-flex-preferred-size: 80%;
	flex-basis: 80%;
	max-width: 80%;
}

.fixed-col.col-full {
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%;
}

.top-xs {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

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

.bottom-xs {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

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


/* 5. typography */

body {
	font-family: "Roboto", Helvetica, Arial, sans-serif;
	font-family: var(--body-font);
	font-weight: 400;
	color: #222222;
	color: var(--black);
}

h1 {
	font-size: 48px;
	//font-size: calc((48px / 16px) * 1rem);
	font-family: "Fjalla One", Helvetica, Arial, sans-serif;
	font-family: var(--heading-font);
	line-height: 1.15;
	margin: 0 0 0.15em 0;
}
h1.ptwt-accent {
	font-family: "Roboto", Helvetica, Arial, sans-serif;
	font-family: var(--body-font);
	font-weight: 700;
	line-height: 1;
}

h1.ptwt-accent .accent-callout {
	display: inline-block;
	font-size: 150%;
	width: 100%;
}

h1.smaller {
	font-size: 48px;
	//font-size: calc((48px / 16px) * 1rem);
}

h2 {
	font-size: 36px;
	//font-size: calc((36px / 16px) * 1rem);
	font-family: "Fjalla One", Helvetica, Arial, sans-serif;
	font-family: var(--heading-font);
	font-weight: 500;
	line-height: 1.1;
	margin: 0 0 0.2em 0;
	text-transform: uppercase;
}

h3 {
	font-size: 24px;
	//font-size: calc((24px / 16px) * 1rem);
	font-family: "Fjalla One", Helvetica, Arial, sans-serif;
	font-family: var(--heading-font);
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 0.25em 0;
	color: #0070bb;
	color: var(--ltblue);
}

h3 + span.sub-header {
	color: #67767f;
	color: var(--mdgray);
	display: inline-block;
	line-height: 1.8;
	padding-left: 10px;
}

h3 + span.sub-header a {
	color: #0070bb;
	color: var(--twblue);
	font-size: 13px;
	//font-size: calc((13px / 16px) * 1rem);
	text-transform: uppercase;
}
h3 + span.sub-header a:hover,
h3 + span.sub-header a:focus {
	color: #005a96;
	color: var(--twblue-hover);
}

h4 {
	font-size: 20px;
	//font-size: calc((20px / 16px) * 1rem);
	font-weight: 500;
	line-height: 1.25;
	margin: 0 0 0.5em 0;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
h4.ptwt-tag {
	font-family: "Fjalla One", Helvetica, Arial, sans-serif;
	font-family: var(--heading-font);
	font-weight: 300;
	text-transform: lowercase;
}

h5 {
	font-size: 16px;
	//font-size: calc((16px / 16px) * 1rem);
	font-weight: 500;
	line-height: 1.15;
	margin: 0 0 1em 0;
	padding: 0 0 0.5em 5px;
	border-bottom: 1px solid #c3cace;
	border-bottom: 1px solid var(--grayborder);
}
h5.knockout {
	color: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

p, li {
	font-size: 16px;
	//font-size: calc((16px / 16px) * 1rem);
	font-weight: 400;
	line-height: 1.2;
}
p.smaller, li.smaller {
	font-size: 14px;
	//font-size: calc((14px / 16px) * 1rem);
}
p.intro, li.intro {
	font-size: 20px;
	//font-size: calc((20px / 16px) * 1rem);
	font-weight: 400;
}
p.intro-italic, li.intro-italic {
	font-size: 24px;
	//font-size: calc((24px / 16px) * 1rem);
	font-style: italic;
}
p.italic, li.italic {
	font-style: italic;
}
p.caption, li.caption {
	font-size: 12px;
	//font-size: calc((12px / 16px) * 1rem);
	font-style: italic;
	padding-top: 10px;
}

a {
	text-decoration: none;
}
a[onclick] {
	cursor: pointer
}
a.light {
	color: #fff;
}
a.light:hover {
	//color: shade(#fff, 20%);
	color: #ccc;
}

p a, span a, .inline-trigger {
	text-decoration: none;
	color: #008cc3;
	color: var(--blue);
}
p a:visited, span a:visited, .inline-trigger:visited {
	color: #008cc3;
	color: var(--blue);
}
p a:hover, span a:hover, .inline-trigger:hover,
p a:focus, span a:focus, .inline-trigger:focus {
	//color: shade(var(--blue), 50%);
	color: #004662;
}
p a.light, span a.light, .inline-trigger.light {
	color: #fff;
}
p a.light:hover, span a.light:hover, .inline-trigger.light:hover {
	//color: shade(#fff, 20%);
	color: #ccc;
}

p, ul {
	margin: 0 0 1.25em 0;
}

ul.text-list li {
	position: relative;
	margin: 0 0 7px 0;
	padding-left: 12px;
}
ul.text-list li:before {
	content: "";
	display: block;
	position: absolute;
	top: 8px;
	left: 0;
	width: 4px;
	height: 4px;
	background: #222222;
	background: var(--black);
	border-radius: 50%;
}

ol {
	list-style: decimal;
}

strong {
	font-weight: 500;
}

em {
	font-weight: 500;
	font-style: italic;
}

hr {
	width: 100%;
	height: 2px;
	border: 0;
	outline: 0;
	margin: 30px auto;
	background: #c3cace;
	background: var(--grayborder);
}
hr.light-hr {
	background: #f2f3f4;
	background: var(--light);
}

blockquote {
	display: inline-block;
	width: 100%;
	font-size: 24px;
	//font-size: calc((24px / 16px) * 1rem);
	font-family: "Fjalla One", Helvetica, Arial, sans-serif;
	font-family: var(--heading-font);
	font-weight: 300;
	line-height: 1.6;
	color: #222222;
	color: var(--black);
	padding: 10px 0 10px 24px;
	margin: 20px 0;
	border-left: 2px solid #008cc3;
	border-left: 2px solid var(--blue);
}
blockquote:before {
	content: "\201C";
	display: inline-block;
	height: 40px;
	width: 100%;
	color: #008cc3;
	color: var(--blue);
	font-size: 72px;
	//font-size: calc((72px / 16px) * 1rem);
	font-weight: 700;
	line-height: 1;
	overflow: hidden;
}


blockquote .caption {
	padding-left: 0;
}

span.mobile-only-text {
	display: inline;
}

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

span.desktop-only-text {
	display: inline;
}

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

br.mobile-break {
	display: none;
}

.mobile-center {
}

.alt-heading {
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	font-family: var(--action-font);
	text-transform: uppercase;
	font-size: 20px;
	//font-size: calc((20px / 16px) * 1rem);
}


/* 6. form-styles */

.field {
	position: relative;
	padding: 20px 0;
	text-align: left;
	overflow: visible;
}

.field.button-wrapper {
	margin: 0 0 1.25em 0;
	padding: 0;
}

.field.fifth-field {
	-ms-flex-preferred-size: 20%;
	flex-basis: 20%;
	max-width: 20%;
}

.field.two-fifth-field {
	-ms-flex-preferred-size: 40%;
	flex-basis: 40%;
	max-width: 40%;
}

.field.three-fifth-field {
	-ms-flex-preferred-size: 60%;
	flex-basis: 60%;
	max-width: 60%;
}

.field.four-fifth-field {
	-ms-flex-preferred-size: 80%;
	flex-basis: 80%;
	max-width: 80%;
}

.field.quarter-field {
	-ms-flex-preferred-size: 25%;
	flex-basis: 25%;
	max-width: 25%;
}

.field.three-quarter-field {
	-ms-flex-preferred-size: 75%;
	flex-basis: 75%;
	max-width: 75%;
}

.field.third-field {
	-ms-flex-preferred-size: 33.33333%;
	flex-basis: 33.33333%;
	max-width: 33.33333%;
}

.field.two-third-field {
	-ms-flex-preferred-size: 66.66666%;
	flex-basis: 66.66666%;
	max-width: 66.66666%;
}

.field.half-field {
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
	max-width: 50%;
}

.field.full-field {
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%;
}

.field.slim-field {
	padding: 0 0 10px 0;
}

.field.left-field {
	padding-right: 14px;
}

.field.center-field {
	padding-left: 14px;
	padding-right: 14px;
}

.field.center-field label,
.field.center-field .error {
	padding-left: 14px;
	padding-right: 14px;
}

.field.right-field label,
.field.right-field .error {
	padding-left: 14px;
	padding-right: 14px;
}

.field.pseudo-field-wrapper {
	height: 44px;
	height: var(--field-height);
	line-height: 44px;
	line-height: var(--field-height);
	padding: 0 12px;
	border: 1px solid #c3cace;
	border: 1px solid var(--field-border);
	background-color: #fbfbfc;
	background-color: var(--offwhite);
	border-radius: 5px;
	border-radius: var(--field-radius);
	box-shadow: 0 2px 2px rgba(35, 40, 43, 0.15);
	box-shadow: var(--field-shadow);
}

.field.right-field {
	padding-left: 14px;
}

.field.right-field label,
.field.right-field .error {
	padding-left: 14px;
}

.field .submit-loading {
	display: none;
	position: absolute;
	left: 20px;
	top: 24px;
	color: #fff;
}
.field .submit-loading.enabled {
	display: block;
}

.field label {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	padding-top: 0;
	text-align: left;
	color: #67767f;
	color: var(--mdgray);
	font-size: 13px;
	//font-size: calc((13px / 16px) * 1rem);
}

.field label a {
	color: #008cc3;
	color: var(--blue);
}

.input-symbol {
	position: absolute;
	top: 12px;
	left: 12px;
	color: #67767f;
	color: var(--mdgray);
	font-size: 20px;
	//font-size: calc((20px / 16px) * 1rem);
}

input, label, select {
	width: 100%;
	-webkit-appearance: none;
}

input[type="text"],
input[type="url"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="password"],
select,
textarea {
	height: 44px;
	height: var(--field-height);
	padding: 0 8px;
	border: 1px solid #c3cace;
	border: 1px solid var(--field-border);
	background-color: #fbfbfc;
	background-color: var(--offwhite);
	font-size: 16px;
	//font-size: calc((16px / 16px) * 1rem);
	font-weight: 500;
	border-radius: 5px;
	border-radius: var(--field-radius);
	box-shadow: 0 2px 2px rgba(35, 40, 43, 0.15);
	box-shadow: var(--field-shadow);
	transition: all 0.2s;
}
input[type="text"]:hover,
input[type="url"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
input[type="date"]:hover,
input[type="password"]:hover,
select:hover,
textarea:hover {
	border: 1px solid #67767f;
	border: 1px solid var(--mdgray);
}
input[type="text"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
	background-color: #fff;
	border: 2px solid #008cc3;
	border: 2px solid var(--blue);
	outline: 0;
}
input[type="text"]:focus + label,
input[type="url"]:focus + label,
input[type="email"]:focus + label,
input[type="tel"]:focus + label,
input[type="number"]:focus + label,
input[type="date"]:focus + label,
input[type="password"]:focus + label,
select:focus + label,
textarea:focus + label {
	color: #008cc3;
	color: var(--blue);
}
input[type="text"].symbol-placeholder-input,
input[type="url"].symbol-placeholder-input,
input[type="email"].symbol-placeholder-input,
input[type="tel"].symbol-placeholder-input,
input[type="number"].symbol-placeholder-input,
input[type="date"].symbol-placeholder-input,
input[type="password"].symbol-placeholder-input,
select.symbol-placeholder-input,
textarea.symbol-placeholder-input {
	padding-left: 36px;
}

input[type="text"],
input[type="url"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="password"],
textarea {
	box-shadow: 0 2px 2px rgba(35, 40, 43, 0.15);
	box-shadow: var(--field-shadow);
}

select {
	width: 100%;
	padding-right: 20px;
	background-repeat: no-repeat;
	background-position: 97.5% center;
	background-image: url("../images/icon-dropdown_default.svg");
	background-size: 12px;
	box-shadow: 0 2px 2px rgba(35, 40, 43, 0.15);
	box-shadow: var(--field-shadow);
}

select::-ms-expand {
	display: none;
}

textarea {
	padding: 8px;
	width: 100%;
	height: 72px;
	line-height: 1.5;
}

::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #c3cace;
	color: var(--placeholder-color);
}
::-moz-placeholder {
	/* Firefox 19+ */
	color: #c3cace;
	color: var(--placeholder-color);
}
:-ms-input-placeholder {
	/* IE 10+ */
	color: #c3cace;
	color: var(--placeholder-color);
}
:-moz-placeholder {
	/* Firefox 18- */
	color: #c3cace;
	color: var(--placeholder-color);
}

input[type="radio"].main__input,
input[type="checkbox"].main__input {
	position: absolute;
	top: 30px;
	width: initial;
	opacity: 0;
	z-index: -1;
}

.checkbox-label {
	display: inline-block;
	position: relative;
	height: 44px;
	height: var(--field-height);
	width: auto;
	line-height: 44px;
	line-height: var(--field-height);
	padding-left: 30px;
	margin-top: 20px;
	font-size: 14px;
	//font-size: calc((14px / 16px) * 1rem);
	text-transform: none;
	cursor: pointer;
}

input[type="checkbox"].main__input + .plan .checkbox-label:after,
input[type="checkbox"].main__input + .checkbox-label:after {
	content: "\e91b";
	content: var(--icon-checkmark-small);
	border-radius: 5px;
	border-radius: var(--field-radius);
}

input[type="radio"].main__input + .plan .checkbox-label:after,
input[type="radio"].main__input + .checkbox-label:after {
	content: "";
	border-radius: 50%;
}

.checkbox-label:after {
	display: block;
	position: absolute;
	left: 0;
	width: 20px;
	width: var(--checkbox-size);
	height: 20px;
	height: var(--checkbox-size);
	font-size: 12px;
	background-color: #fbfbfc;
	background-color: var(--offwhite);
	color: #fbfbfc;
	color: var(--offwhite);
	border: 1px solid #c3cace;
	border: 1px solid var(--field-border);
	box-shadow: 0 2px 2px rgba(35, 40, 43, 0.15);
	box-shadow: var(--field-shadow);
	z-index: 1;
	cursor: pointer;
	transition: all 0.2s;
	text-align: center;
	font-family: "twIconSet" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 20px;
	line-height: var(--checkbox-size);
}

.checkbox-label a {
	color: #008cc3;
	color: var(--blue);
	font-weight: 500;
}

input[type="radio"].main__input:checked + .plan {
	border: 5px solid var(--ignite);
	opacity: 1;
}

input[type="checkbox"].main__input:checked + .plan .checkbox-label:after
input[type="checkbox"].main__input:checked + .checkbox-label:after {
	border: 1px solid #008cc3;
	border: 1px solid var(--blue);
	background-color: #008cc3;
	background-color: var(--blue);
	color: #fff;
}

input[type="radio"].main__input:checked + .plan .checkbox-label:before,
input[type="radio"].main__input:checked + .checkbox-label:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	margin: 5px;
	width: 12px;
	width: var(--radio-check-size);
	height: 12px;
	height: var(--radio-check-size);
	font-size: 12px;
	background-color: #008cc3;
	background-color: var(--blue);
	color: #fbfbfc;
	color: var(--offwhite);
	border-radius: 50%;
	z-index: 2;
}
input[type="radio"].main__input:checked + .plan .gold.checkbox-label:before,
input[type="radio"].main__input:checked + .gold.checkbox-label:before {
	background-color: var(--ignite);
}

span.fancy-checkbox-wrapper {
	position: relative;
	display: inline-block;
	padding-bottom: 3px;
	overflow: hidden;
}

.underage-error-block {
	display: none;
	position: relative;
	height: 100px;
}

.fancy-checkbox-label {
	display: inline-block;
	position: relative;
	height: 36px;
	height: var(--fancy-checkbox-size);
	line-height: 36px;
	line-height: var(--fancy-checkbox-size);
	padding: 0 20px 0 30px;
	font-size: 14px;
	//font-size: calc((14px / 16px) * 1rem);
	font-weight: 500;
	color: #67767f;
	color: var(--mdgray);
	background: #f2f3f4;
	background: var(--light);
	border-radius: 5px;
	border-radius: var(--field-radius);
	box-shadow: 0 2px 2px rgba(35, 40, 43, 0.15);
	box-shadow: var(--field-shadow);
	cursor: pointer;
	transition: all 0.2s;
}

.fancy-checkbox-label:after {
	content: "\e91b";
	content: var(--icon-checkmark-small);
	display: block;
	position: absolute;
	top: 50%;
	left: 12px;
	width: 12px;
	height: 12px;
	background-color: #fbfbfc;
	background-color: var(--offwhite);
	border: 0;
	font-size: 12px;
	color: #fbfbfc;
	color: var(--offwhite);
	border-radius: 50%;
	z-index: 1;
	transition: all 0.2s;
	text-align: center;
	transform: translateY(-50%);
	line-height: 12px;
}
.fancy-checkbox-label:hover {
	background: #d5dadd;
	background: var(--ltgray);
}
.fancy-checkbox-label:after {
	background-color: #fff;
	color: #fff;
}

input[type="checkbox"].main__input:checked + .fancy-checkbox-label,
input[type="radio"].main__input:checked + .fancy-checkbox-label {
	background: #008cc3;
	background: var(--blue);
	color: #fff;
}
input[type="checkbox"].main__input:checked + .fancy-checkbox-label:after,
input[type="radio"].main__input:checked + .fancy-checkbox-label:after {
	background: #008cc3;
	background: var(--blue);
	color: #fff;
}

.error-message {
	display: inline-block;
	position: absolute;
	left: 0px;
	top: 100%;
	margin-top: -20px;
	font-size: 14px;
	//font-size: calc((14px / 16px) * 1rem);
	color: #ea322f;
	color: var(--red);
	transform: translate(0, -10px);
	-webkit-transform: translate(0, -10px);
	z-index: -1;
	opacity: 0;
	transition: all 0.3s ease-out;
	padding-left: inherit;
	padding-right: inherit;
}
.button-wrapper .error-message {
	margin-top: 0;
}

.error-message:empty {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
}

.error-message.error-message-center {
	text-align: center;
	width: 100%;
}

.error-message.error-message-right {
	right: 0;
	left: auto;
	padding-left: 6px;
}

.error-message a {
	color: var(--red) !important;
	text-decoration: underline;
}
.error-message a:hover,
.error-message a:focus,
.error-message a:active  {
	color: var(--red);
}

.no-position {
    position: unset !important;
}

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

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

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

.field.error {
}

.field.error .error-message {
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	opacity: 1;
	z-index: 1;
}
.field.error .error-message.submit-error {
	font-size: 12px;
	//font-size: calc((12px / 16px) * 1rem);
	line-height: 18px;
}

.field.error input:focus + label,
.field.error select:focus + label,
.field.error textarea:focus + label,
.field.error label {
	color: #ea322f;
	color: var(--red);
}
.field.error label:after {
	color: #ea322f;
	color: var(--red);
}

.field.error input[type="text"],
.field.error input[type="number"],
.field.error input[type="email"],
.field.error input[type="tel"],
.field.error input[type="date"],
.field.error .upload-field,
.field.error input[type="url"],
.field.error input[type="password"],
.field.error textarea {
	border: 1px solid #ea322f;
	border: 1px solid var(--red);
	color: #ea322f;
	color: var(--red);
}
.field.error input[type="text"]:hover,
.field.error input[type="text"]:focus,
.field.error input[type="number"]:hover,
.field.error input[type="number"]:focus,
.field.error input[type="email"]:hover,
.field.error input[type="email"]:focus,
.field.error input[type="tel"]:hover,
.field.error input[type="tel"]:focus,
.field.error input[type="date"]:hover,
.field.error input[type="date"]:focus,
.field.error .upload-field:hover,
.field.error .upload-field:focus,
.field.error input[type="url"]:hover,
.field.error input[type="url"]:focus,
.field.error input[type="password"]:hover,
.field.error input[type="password"]:focus,
.field.error textarea:hover,
.field.error textarea:focus {
	border: 2px solid #ea322f;
	border: 2px solid var(--red);
	color: #ea322f;
	color: var(--red);
}

.field.error select {
	border: 2px solid #ea322f;
	border: 2px solid var(--red);
	background-image: url("../images/icon-dropdown_error.svg");
}
.field.error select:hover,
.field.error select:focus {
	border: 2px solid #ea322f;
	border: 2px solid var(--red);
}

.review {
	margin: 10px 0;
}

.review .field {
	padding: 8px 0;
	color: #67767f;
	color: var(--mdgray);
	font-size: 13px;
	//font-size: calc((13px / 16px) * 1rem);
	text-transform: uppercase;
}

.review .field a {
	color: #0070bb;
	color: var(--ltblue);
}

.review .field span {
	font-size: 16px;
	//font-size: calc((16px / 16px) * 1rem);
	font-weight: 600;
	color: #222222;
	color: var(--black);
	padding-left: 10px;
	text-transform: initial;
}


/* 7. buttons */

.header-button {
	display: block;
	float: right;
	height: 70px;
	border: 0;
	border-radius: 0;
	text-transform: uppercase;
	box-shadow: none;
	text-align: center;
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	font-family: var(--action-font);
	font-size: 14px;
	//font-size: calc((14px / 16px) * 1rem);
	width: auto;
	cursor: pointer;
	color: #fff;
	font-weight: 600;
	padding: 0 1em;
	background: #0070bb;
	background: var(--twblue);
}

.header-button.gold {
	background: var(--ignite); /* Old browsers */
	background: -moz-linear-gradient(top, #cbb93d 0%, #b8992c 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #cbb93d 0%, #b8992c 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #cbb93d 0%, #b8992c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(
		startColorstr='#cbb93d',
		endColorstr='#b8992c',
		GradientType=0
	); /* IE6-9 */
}
.header-button.gold:hover {
	background: var(--ignite); /* Old browsers */
	background: -moz-linear-gradient(top, #b8992c 0%, #b8992c 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #b8992c 0%, #b8992c 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #b8992c 0%, #b8992c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(
		startColorstr='#b8992c',
		endColorstr='#b8992c',
		GradientType=0
	); /* IE6-9 */
}

.header-button.share {
	background: #fff;
	border-left: 2px solid #f2f3f4;
	border-left: 2px solid var(--light);
}

.header-button.share:hover {
	//color: shade(var(--twblue), 20%);
	color: #005a96;
	color: var(--twblue-hover);
}

.icon {
	width: 19px;
	height: 19px;
}

input[type="submit"],
input[type="button"],
button,
.button {
	display: inline-block;
	height: 44px;
	height: var(--button-height);
	width: 100%;
	line-height: 44px;
	line-height: var(--button-height);
	padding: 0 1.5rem;
	font-size: 16px;
	//font-size: calc((16px / 16px) * 1rem);
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff;
	border-radius: 5px;
	border-radius: var(--button-radius);
	box-shadow: 0 2px 2px rgba(35, 40, 43, 0.15);
	box-shadow: var(--button-shadow);
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	font-family: var(--action-font);
	transition: all 0.2s;
	-webkit-appearance: none;
	cursor: pointer;
	background: var(--ignite); /* Old browsers */
	background: -moz-linear-gradient(top, #cbb93d 0%, #b8992c 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #cbb93d 0%, #b8992c 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #cbb93d 0%, #b8992c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(
		startColorstr='#cbb93d',
		endColorstr='#b8992c',
		GradientType=0
	); /* IE6-9 */
}
input[type="submit"]:focus,
input[type="button"]:focus,
button:focus,
.button:focus {
	outline: 0;
}
input[type="submit"].full-width,
input[type="button"].full-width,
button.full-width,
.button.full-width {
	width: 100%;
	max-width: 100%;
}
input[type="submit"].blue-button,
input[type="button"].blue-button,
button.blue-button,
.button.blue-button {
	background: #0070bb;
	background: var(--twblue);
	color: #fff;
}
input[type="submit"].blue-button:hover,
input[type="button"].blue-button:hover,
button.blue-button:hover,
.button.blue-button:hover {
	//background: shade(var(--twblue), 20%);
	background: #005a96;
	background: var(--twblue-hover);
}
input[type="submit"].gray-button,
input[type="button"].gray-button,
button.gray-button,
.button.gray-button {
	background: #67767f;
	background: var(--mdgray);
	color: #fff;
}
input[type="submit"].gray-button:hover,
input[type="button"].gray-button:hover,
button.gray-button:hover,
.button.gray-button:hover {
	//background: shade(var(--mdgray), 20%);
	background: #515c63;
	background: var(--dkgray);
}
input[type="submit"].orange-button,
input[type="button"].orange-button,
button.orange-button,
.button.orange-button {
	background: #ff8246;
	background: var(--ltorange);
	color: #fff;
}
input[type="submit"].orange-button:hover,
input[type="button"].orange-button:hover,
button.orange-button:hover,
.button.orange-button:hover {
	//background: shade(var(--orange), 20%);
	background: #e16428;
	background: var(--orange);
}
input[type="submit"].extended,
input[type="button"].extended,
button.extended,
.button.extended {
	max-width: 280px;
}
input[type="submit"].small-button,
input[type="button"].small-button,
button.small-button,
.button.small-button {
	height: 35px;
	line-height: 35px;
	width: 140px;
	padding: 0 10px;
	font-size: 12px;
	//font-size: calc((12px / 16px) * 1rem);
}
input[type="submit"].small-button:before,
input[type="button"].small-button:before,
button.small-button:before,
.button.small-button:before {
	margin-right: 4px;
	font-size: 15px;
}
input[type="submit"]:disabled,
input[type="button"]:disabled,
button:disabled,
.button:disabled,
input[type="submit"].disabled-button,
input[type="button"].disabled-button,
button.disabled-button,
.button.disabled-button {
	border: 1px solid #c3cace;
	border: 1px solid var(--buttongray-bottom);
	background: #d5dadd;
	background: var(--buttongray-top);
	background: -moz-linear-gradient(top, #d5dadd 1%, #c3cace 100%);
	background: -moz-linear-gradient(top, var(--buttongray-top) 1%, var(--buttongray-bottom) 100%);
	background: -webkit-linear-gradient(top, #d5dadd 1%, #c3cace 100%);
	background: -webkit-linear-gradient(top, var(--buttongray-top) 1%, var(--buttongray-bottom) 100%);
	background: linear-gradient(to bottom, #d5dadd 1%, #c3cace 100%);
	background: linear-gradient(to bottom, var(--buttongray-top) 1%, var(--buttongray-bottom) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
		startColorstr='#d5dadd',
		endColorstr='#c3cace',
		GradientType=0
	);
	filter: progid:DXImageTransform.Microsoft.gradient(
		startColorstr='var(--buttongray-top)',
		endColorstr='var(--buttongray-bottom)',
		GradientType=0
	);
	opacity: 0.6;
	pointer-events: none;
}

button.secondary-cta,
.button.secondary-cta {
	background: transparent;
	max-width: 220px;
	border: 0;
	color: #008cc3;
	color: var(--blue);
	box-shadow: none;
}

button.secondary-cta:after,
.button.secondary-cta:after {
	content: "\e90e";
	display: inline-block;
	margin-left: 5px;
	line-height: 1;
	transform: rotate(-90deg) translateX(-2px);
	font-family: "twIconSet" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

button.secondary-cta:hover,
.button.secondary-cta:hover,
button.secondary-cta:focus,
.button.secondary-cta:focus {
	//color: shade(var(--blue), 20%);
	color: #00709c;
}

button.secondary-cta.light,
.button.secondary-cta.light {
	color: #fff;
}

button.secondary-cta.focus,
.button.secondary-cta.focus,
button.secondary-cta.hover,
.button.secondary-cta.hover {
	color: #f2f3f4;
	color: var(--light);
}

button.secondary-cta.left-align,
.button.secondary-cta.left-align {
	text-align: left;
	padding-left: 0;
}

button.secondary-cta.right-align,
.button.secondary-cta.right-align {
	text-align: right;
	padding-right: 0;
}

button.secondary-cta.extended,
.button.secondary-cta.extended {
	max-width: 100%;
}


/* 8. social-share-links */

.share-element {
	display: inline-block;
	padding-right: 2px;
}

.share-identifier {
	font-size: 13px;
	//font-size: calc((13px / 16px) * 1rem);
	text-transform: uppercase;
	color: #222222;
	color: var(--black);
	font-weight: 600;
	padding-left: 30px;
	border-left: 2px solid #f2f3f4;
	border-left: 2px solid var(--light);
}

.social-button {
	font-size: 20px;
	transition: all 0.2s;
	padding: 0 3px;
}

.social-button.facebook svg {
	fill: #3b5998;
	fill: var(--facebook);
}
.social-button.facebook i {
	color: #3b5998;
	color: var(--facebook);
}
.social-button.facebook:hover svg,
.social-button.facebook:focus svg {
	//fill: shade(var(--facebook), 20%);
	fill: #2f477a;
}
.social-button.facebook:hover i,
.social-button.facebook:focus i {
	//color: shade(var(--facebook), 20%);
	color: #2f477a;
}

.social-button.twitter svg {
	fill: #4099ff;
	fill: var(--twitter);
}
.social-button.twitter i {
	color: #4099ff;
	color: var(--twitter);
}
.social-button.twitter:hover svg,
.social-button.twitter:focus svg {
	//fill: shade(var(--twitter), 20%);
	fill: #337acc;
}
.social-button.twitter:hover i,
.social-button.twitter:focus i {
	//color: shade(var(--twitter), 20%);
	color: #337acc;
}

.social-button:hover,
.social-button:focus {
	color: #fff;
}


/* 9. info */

.go-back {
	text-align: left;
}

.go-back a {
	padding: 5px 0;
	margin-bottom: 5px;
	color: #67767f;
	color: var(--mdgray);
	display: inline-block;
}
.go-back:hover a {
	color: #515c63;
	color: var(--dkgray);
}


/* 10. fixes-buggy-things */


/* 11. header */

.tw-header {
	position: relative;
	width: 100%;
	height: 70px;
	height: var(--header-height);
	line-height: 70px;
	line-height: var(--header-height);
	background: #fff;
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
	z-index: 10;
}

.tw-header .header-wrapper-inner {
	padding-left: 25px;
	height: 100%;
}

.tw-header .header-logo-column {
	display: block;
	-ms-flex-preferred-size: 160px;
	flex-basis: 300px;
	max-width: 300px;
	transition: opacity 0.2s;
}

.tw-header .header-logo-column img {
	display: block;
	width: 100%;
}
.tw-header .header-logo-column :hover img {
	opacity: 0.8;
}

.tw-header .header-share-column {
	text-align: right;
	-ms-flex-preferred-size: calc(100% - 300px);
	flex-basis: calc(100% - 300px);
	max-width: calc(100% - 300px);
}

.tw-header-fixed-callout {
	position: absolute;
	left: 0;
	top: 70px;
	top: var(--header-height);
	height: 50px;
	height: var(--fixed-header-callout-height);
	line-height: 50px;
	line-height: var(--fixed-header-callout-height);
	width: 100%;
	display: block;
	background: #0070bb;
	background: var(--twblue);
	color: #fff;
	z-index: 10;
	transition: background 0.25s;
}

.tw-header-fixed-callout:hover {
	//background: shade(var(--twblue), 10%);
	background: #0065a8;
}

.tw-header-fixed-callout.fixed {
	position: fixed;
	top: 0;
}

.tw-header-fixed-callout .flex-row {
	height: 100%;
	text-align: center;
}

.tw-header-fixed-callout .callout-text {
	display: block;
	margin: 0 auto;
	font-size: 14px;
	//font-size: calc((14px / 16px) * 1rem);
}

.tw-header-fixed-callout .alt-heading {
	font-family: "Fjalla One", Helvetica, Arial, sans-serif;
	font-family: var(--heading-font);
	font-weight: normal;
	padding: 0 3px;
}

.tw-header-fixed-callout .unicode-symbol {
	padding-left: 5px;
}


/* 12. footer */

.tw-footer {
	background-color: #222222;
	background-color: var(--black);
	background-size: cover;
	color: #fff;
}

.tw-footer .footer-legal {
	//padding-top: 30px;
}

.tw-footer .button {
	margin-bottom: 15px;
}

.tw-footer .footer-logo {
	display: inline-block;
	transition: opacity 0.2s;
}

.tw-footer .footer-logo img {
	max-width: 208px;
	width: 100%;
	margin: 0 auto;
}

.tw-footer .footer-logo:hover img {
	opacity: 0.8;
}

.tw-footer p,
.tw-footer .footer-logo {
	padding-bottom: 30px;
}

.tw-footer-cta-wrapper {
	position: absolute;
	left: 0;
	bottom: -80px;
	width: 100%;
}

.tw-footer-cta-wrapper .tw-footer-cta {
	background: #fff;
	height: 140px;
	padding: 0 60px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.tw-footer-cta-wrapper p {
	margin: 0;
	font-style: italic;
}

/* 13. checkout */

.checkout-container {
	max-width: 75%;
	margin: 0 auto;
	text-align: center;
}

.checkout-container .checkout-header {
	padding-bottom: 20px;
}

.checkout-container label {
	text-transform: uppercase;
}

.checkout-container .field {
}

.checkout-container .field a {
	color: #0070bb;
	color: var(--ltblue);
}

.checkout-container .field span {
	font-size: 16px;
	//font-size: calc((16px / 16px) * 1rem);
	font-weight: 600;
	color: #222222;
	color: var(--black);
	padding-left: 10px;
	text-transform: initial;
}

section {
	position: relative;
	margin: 2rem 0;
}

section h3 {
	display: inline-block;
}
        
section .payment-iframe-wrapper {
	position: relative;
	overflow: hidden;
}

section .payment-iframe-wrapper .payment-iframe,
section .payment-iframe-wrapper iframe {
	width: 100%;
	//height: 775px;
}


/* 14. order summary */

.order-summary-frame {
}

.order-summary {
	background-color: #fff;
	max-width: 100%;
	height: auto;
	padding: 20px;
	margin: 10px auto;
	max-width: 290px;
}

.order-summary .order-summary-option {
	font-size: 18px;
	//font-size: calc((18px / 16px) * 1rem);
	margin-bottom: 10px;
	font-family: "Roboto", Helvetica, Arial, sans-serif;
	font-family: var(--body-font);
	font-weight: 700;
}

.order-summary .annual-fee {
	height: 50px;
	max-width: 100%;
	padding: 15px;
	margin: 5px 0;
	color: #0070bb;
	color: var(--ltblue);
	background-color: rgba(0, 112, 187, 0.1);
	background-color: var(--twblue-opaque);
	font-size: 24px;
	//font-size: calc((24px / 16px) * 1rem);
	font-weight: 600;
	text-align: center;
}

.order-summary .order-summary-item {	
	font-size: 12px;
	//font-size: calc((12px / 16px) * 1rem);
	text-transform: uppercase;
	font-weight: 600;
}

.order-summary .order-summary-item .order-summary-item-title {
	font-weight: initial;
	text-align: left;
}

.order-summary .order-summary-item .order-summary-item-value {
	text-align: right;
}

.order-summary p {
	font-size: 14px;
	//font-size: calc((14px / 16px) * 1rem);
	font-style: italic;
	margin: 10px 0 0 0;
	font-weight: 600;
}

.order-summary .order-summary-item {
	margin-bottom: 5px;
}	

.refund-policy {
	display: table;
	table-layout: fixed;
	width: 100%;
	margin: 10px 0;
	font-size: 14px;
}
.refund-policy > div {
	display: table-cell;
}
.refund-policy > div:first-child {
	width: 10%;
}
.refund-policy > div:last-child {
	width: 90%;
}

.refund-policy input[type="checkbox"] {
	position: initial;
	top: initial;
	width: initial;
	opacity: initial;
	z-index: initial;
	-webkit-appearance: checkbox;
}

.refund-policy a {
	color: #0070bb;
	color: var(--twblue);
}
.refund-policy a:hover {
	color: #005a96;
	color: var(--twblue-hover);
}


/* 15. pricing plans */

.pricing {
	overflow: hidden;
}

.tw-pricing-plans {
	text-align: center;
	background: transparent;
	border-spacing: 0;
	border-collapse: collapse;
	width: 100%;
}

.tw-pricing-plans tbody {
	background: #fff;
}
.tw-pricing-plans tbody:nth-child(n+2) tr {
	border-top-width: 0;
}

.tw-pricing-plans tr {
	border: 1px solid #c3cace;
	border: 1px solid var(--grayborder);
}
.tw-pricing-plans tr:nth-child(n+2) {
	border-top-width: 0;
}

.tw-pricing-plans td {
}
.tw-pricing-plans td:nth-child(n+2) {
	border-left: 1px solid #c3cace;
	border-left: 1px solid var(--grayborder);
}

.features .feature.sub-feature .feature-cell {
	font-size: .9em;
	margin-left: 1em;
}

.features {
	display: none;
}

.features tr:nth-child(even) td {
	background: #f2f3f4;
	background: var(--light);
}

.view-features .toggle-features {
	color: var(--ignite);
}
.view-features .toggle-features:hover {
	color: var(--ignite);
}

.view-features .toggle-features i,
.view-features .toggle-features span {
	vertical-align: middle;
	margin: 0 .5em;
}

.view-features .toggle-features i.icon-arrow_d {
	display: initial;
}
.view-features .toggle-features.active i.icon-arrow_d {
	display: none;
}
.view-features .toggle-features i.icon-arrow_u {
	display: none;
}
.view-features .toggle-features.active i.icon-arrow_u {
	display: initial;
}

.view-features td,
.features .feature td {
	padding: 1rem 2rem;
	padding: var(--cell-padding);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-cell {
	text-align: left;
	justify-content: left;
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.feature-cell dl {
	position: relative;
	margin: 0;
}

.feature-cell dt {
	cursor: default;
	z-index: 0;
}

.feature-cell dd {
	display: block;
	z-index: 0;
	position: absolute;
	padding: 10px;
	background: #fff;
	border: 1px solid #c3cace;
	border: 1px solid var(--grayborder);
	border-radius: 2px;
	box-shadow: 0 2px 2px rgba(35, 40, 43, 0.15);
	box-shadow: var(--field-shadow);
	max-width: 320px;
	width: max-content;
	opacity: 0;
	-webkit-transition: opacity .2s;
		 -moz-transition: opacity .2s;
			-ms-transition: opacity .2s;
					transition: opacity .2s;
}
.feature-cell dt:hover + dd {
	z-index: 1;
	opacity: 1;
}

.feature .supported {
	color: #00a846;
	color: var(--green);
}
.feature .not-supported {
	color: #d5dadd;
	color: var(--ltgray);
}

.plan-container {
	position: relative;
}

.features tr td.plan-container {
	background: #fff;
}
.plan-container:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-container:nth-child(1) h2 {
	color: #67767f;
	color: var(--mdgray);
	margin: 0;
	padding: 1rem 2rem;
	padding: var(--cell-padding);
}

.plan {
	padding: 20px;
	padding: var(--col-padding);
	border: 5px solid transparent;
	opacity: .75;
	transition: all 0.2s;
	height: 100%;
}
.plan:hover {
	opacity: 1;
}

.plus-plan {
}

.gold-plan {
}

.plan label.plan-label {
	cursor: pointer;
}

.plan h2 {
}

.plan .price {
	margin: 20px 0;
	color: var(--ignite);
	font-size: 48px;
	//font-size: calc((48px / 16px) * 1rem);
	font-weight: 600;
	white-space: nowrap;
	font-style: italic;
}

.plan .price .total::before {
	content: attr(data-subtotal);
	font-size: .65em;
	color: #67767f;
	color: var(--mdgray);
	font-weight: initial;
	text-decoration: line-through;
	display: block;
	margin: 0 0 .5rem 0;
}

.plan .price .total .currency {
	font-size: .65em;
	line-height: .5;
	vertical-align: 100%;
}

.plan .price .cycle {
	font-size: .5em;
	line-height: 1.3;
	letter-spacing: normal;
	margin-left: .25rem;
}


/* 16. login */

.login-container {
	max-width: 415px;
	margin: 0 auto;
	text-align: center;
}

.login-container .login-header {
	padding-bottom: 20px;
}

.login-container label {
text-transform: uppercase;
}

.login-container .create-account {
	padding-top: 15px;
	text-align: center;
	font-style: italic;
}

.login-container .forgotten-password {
	margin-top: -10px;
	padding: 0 0 10px 0;
	font-style: italic;
}

/* 17. stripe payment */
.StripeElement {
	height: 44px;
	height: var(--field-height);
	padding: 10px 8px;
	border: 1px solid #c3cace;
	border: 1px solid var(--field-border);
	background-color: #fbfbfc;
	background-color: var(--offwhite);
	font-size: 16px;
	font-weight: 500;
	border-radius: 5px;
	border-radius: var(--field-radius);
	box-shadow: 0 2px 2px rgba(35, 40, 43, 0.15);
	box-shadow: var(--field-shadow);
	transition: all 0.2s;
}

.StripeElement.invalid {
	border-color: #ea322f;
	border-color: var(--red);
	color: #ea322f;
	color: var(--red);
}

.StripeElement.invalid + label {
	color: #ea322f;
	color: var(--red);
}

.StripeElement.invalid:after {
	/*color: var(--red);*/
}

.StripeElement.focused {
	box-shadow: 0 1px 3px 0 #cfd7df;
	background-color: #fff;
	border: 2px solid #008cc3 !important;
	border: 2px solid var(--blue) !important;
	color: #008cc3;
	color: var(--blue);
	outline: 0;
}

.StripeElement.focused + label {
	color: #008cc3 !important;
	color: var(--blue)  !important;
}

.StripElement.hover {
	box-shadow: 0 1px 3px 0 #cfd7df;
	border: 1px solid #67767f;
	border: 1px solid var(--mdgray);
}

.StripeElement--webkit-autofill {
	background-color: #fefde5 !important;
}


/* desktop-large */
@media all and (min-width: 1321px) {

/* 1. normalize */
/* 2. icons */
/* 3. colors */
/* 4. layout-and-grid */
	
	.container {
		//max-width: var(--max-width-desktop-lg);
	}
	
/* 5. typography */
/* 6. form-styles */
/* 7. buttons */
/* 8. social-share-links */
/* 9. info */
/* 10. fixes-buggy-things */
/* 11. header */
/* 12. footer */
/* 13. checkout */
/* 14. order summary */
/* 15. pricing plans */
/* 16. login */
/* 17. stripe payment */

}

/* desktop-small */
@media all and (min-width: 901px) and (max-width: 1320px) {

/* 1. normalize */
/* 2. icons */
/* 3. colors */
/* 4. layout-and-grid */
/* 5. typography */
/* 6. form-styles */
/* 7. buttons */
/* 8. social-share-links */
/* 9. info */
/* 10. fixes-buggy-things */
/* 11. header */
/* 12. footer */

	.tw-footer-cta-wrapper {
		max-width: 90%;
	}
	
/* 13. checkout */
/* 14. order summary */
/* 15. pricing plans */
/* 16. login */
/* 17. stripe payment */
	
}

/* desktop */
@media all and (min-width: 1025px) {

/* 1. normalize */
/* 2. icons */
/* 3. colors */
/* 4. layout-and-grid */
/* 5. typography */
/* 6. form-styles */
/* 7. buttons */
/* 8. social-share-links */
/* 9. info */
/* 10. fixes-buggy-things */
/* 11. header */
/* 12. footer */
/* 13. checkout */
/* 14. order summary */
/* 15. pricing plans */
/* 16. login */
/* 17. stripe payment */
	
}

/* tablet */
@media all and (min-width: 767px) and (max-width: 1024px) {

/* 1. normalize */
/* 2. icons */
/* 3. colors */
/* 4. layout-and-grid */
/* 5. typography */
/* 6. form-styles */
/* 7. buttons */
/* 8. social-share-links */
/* 9. info */
/* 10. fixes-buggy-things */
/* 11. header */
/* 12. footer */
/* 13. checkout */
/* 14. order summary */
/* 17. stripe payment */
	
}

/* tablet-small */
@media all and (max-width: 766px) {

/* 1. normalize */
/* 2. icons */
/* 3. colors */
/* 4. layout-and-grid */
/* 5. typography */
/* 6. form-styles */
/* 7. buttons */
/* 8. social-share-links */
/* 9. info */
/* 10. fixes-buggy-things */
/* 11. header */
/* 12. footer */
/* 13. checkout */
/* 14. order summary */
/* 15. pricing plans */
/* 16. login */
/* 17. stripe payment */
	
}

/* form-flip */
@media all and (max-width: 767px) {

/* 1. normalize */
/* 2. icons */
/* 3. colors */
/* 4. layout-and-grid */
/* 5. typography */
/* 6. form-styles */

	.field.fifth-field,
	.field.two-fifth-field,
	.field.three-fifth-field,
	.field.four-fifth-field,
	.field.quarter-field,
	.field.three-quarter-field,
	.field.third-field,
	.field.two-third-field,
	.field.half-field {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	
	.field.left-field {
		padding-right: 0;
	}

	.field.center-field {
		padding-left: 0;
		padding-right: 0;
	}
	
	.field.right-field {
		padding-left: 0;
	}
	
	.field.right-field label,
	.field.right-field .error {
		padding-left: 0;
	}
	
/* 7. buttons */
/* 8. social-share-links */
/* 9. info */
/* 10. fixes-buggy-things */
/* 11. header */
/* 12. footer */
/* 13. checkout */
/* 14. order summary */
/* 15. pricing plans */
/* 16. login */
/* 17. stripe payment */
	
}

/* not-mobile */
@media all and (min-width: 561px) {

/* 1. normalize */
/* 2. icons */
/* 3. colors */
/* 4. layout-and-grid */
/* 5. typography */
/* 6. form-styles */

	span.fancy-checkbox-wrapper:not(:last-of-type) {
		margin-right: 5px;
	}
	
/* 7. buttons */

	input[type="submit"],
	input[type="button"],
	button,
	.button {
		max-width: 280px;
	}
	
/* 8. social-share-links */
/* 9. info */
/* 10. fixes-buggy-things */
/* 11. header */
/* 12. footer */
/* 13. checkout */
/* 14. order summary */
/* 15. pricing plans */
/* 16. login */
/* 17. stripe payment */
	
}

/* mobile */
@media all and (max-width: 560px) {

/* 1. normalize */
/* 2. icons */

	.headline-accent .line-accent {
		width: 60px;
	}
	
/* 3. colors */
/* 4. layout-and-grid */

	.standard-padding {
		padding: 32px 24px;
		padding: var(--section-tb-padding-mobile) var(--section-rl-padding-mobile);
	}

	.extra-pad-top {
		padding-top: 115px;
		padding-top: var(--section-extra-tb-padding-mobile);
	}

	.extra-pad-bottom {
		padding-bottom: 115px;
		padding-bottom: var(--section-extra-tb-padding-mobile);
	}

/* 5. typography */

	h1 {
		font-size: 32px;
		//font-size: calc((32px / 16px) * 1rem);
		margin: 0 0 10px 0;
	}
	h1.ptwt-accent {
		font-size: 32px;
		//font-size: calc((32px / 16px) * 1rem);
	}
	h1.smaller {
		font-size: 32px;
		//font-size: calc((32px / 16px) * 1rem);
	}
	
	h2 {
		font-size: 24px;
		//font-size: calc((24px / 16px) * 1rem);
	}
	
	h3 {
		font-size: 18px;
		//font-size: calc((18px / 16px) * 1rem);
	}
	
	h4 {
		font-size: 15px;
		//font-size: calc((15px / 16px) * 1rem);
	}
	
	h5 {
		font-size: 15px;
		//font-size: calc((15px / 16px) * 1rem);
	}
	
	p, li {
		font-size: 15px;
		//font-size: calc((15px / 16px) * 1rem);
	}
	p.smaller, li.smaller {
		font-size: 13px;
		//font-size: calc((13px / 16px) * 1rem);
	}
	p.caption, li.caption {
		font-size: 11px;
		//font-size: calc((11px / 16px) * 1rem);
	}
	
	hr {
		margin: 24px auto;
	}
	
	blockquote {
		font-size: 19px;
		//font-size: calc((19px / 16px) * 1rem);
		padding: 10px 0 10px 16px;
	}

	br.mobile-break {
		display: block;
	}

	.mobile-center {
		text-align: center;
	}
	
/* 5. typography */
/* 6. form-styles */
    
	input[type="text"],
	input[type="url"],
	input[type="email"],
	input[type="tel"],
	input[type="number"],
	input[type="date"],
	input[type="password"],
	select,
	textarea {
		font-size: 16px;
		//font-size: calc((16px / 16px) * 1rem);
	}
	
	span.fancy-checkbox-wrapper {
		margin: 1%;
		width: 47%;
	}
	
	.error-message.error-message-right {
		padding-left: 0;
	}

/* 7. buttons */

	input[type="submit"],
	input[type="button"],
	button,
	.button {
		max-width: 330px;
	}
	
	input[type="submit"].extended,
	input[type="button"].extended,
	button.extended,
	.button.extended {
		max-width: 330px;
	}
	
	input[type="submit"].mobile-full,
	input[type="button"].mobile-full,
	button.mobile-full,
	.button.mobile-full {
		width: 100%;
		max-width: 100%;
	}

	input[type="submit"].mobile-small-text,
	input[type="button"].mobile-small-text,
	button.mobile-small-text,
	.button.mobile-small-text {
		font-size: 14px;
		//font-size: calc((14px / 16px) * 1rem);
	}

	button.secondary-cta,
	.button.secondary-cta {
		font-size: 14px;
		//font-size: calc((14px / 16px) * 1rem);
	}
	
/* 8. social-share-links */
/* 9. info */
/* 10. fixes-buggy-things */
/* 11. header */

	.tw-header .header-wrapper-inner {
		padding-left: 15px;
	}
	
	.tw-header-fixed-callout .callout-text {
		font-size: 13px;
		//font-size: calc((13px / 16px) * 1rem);
	}
	
	.tw-header-fixed-callout .alt-heading {
		font-size: 18px;
		//font-size: calc((18px / 16px) * 1rem);
	}
	
/* 12. footer */
/* 13. checkout */
/* 14. order summary */
/* 15. pricing plans */

	.plan .price .total {
		font-size: .85em;
		font-size: 8vw;
	}

/* 16. login */
/* 17. stripe payment */

}

/* mobile-medium */
@media all and (max-width: 480px) {

/* 1. normalize */
/* 2. icons */
/* 3. colors */
/* 4. layout-and-grid */
/* 5. typography */

	p.intro, li.intro {
		font-size: 16px;
		//font-size: calc((16px / 16px) * 1rem);
	}
	
	p.intro-italic, li.intro-italic {
		font-size: 18px;
		//font-size: calc((18px / 16px) * 1rem);
	}
	
/* 6. form-styles */
/* 7. buttons */

	input[type="submit"].mobile-small-text,
	input[type="button"].mobile-small-text,
	button.mobile-small-text,
	.button.mobile-small-text {
		font-size: 13px;
		//font-size: calc((13px / 16px) * 1rem);
	}
	
/* 8. social-share-links */
/* 9. info */
/* 10. fixes-buggy-things */
/* 11. header */
/* 12. footer */
/* 13. checkout */
/* 14. order summary */
/* 15. pricing plans */
/* 16. login */
/* 17. stripe payment */
	
}

/* mobile-small */
@media all and (max-width: 360px) {

/* 1. normalize */
/* 2. icons */
/* 3. colors */
/* 4. layout-and-grid */
/* 5. typography */
/* 6. form-styles */
/* 7. buttons */
/* 8. social-share-links */
/* 9. info */
/* 10. fixes-buggy-things */
/* 11. header */
/* 12. footer */
/* 13. checkout */
/* 14. order summary */
/* 15. pricing plans */
/* 16. login */
/* 17. stripe payment */
	
}

/* landscape */
@media all and (min-width: 901px) {

/* 1. normalize */
/* 2. icons */
/* 3. colors */
/* 4. layout-and-grid */

	.container {
		max-width: 1000px;
		max-width: var(--max-width-desktop);
	}
	
	.flex-col.col-one-fifth {
		-ms-flex-preferred-size: 20%;
		flex-basis: 20%;
		max-width: 20%;
	}
	
	.flex-col.col-one-fourth {
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%;
	}
	
	.flex-col.col-one-third {
		-ms-flex-preferred-size: 33.33333%;
		flex-basis: 33.33333%;
		max-width: 33.33333%;
	}
	
	.flex-col.col-two-fifths {
		-ms-flex-preferred-size: 40%;
		flex-basis: 40%;
		max-width: 40%;
	}
	
	.flex-col.col-half {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}
	
	.flex-col.col-three-fifths {
		-ms-flex-preferred-size: 60%;
		flex-basis: 60%;
		max-width: 60%;
	}
	
	.flex-col.col-two-thirds {
		-ms-flex-preferred-size: 66.6666%;
		flex-basis: 66.6666%;
		max-width: 66.6666%;
	}
	
	.flex-col.col-three-fourths {
		-ms-flex-preferred-size: 75%;
		flex-basis: 75%;
		max-width: 75%;
	}
	
	.flex-col.col-four-fifths {
		-ms-flex-preferred-size: 80%;
		flex-basis: 80%;
		max-width: 80%;
	}
	
	.flex-col.col-full {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	
	.fixed-col.padded-left,
	.flex-col.padded-left {
		padding: 0 0 0 20px;
		padding: 0 0 0 var(--col-padding);
	}
	
	.fixed-col.padded-right,
	.flex-col.padded-right {
		padding: 0 20px 0 0;
		padding: 0 var(--col-padding) 0 0;
	}
	
/* 5. typography */

	span.mobile-only-text {
		display: none;
	}
	
	.mobile-only {
		display: none;
	}
	
/* 6. form-styles */
/* 7. buttons */

	.header-button.share {
		display: none;
	}

	.header-button {
		margin-left: 15px;
	}
	
/* 8. social-share-links */
/* 9. info */
/* 10. fixes-buggy-things */
/* 11. header */
/* 12. footer */
/* 13. checkout */
/* 14. order summary */
/* 15. pricing plans */
/* 16. login */
/* 17. stripe payment */
	
}

/* vertical */
@media all and (max-width: 900px) {

/* 1. normalize */
/* 2. icons */
/* 3. colors */
/* 4. layout-and-grid */

	.container {
		max-width: 640px;
		max-width: var(--container-width-tablet);
	}

	.flex-col.mobile-col-half {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}
	
/* 5. typography */

	h1 {
		font-size: 50px;
		//font-size: calc((50px / 16px) * 1rem);
	}
	h1.ptwt-accent {
		font-size: 48px;
		//font-size: calc((48px / 16px) * 1rem);
	}
	h1.smaller {
		font-size: 40px;
		//font-size: calc((40px / 16px) * 1rem);
	}
	
	span.desktop-only-text {
		display: none;
	}
	
	.desktop-only {
		display: none;
	}
	
/* 6. form-styles */

	.review .reivew-group {
		margin-bottom: 32px;
	}
	
	.discounts .discounts-container,
	.discounts .order-summary-container {
		margin: 0 auto;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
	}
	
	.discounts .order-summary-container .order-summary {
		max-width: 415px;
	}

/* 7. buttons */

	.header-button {
		float: none;
		display: inline-block;
		height: 51px;
		line-height: 51px;
	}

	.header-button {
		max-width: 100px;
	}
	
/* 8. social-share-links */

	.share-identifier {
		display: none;
	}
	
	.social-button {
		display: none;
	}
	
/* 9. info */
/* 10. fixes-buggy-things */
/* 11. header */

	.tw-header {
		height: 50px;
		height: var(--header-height-mobile);
		line-height: 50px;
		line-height: var(--header-height-mobile);
	}
	
	.tw-header .header-logo-column {
		-ms-flex-preferred-size: 190px;
		flex-basis: 190px;
		max-width: 190px;
	}
	
	.tw-header .header-share-column {
		-ms-flex-preferred-size: calc(100% - 190px);
		flex-basis: calc(100% - 190px);
		max-width: calc(100% - 190px);
	}
	
	.tw-header-fixed-callout {
		top: 50px;
		top: var(--header-height-mobile);
	}
	
/* 12. footer */
	
	.tw-footer-cta-wrapper {
		height: 190px;
		text-align: center;
		padding: 15px 40px;
		max-width: 90%;
	}
	
/* 13. checkout */
/* 14. order summary */
/* 15. pricing plans */

	.prices td:nth-child(1) {
		border-bottom: 1px solid #c3cace;
		border-bottom: 1px solid var(--grayborder);
	}
	
	.tw-pricing-plans td:nth-child(2) {
		border-left-width: 0;
	}
	
	.tw-pricing-plans td:nth-child(n+3) {
		border-left: 1px solid #c3cace;
		border-left: 1px solid var(--grayborder);
	}
	
	.feature td:nth-child(1) {
		text-align: center;
	}
	
	.features tr.feature td {
		border-left-width: 0;
	}
	
	.feature-cell {
		text-align: center;
		justify-content: center;
		font-size: 90%;
		font-weight: 700;
		color: #67767f;
		color: var(--mdgray);
	}

/* 16. login */
/* 17. stripe payment */

}