/* IE/Edge Responsive Viewport */
@-ms-viewport {
  width: device-width;
}

/* Offer Expired Resets */
.offer-expired {
  background: url("https://www.awai.com/_img/toolbox/icons/icon_important-60.png") no-repeat center 15px, linear-gradient(#d00, #800);
  border: 0 none;
  border-radius: 0;
  box-shadow: 0 0 0.5em 0.1em #bbb;
  margin: 0 auto;
  padding: 80px 16px 16px;
  text-align: center;
  width: auto;
  min-height: 0;
}

:root {
  /* Base */
  --colorBody: #333333;
  --colorBg: #fff;
  /* Headline */
  --colorHeadline: #0070c0;
  --colorSubhead: #9a7428;
  /* Bullet Colors */
  --color1Bullet: #019900;
  --color2Bullet: #822bfa;
  /* Boxes & Quotes*/
  --colorBox1: #9fecff;
  --colorBox2: #c7ff8f;
  --colorBox3: #fff29f;
  /*  Colors Sets */
  --color1: #9fecff;
  --color1Alt: #1cbce4;
  --color1Bg: #daf4fb;
  --color1BgAlt: #e3effe;
  --color2: #80e980;
  --color2Alt: #bcff83;
  --color2Bg: #cbf99c;
  --color2BgAlt: #ecffec;
  --color3: #fff29f;
  --color3Alt: #f9e66f;
  --color3Bg: #fff29f;
  --color3BgAlt: #ffffe2;
  /* Highlighters */
  --highlight1: #e5edfa;
  --highlight1Brdr: #c6d8f8;
  --highlight2: #faedff;
  --highlight2Brdr: #e195fc;
  --highlight3: #fffdcc;
  --highlight3Brdr: #f1ee9c;
  --highlight4: #e8f5cd;
  --highlight4Brdr: #d1e99a;
  /* Footer */
  --footer: #999;
  --footerBg: #232323;
  /* BREAKPOINTS*/
}


/* General Rules */
/*****************/

html {
  font-size: 100%;
}

body {
  color: var(--colorBody);
  font-size: 1.33rem;
  line-height: 1.5;
  font-family: "Lato", Helvetica, Verdana, sans-serif;
}



@media screen and (min-width:38em) {
  /*Desktop*/


  .content ul {
    margin: 0 3em;
  }
}

/* Layout Rules & Framing */
/**************************/

.content {
  /* AWAI Content Area Reset*/
  margin: 0 auto;
  padding: 0;
}

.container {
  padding: 0 10px
}

@media screen and (min-width:38em) {


  /*Desktop*/
  .container {
    margin: auto;
    max-width: 33em;
  }

  /*Desktop*/
  .container.-header {
    margin: auto;
    max-width: 40em;
    padding: 0 0 10px;
  }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--headline);
  font-family: "Lato", Helvetica, Verdana, sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.h1,
h1 {
  font-size: 2.33rem;
}

.content .h2,
h2 {
  color: var(--colorSubhead);
  font-size: 2.2rem;
  margin: 3rem 0 1rem;
  text-align: center;
}

@media screen and (min-width:26.5em) {

  /*Mobile*/
  h1 {
    font-size: 3rem;
  }

  .content h2,
  h2 {

    font-size: 1.9rem;
    line-height: 1.1;
    padding: 0 0 5px;
  }
}

@media screen and (min-width:38em) {

  /*Desktop*/

  .h2,
  .content h2 {
    font-size: 2.33rem;
    letter-spacing: -0.5px;
  }

}

/* FontAwesome UL Bullets */

ul.fa-ez {
  margin: 0 2em 0 2em;
}

ul.fa-ez li {
  list-style: none;
}

ul.fa-ez li:before {
  font-family: 'FontAwesome';
  float: left;
}

ul.fa-ez li:before {
  /*DEFAULT - CHECKMARK */
  content: '\f00c';
  /*checks*/
  font-size: 1.3rem;
  margin-left: -1.75rem;
  margin-top: -0rem;
  color: var(--color1Bullet);
}

ul.fa-ez.-strike li:before {
  /*EXTRA - STRKE X */
  content: '\f057';
  /*checks*/
  font-size: 1.5rem;
  margin-left: -2.2rem;
  margin-top: 0;
  color: #990000;
}

ul.fa-ez.-grass li:before {
  color: #23a248 !important;
}



ul.fa-ez.-bullet li:before {
  /* EXTRA - ASTERISK */
  content: '\f111';
  /*asterisk*/
  font-size: 0.95rem;
  margin-left: -1.75rem;
  margin-top: 0.4rem;
  color: var(--color1Bullet);
}
ul.fa-ez.-asterisk li:before {
  /* EXTRA - ASTERISK */
  content: '\f069';
  /*asterisk*/
  font-size: 1.1rem;
  margin-left: -1.75rem;
  margin-top: 0.3rem;
  color: var(--color1Bullet);
}

ul.fa-ez.-gifts li:before {
  /* EXTRA - GIFTBOX */
  content: '\f06b';
  /*asterisk*/
  font-size: 1.5rem;
  margin-left: -1.35rem;
  margin-top: -0.05rem;
  color: var(--color1Bullet);
}

ul.fa-ez li {
  list-style-image: none;
}

@media screen and (min-width:33em) {

  ul.fa-ez {
    margin: 0 2em 0 3em;
  }
}

/* inline Highlight styles*/

.highlight {
  background-color: var(--highlight1);
  border-bottom: 2px solid var(--highlight1Brdr);
  display: inline-block;
  padding: 0 5px;
}

.highlight.-style2 {
  background-color: var(--highlight2);
  border-bottom: 2px solid var(--highlight2Brdr);
  display: inline-block;
}

.highlight.-style3 {
  background-color: var(--highlight3);
  border-bottom: 2px solid var(--highlight3Brdr);
  display: inline-block;
}

.highlight.-style4 {
  background-color: var(--highlight4);
  border-bottom: 2px solid var(--highlight4Brdr);
  display: inline-block;
}


/* General Images */
img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 0
}

/* Reset default browser values */

figure.flavor,
figure.primary {
  margin: 0 10px;
  padding: 0;
}

figure.primary img {
  display: block;
  width: 380px;
  margin: auto;
}

figure.-border img {
  border: 1px solid #ededed;
}

figure.-shadow img {
  box-shadow: 0 12px 16px -16px #666;

}

.-left,
.-right {
  float: none;
}

@media screen and (min-width:38em) {

  /*Desktop*/

  figure,
  figure.flavor,
  figure.primary,
  figure.spread {
    margin: 0 20px;
    padding: 0;
  }

  figure.flavor img {
    display: block;
    margin: 0 auto;
    padding: 0;
  }

  figure.primary {
    width: auto;
    margin: 0 auto 1em;
  }

  figure.spread {
    width: auto;
    margin: 0 auto;
  }

  figure.primary img {
    border-radius: 8px;
    display: block;
    margin: 0 auto 1em;
    width: auto;
  }

  figure.spread img {

    display: block;
    margin: 0 auto;
    width: auto;
  }

  figure.-border img {
    border: 8px solid #ededed;


  }

  .-left {
    float: right;
    margin: 0 16px 16px 0;
    max-width: 300px;
  }

  .-right {
    float: right;
    margin: 0 0 16px 16px;
    max-width: 260px;

  }
}

@media screen and (min-width:55em) {
  figure.primary.-oversize {
    /*makes Image wider than content*/
    width: auto;
    margin: 0 -30px 1em;
    overflow: visible;
  }

  figure.spread {
    /*makes Image wider than content*/
    width: auto;
    margin: 0 -100px;
    overflow: visible;
  }

  figure.-border img {
    border: 12px solid #ededed;
  }
}

/** Portrait Styles **/
.portrait {
  margin: 1em auto;
}

.portraitImage {
  /*img must be 1:1 square*/
  border: 8px solid #f4f4f4;
  border-radius: 50%;
  display: block;
  margin: auto;
  max-width: 220px;
}

.portraitCaption {
  display: none;
  /* Hidden for Mobile*/

  font-family: "Lato", Helvetica, Verdana, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
}

.-title {
  display: block;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width:38em) {

  .portrait {
    float: right;
    margin: 0 0 1em 1em;
    max-width: 250px;
    width: 250px;
  }

  .portraitCaption {
    display: block;

  }
}

/** Testimonial Styles **/
.testimonial {
  color: #444444;
  font-weight: 500;
}

.testimonial.-title {
  font-size: 1.1;
  font-weight: bold;
  text-align: center;
}

.testimonial.-inline {
  display: block;
  background-color: var(--colorBox1);
  border-radius: 12px;
  font-family: "Lato", Helvetica, Verdana, sans-serif;

  font-weight: 400;
  padding: 15px 20px 15px;
  margin: 10px 15px 15px;
}

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

/** Section/Block Styles **/

/** Banner/Ribbon **/
.banner {
  background-color: #052955;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
}

.banner .container {
  max-width: 22em;
  padding: 15px 20px;
}

/** MAIN HEADER  **/
.header {

  background-color: #fff6e3;
  background-image: linear-gradient(#fff6e3, #fcf2dc);
  border-bottom: 6px solid #fcf2dc;
  /* background-image: linear-gradient(#e8f3ff, #fff); */
  padding: 20px 10px 10px;
}

/* Header Background Image*/
/* 
.header:after {
  content: "";
  background-color: transparent;
  background-image: url(/_img/toolbox/p/gho/arc.svg);
  background-position: center;
  background-repeat: none;
  background-size: cover;
  display: block;
  height: 60px;
  margin: -30px 0 -95px;
  z-index: 9;
  text-align: center;
}
*/



.headerPreHeadline {
  color: #990000;
  background-color: #f8e7c2;
  border:1px solid #f9e1ac;
  border-radius: 8px;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  margin: 0 auto 20px;
  padding: 8px 12px 10px;
  text-align: center;


}


.headerHeadline {
  color: var(--colorHeadline);

  font-size: 3rem;
  letter-spacing: -1.1px;
  line-height: 1.1em;
  margin: 15px 0 20px;
  padding: 10px 0 0;
  /*text-shadow: 00px 00px 90px #ffffff88;*/
}

.headerHeadline .-line {
  display: block;
  line-height: 1;
  margin: 0 0 0.5em;
}

.headerHeadline .-eyebrow {
  color: #333;
  display: block;
  font-size: 80%;
}

.headerHeadline .-chin {
  font-size: 100%;
}

.headerPostHeadline {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.15;
  padding: 10px 0 10px;
  text-align: center;
  text-shadow: 00px 00px 50px #ffffff55;

}

.leadHeadline {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 20px 0 40px;
  text-align: center;
}


@media screen and (min-width:38em) {

  /*Desktop*/

  .headerPreHeadline {
    font-size: 2.5rem;
    letter-spacing: -1px;
    line-height: 1;
    padding:  10px 10px;
    margin: 0 auto 30px;
    max-width: 15em;
  }

  .headerHeadline {
    font-size: 3.5rem;
    letter-spacing: -1px;
    line-height: 1;
    margin: 20px 0;
    padding: 0;
  }

  .headerHeadline .-eyebrow {
    display: block;
    font-size: 80%;
    line-height: 1.05;
  }

  .headerPostHeadline {
    font-size: 2.5rem;
    line-height: 1.2;


  }

  .headerList {
    display: block;
    font-size: 1.66rem;
    margin: 0 auto;
    width: 30em;
  }

  .headerList ul {

    margin: 40px 0 0 100px;
  }

  .headerList ul li {
    line-height: 1.25;
  }

  .headerList ul.asterisk li:before {

    font-size: 1.4rem;
    margin-left: -2rem;
    margin-top: 0.2rem;
    color: var(--color2Bullet);
  }

  .leadHeadline {
    font-size: 1.8rem;
    margin: 30px 0 0;
  }

  h2.spreadSubhead {
    font-size: 4.5rem;
    margin: 0 0 25px;
    padding: 0;
    text-align: center;
  }

}


/* General Text Enhancements*/
/***************************/

.-eyebrow,
.-chin {
  /* small text eyebrows for HXs*/
  display: block;
  font-size: .85em;
}

/* "From the Desk of" banner */
.desk {
  color: var(--colorBody);
  border-top: 3px solid var(--color2);
  border-bottom: 3px solid var(--color2);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1em;
  margin: 0 0 32px;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (min-width:26.5em) {

  /*Mobile*/
  .desk {
    font-size: 1.25rem;
  }


}

.line-strike {
  line-height: 1em;
  position: relative;
  text-decoration: none;
}

.line-strike::after {
  border-bottom: 0.3em solid #d11414d7;
  content: "";
  left: 0;
  margin-top: calc(0.3em / 2 * -1);
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(-20deg);

}

.underscore {
  display: inline-block;
  border-bottom: 3px solid var(--highlight1Brdr);
  padding: 0 2px 1px;
  margin: -10px 0 0;
}

/** Lead Styles **/
/* This section immediately follows the header */
.lead {
  padding-top: 10px;
}



/** Section Base Styles **/
/* Colored Sections -- Spacing & Colors */
.section {
  /*no change from base*/
  margin: 0;
  padding: 0;
}

.section.-bonus {
  background-color: #f3f3f3;
  padding: 1px 0 70px;
}

/*******************/
/** CTA/Button Styles **/
.cta.-eyebrow {
  font-size: 1.2em;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
}

.cta.-button {
  background: #fea815;
  border: 5px solid #fea815;
  border-radius: 10px;
  color: #fff;
  display: block;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 auto;
  max-width: 300px;
  padding: 10px 20px 16px;
  transition: all 200ms ease-out;
  text-align: center;
}

:link.cta.-button,
:visited.cta.-button {
  color: #fff;
}

:hover.cta.-button,
:active.cta.-button {
  background: #fea815;
  border: 5px solid #ffd48a;
  color: #fff;
  box-shadow: 0 6px 10px -7px #333;
  text-shadow: 0 0 25px #fff;

  box-shadow: 0 8px 6px -5px #333;
  text-shadow: 0px 0px 25px #fff;
}

@media screen and (min-width:38em) {


  /*Desktop*/
  .cta.-button {
    font-size: 1.7rem;
  }
}

footer {
  color: #ccc;
  background-color: #444;
  font-size: .75em;
  line-height: 1.25em;
  margin-top: 40px;
  padding: 30px 0;
  text-align: center;
}

footer a:link,
footer a:visited {
  color: #66c9f2
}

footer a:hover,
footer a:active {
  color: #ffb810;
}





/** MODULES **/

.moduleItem {
  background: #f4f4f4;
  margin-top: 100px;
  margin-bottom: -100px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.moduleTitle {
  font-size: 1.5em;
  line-height: 1.1;
  color: #333;
  text-align: center;
}

.moduleLabel {
  background-color: #aaa;
  border: 25px solid #bbb;
  color: #fff;
  border-radius: 100px;
  font-size: 1.75rem;
  font-weight: bold;
  max-width: 250px;
  margin: -150px auto 10px;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (min-width:48em) {

  /*Tablet*/
  .moduleLabel {
    margin: -150px auto -30px;

  }

  .moduleTitle {
    font-size: 1.7em;
    margin: 30px 0 20px;

  }

}

.moduleItem.-set1 {
  background-color: var(--color1Bg);
}

.moduleItem.-set1 .moduleLabel {
  border-color: var(--color1Bg);
  background-color: var(--color1Alt);
}

.moduleItem.-set2 {
  background-color: var(--color2Bg);
}

.moduleItem.-set2 .moduleLabel {
  border-color: var(--color2Bg);
  background-color: var(--color2Alt);
}



.moduleItem.-set3 {
  background-color: var(--color3Bg);
}

.moduleItem.-set3 .moduleLabel {
  border-color: var(--color3Bg);
  background-color: var(--color3Alt);
}

.moduleItem.-set4 {
  background-color: var(--color2Bg);
}

.moduleItem.-set4 .moduleLabel {
  border-color: var(--color2Bg);
  background-color: var(--color2Alt);
}

.moduleItem.-last {
  margin-bottom: 0;
  padding-bottom: 50px;
}

.callout {
  background-color: var(--color1Bg);
  border-radius: 12px;
  margin: 20px 20px 30px;
  padding: 0 20px 10px;
}

.callout.-shadow {
  box-shadow: 1px 5px 10px rgba(0, 0, 0, .3);

}

.callout.-right {
  float: none;
}

.callout>* {
  margin-top: 0
}

.callout.-example {
  background-color: #f5f5f5;
  border-top: 5px solid #ddd;
  border-bottom: 5px solid #ddd;
  border-right: 4px solid #fff;
  border-left: 4px solid #fff;
  font-family: 'courier-prime', sans-serif;
  font-size: 1.33rem;
}

.callout.-style1 {
  border: 12px solid #e7f3fb;
  border-radius: 12px;
}

.callout.-important {
  background-color: rgb(253, 231, 231);
  padding: 10px 20px 10px;


}

.callout.-email {
  background-color: #f2f2f2;
  font-family: monospace;
  font-size: 1.2rem;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

.-email ul.fa-ez.bullet li:before {
  /* EXTRA - BULLET */
  content: '\f111';
  /*bullet*/
  font-size: 0.2rem;
  margin-left: -1.5rem;
  margin-top: 0;
  color: var(--color1);
}

.calloutLabel {
  border-bottom: 3px solid var(--color1);
  font-size: 1.5rem;
  margin: 10px auto 20px;
}



/****/

.callout.-testimonial {
  background-color: var(--colorBox1);
  border-radius: 20px;
  font-family: "Lato", Helvetica, Verdana, sans-serif;
  font-size: 85%;
  margin: 2em auto;
  line-height: 1.4;
  padding: 20px 20px 20px;
  max-width: 28em;
  color: #000;
}


.callout.-testimonial .cited {
  font-style: normal;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/*.callout.-testimonial p:first-child:before {

  content: '\f10d';
  display: block;
  line-height: 1;
  font-family: FontAwesome;
  line-height: 1.2;
  font-size: 3rem;
  color: #7b2de9;
  text-align: center;
  margin: -1.25em auto 0.5em;
}
*/

/****/








@media screen and (min-width:26.5em) {
  /*Mobile*/

  .callout {
    margin: 15px 20px 30px;
    padding: 25px 20px;
  }

  .calloutLabel {
    font-size: 1.6rem;
    margin: 10px auto 20px;
  }

  .callout.-email {
    font-size: 1.33rem;
  }

  .callout.-right {
    float: right;
    max-width: 16em;
    margin: 0 0 20px 25px;

  }
}


/** MODULES **/

.tabcardItem {
  /*background: var(--color1Bg) url(https://www.awai.com/_img/toolbox/p/gho/wave-white.svg) bottom center no-repeat;*/
  background-color: #f5f1fb;
  border-radius: 12px;
  margin: 70px auto 0;
  padding: 100px 20px 20px;
  max-width: 30em;
}

.tabcardItem.-shadow {
  box-shadow: 0 12px 12px -12px #555;
}


.tabcardLabel {
  background-color: #7b2de9;
  /*border: 8px solid var(--color1Bg);*/
  border-radius: 100px;
  color: var(--colorBody);
  font-size: 1.25rem;
  font-weight: bold;
  font-family: "courier-prime", monospace;

  max-width: 300px;
  margin: -120px auto 15px;
  padding: 5px 0;
  text-align: center;
  text-transform: uppercase;
}

.tabcardTitle {
  font-family: "Lato", Helvetica, Verdana, sans-serif;

  font-size: 1.25rem;
  line-height: 1.1;
  color: #333;
  text-align: center;
}

@media screen and (min-width:38em) {
  .tabcardItem {
    margin: 60px auto 0;
    padding: 100px 20px 20px;
  }

  .tabcardItem.-bonus {
    max-width: 36em;
    margin: 70px -50px 0;
    overflow: visible;
  }

  .tabcardLabel {
    /*border: 20px solid var(--color1Bg);*/
    border-radius: 5px;
    font-size: 2rem;
    margin: -135px auto -15px;
    padding: 10px 20px;

  }

  .tabcardTitle {
    font-size: 1.5rem;
    margin: 40px 0 20px;

  }

}


.tabcardItem.-set1 {
  background-color: var(--color2Bg);

}

.tabcardItem.-set1 .tabcardLabel {
  border-color: var(--color2);
  background-color: var(--color2);
}

.tabcardItem.-set1 .-testimonial {
  background-color: var(--color2BgAlt);
}

.tabcardItem.-set2 {
  background-color: var(--color3Bg);

}

.tabcardItem.-set2 .tabcardLabel {
  border-color: var(--color3);
  background-color: var(--color3Alt);
}

.tabcardItem.-set2 .-testimonial {
  background-color: var(--color3BgAlt);
}

.tabcardItem.-last {
  margin-bottom: 0;
  padding-bottom: 50px;
}


/* Artificial Break */
.alb {
  display: none;
}

.no-mo,
.-nomo {
  display: none;
}

.mblock {
  display: block;
}

@media screen and (min-width:38em) {


  /*Desktop*/
  .mblock {
    display: inline;
  }

  .no-mo,
  .-nomo {
    display: initial;
  }

  .alb {
    display: block
  }
}

.subhead-icon {
  display: block;
  font-size: 2em;
  margin: auto;
}

/* Basic Colors */

.-color1 {
  color: var(--color1);
}

/* Color Sets*/
.-colorSet1 {
  color: var(--colorBody);
  background-color: var(--color1Bg);
  padding: 1px 0 20px 0;
}

.-colorSet1Alt {
  color: var(--colorBody);
  background-color: var(--color1BgAlt);
  padding: 1px 0 20px 0;
}

.-colorSet2 {
  color: var(--colorBody);
  background-color: var(--color2Bg);
  padding: 1px 0 20px 0;
}

.-colorSet2 h2 {
  color: var(--colorBody);
}

.guar {
  /* remove all below for template*/
  display: block;
  margin: 0 auto 2em;
  max-width: 320px;

}

.guar.-right {
  float: none;
}

@media screen and (min-width:38em) {

  /*Desktop*/

  .guar {
    max-width: 600px;

  }

  .guar.-right {
    float: right;
    margin: 0 0 .8em .8em;
    max-width: 300px;


  }
}





/** OLD or UNVERIFIED **/

.section-fees {
  background-color: #d4ecff;
}

.section-fees .wrap {
  max-width: 46.25em;
  margin: 0 auto;
}

.fee-list {
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fee-list-item {
  box-sizing: border-box;
  padding: 0 0.5em;
  width: 50%;
}

.fee-list-fee {
  /*background-color: #f7bc3c;*/
  background-color: #dace40;
  border-radius: 0.5em;
  color: #fff;
  display: block;
  font-size: 1em;
  font-weight: bold;
  margin: 1em auto 0.5em;
  max-width: 10em;
  padding: 8px;
}

.fee-list-item img {
  border-radius: 0.5em;
  width: 80%;
}

.fee-list-copy {
  font-size: 0.9em;
  margin: 0.5em auto 2em;
  font-weight: 900;
}

.fee-list-item {
  box-sizing: border-box;
  padding: 0 0.5em;
  width: 50%;
}

.fee-list-item img {
  border-radius: 0.5em;
  width: 80%;
}

.fee-list-fee {
  /*background-color: #f7bc3c;*/
  border-radius: 0.5em;
  color: rgb(0, 0, 0);
  display: block;
  font-size: 0.75em;
  font-weight: bold;
  margin: 1em auto 0.5em;
  max-width: 10em;
}

@media screen and (min-width:26.5em) {

  /*Mobile*/
  .fee-list-fee {
    font-size: 1.5em;
  }
}

@media screen and (min-width:38em) {

  /*Desktop*/

  .fee-list-fee {
    font-size: 1em;
  }

  .fee-list-item {
    width: 20%;
  }
}

@media screen and (min-width: 60em) {
  .fee-list-fee {
    font-size: 1.25em;
  }
}

@media screen and (min-width: 70em) {
  .fee-list-fee {
    font-size: 1em;
  }

  .fee-list-copy {
    font-size: 1.2em;
  }

  .fee-list-item {
    width: calc(100% / 4);
  }
}

@media screen and (min-width: 40em) {
  .fee-list-item {
    width: calc(100% / 4);
  }
}

@media screen and (min-width: 82em) {
  .fee-list-fee {
    font-size: 1.25em;
  }
}



.sequenceItem {
  display: block;

}

.sequenceItem .-number {
  border-bottom: 4px solid #7b2de9;
  color: #7b2de9;
  display: block;
  font-size: .85em;
  font-family: "courier-prime", monospace;
  text-transform: uppercase;
  margin: 0 auto 7px;
  padding: 0 0 5px 0;
  margin: 0 auto;
  max-width: 320px;
  text-align: center;
}

.sequenceItem.-step .-label {
  border-bottom: 4px solid #af8533;
  color: #af8533;
  display: block;
  font-size: .85em;
  font-family: "courier-prime", monospace;
  letter-spacing: -1px;
  margin: 0 auto 7px;
  padding: 0 0 5px 0;
  margin: 0 auto 5px;
  max-width: 380px;
  text-align: center;
  text-transform: uppercase;
}

.sequenceItem.-step h2 {}

.emoji {
  font-size: 2rem;
}

.emoji.-subhead {
  display: block;
  font-size: 4rem;
  text-align: center;
}



.-underscore {
  display: inline-block;
  border-bottom: 3px solid var(--highlight1Brdr);
  padding-bottom: 5px;
}


.finalOffer {
  background-color: #333;
  background-image: linear-gradient(#111111, #000000);
  border-radius: 8px;
  box-shadow: 0 12px 12px -12px #333;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
  padding: 15px 30px;
  margin: 0 auto 20px;
  max-width: 18em;
  text-align: center;

}

.-notice {
  display: inline-block;
  color: #ff0000;
  border-bottom: 4px solid #ff0000;
  font-size: 2.25rem;

  line-height: 1;
  margin: 0 0 10px;
  padding: 0 5px 10px;
  text-align: center;
}



@media screen and (min-width:38em) {
  .emoji.-subhead {
    font-size: 5rem;
  }

  .finalOffer {
    font-size: 2rem;
    margin: 0 auto 40px;

  }
}

/* NEW to thhis iteration */

/* VIDEO PLAYER */
.player {
  margin: auto;
  max-width: 350px;

}

.player iframe {

  border: none;
  border-radius: 10px;
}

@media screen and (min-width:780px) {
  .player {
    margin: auto;
    max-width: 700px;

  }

  .player iframe {


    border-radius: 10px;
    box-shadow: 0 16px 16px -18px #333;
    border: 8px solid #000;
  }
}

/*COLUMNS*/
@media screen and (min-width:34em) {
  .two-col {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;

    margin: 1em auto 1em 0.5em;
  }

  .two-col li {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1 1 45%;
    -ms-flex: 1 1 45%;
    flex: 1 1 45%;
  }

  .two-col li {
    left: auto;
    position: inherit;
    text-align: left;
    line-height: 1.5;
    margin: 0 1em 0 0;
    padding: 0 0 0 0.25em;
    top: auto;
    width: auto;
  }

  .group {
    margin: 0 1em 0 2em
  }
}

.golive {

  text-align: center;
  line-height: 1;
}

.golive .-eyebrow {
  display: block;
  font-size: 1.33rem;
  font-weight: 600;
}
.golive .tube {
  background-color: #990000;
  background-image: linear-gradient(#ff0001, #cb0303);
  border-radius: 20%;
  box-shadow: 0 12px 16px -16px #999;

  color:#fff;
  display: block;
  font-size: 4rem;
  font-weight: 700;
  margin: 5px auto;
  padding:8px 12px;
  text-align: center;
  line-height: 1;
  width: auto;
  max-width: 165px;
}
.indent {
  margin-left:1.5em !important;
}