@charset "UTF-8";

@import url('free-trial.css');

.purpleBtn {
  background: #8d79ab;
  color: #fff;
  border: 2px solid #8d79ab;
  background 0.25s ease-in-out
}

.purpleBtn:hover {
  background: #fff;
  border: 2px solid #8d79ab;
  color: #000;
}

/**
 * Font REM
 * -- convert and output px and rem
 * -- font-rem( $font-size-px )
 */
/**
 * Responsive Media Query Helpers
 * -- responsiveQuery(xs)
 * -- responsiveQuery("(min-width: 100em)")
 */
/**
 * Clearfix as a mixin
 */
/**
 * Gradients
 */
/**
 * Horizontally and vertically centers block elements
 *
 * Important: you must have a parent element with `position: relative`.
 */
/**
 * Grayscale Filter
 * -- grayscale( on )
 * -- grayscale( off )
 */
/**
 * Triangle
 *
 * @include triangle within a pseudo element and add positioning properties (ie. top, left)
 * $direction: up, down, left, right
*/
/**
 * Retina Image Helper
 *
 * A helper mixin for applying high-resolution background images (http://www.retinajs.com)
 * by Nathan Crank (nathancrank.com)
 */
.displayblock {
  display: block !important;
}

/**
 * Border box all the things
 */
* {
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  box-sizing: border-box;
}

/*
 * Highlighting colors
 */
::-webkit-selection {
  background: #00bfbf;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #00bfbf;
  color: #fff;
  text-shadow: none;
}

/**
 * HTML tag
 */
html {
  font-size: 62.5%;
}

/**
 * BODY tag
 */
body {
  color: #000;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
  background: #f2f2f2;
}

/*
 * Headings
 */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  color: inherit;
  font-family: inherit;
  font-weight: bold;
  line-height: 1.1;
  padding: 20px 0 25px;
  margin: 0;
  text-transform: uppercase;
}

h1, .h1 {
  font-size: 50px;
  font-size: 5rem;
}

h2, .h2 {
  font-size: 36px;
  font-size: 3.6rem;
}

h3, .h3 {
  font-size: 32px;
  font-size: 3.2rem;
}

h4, .h4 {
  font-size: 24px;
  font-size: 2.4rem;
}

h5, .h5 {
  font-size: 18px;
  font-size: 1.8rem;
}

h6, .h6 {
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (min-width: 37.5em) {
  h1, .h1 {
    font-size: 50px;
    font-size: 5rem;
  }
  h2, .h2 {
    font-size: 36px;
    font-size: 3.6rem;
  }
  h3, .h3 {
    font-size: 32px;
    font-size: 3.2rem;
  }
  h4, .h4 {
    font-size: 24px;
    font-size: 2.4rem;
  }
  h5, .h5 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  h6, .h6 {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media only screen and (min-width: 64em) {
  h1, .h1 {
    font-size: 50px;
    font-size: 5rem;
  }
  h2, .h2 {
    font-size: 36px;
    font-size: 3.6rem;
  }
  h3, .h3 {
    font-size: 32px;
    font-size: 3.2rem;
  }
  h4, .h4 {
    font-size: 24px;
    font-size: 2.4rem;
  }
  h5, .h5 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  h6, .h6 {
    font-size: 20px;
    font-size: 2rem;
  }
}

h5 {
  font-weight: 500;
  margin-bottom: 10px;
}

/**
 * Body Text
 */
p {
  padding: 0 0 20px;
  margin: 0;
}

p + ul,
p + ol {
  margin-top: -10px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 48em) {
  p {
    padding-bottom: 25px;
  }
  p + ul,
  p + ol {
    margin-top: -20px;
    margin-bottom: 20px;
  }
}

/*
 * Links
 */
a {
  color: #00bfbf;
  text-decoration: none;
}

a:hover {
  color: #333333;
}

/**
 * Lists
 */
ul,
ol {
  margin-top: 10px;
  margin-bottom: 30px;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}


.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/**
 * Blockquotes
 */
blockquote {
  font-size: 17px;
  font-size: 1.7rem;
  border-left: 5px solid #bbb;
  padding: 10px 20px;
  margin: 0 0 20px;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

blockquote footer {
  display: block;
  font-size: 80%;
  line-height: 1.5;
  color: #bbb;
}

blockquote footer:before {
  content: '\2014 \00A0';
}

blockquote-reverse {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #bbb;
  border-left: 0;
  text-align: right;
}

blockquote-reverse footer:before {
  content: '';
}

blockquote-reverse footer:after {
  content: '\00A0 \2014';
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #d7d5d5;
  margin: 1em 0;
  padding: 0;
}

/**
 * Text meant only for screen readers
 */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle;
}

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

/**
 * Responsive Embeds
 */
.embed-responsive {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding: 0;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.embed-responsive--ar16x9 {
  padding-top: 56.25%;
}

.embed-responsive--ar4x3 {
  padding-top: 75%;
}


.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/*------------------------------------*	$CSSWIZARDRY-GRIDS (https://github.com/csswizardry/csswizardry-grids)

	MODIFIED EDITION
\*------------------------------------*/
/**
 * CONTENTS
 * INTRODUCTION.........How the grid system works.
 * VARIABLES............Your settings.
 * MIXINS...............Library mixins.
 * GRID SETUP...........Build the grid structure.
 * HELPERS..............Create helper show/hide classes around our breakpoints.
 * WIDTHS...............Build our responsive widths around our breakpoints.
 * PUSH.................Push classes.
 * PULL.................Pull classes.
 */
/*------------------------------------*	$INTRODUCTION
\*------------------------------------*/
/**
 * csswizardry grids provides you with widths to suit a number of breakpoints
 * designed around devices of a size you specify. Out of the box, csswizardry
 * grids caters to the following types of device:
 *
 * palm     --  palm-based devices, like phones and small tablets
 * lap      --  lap-based devices, like iPads or laptops
 * portable --  all of the above
 * desk     --  stationary devices, like desktop computers
 * regular  --  any/all types of device
 *
 * These namespaces are then used in the library to give you the ability to
 * manipulate your layouts based around them, for example:
 *
   <div class="grid__item  col-1-1  lap--col-1-2  desk--col-1-3">
 *
 * This would give you a grid item which is 100% width unless it is on a lap
 * device, at which point it become 50% wide, or it is on a desktop device, at
 * which point it becomes 33.333% width.
 *
 * csswizardry grids also has push and pull classes which allow you to nudge
 * grid items left and right by a defined amount. These follow the same naming
 * convention as above, but are prepended by either `push--` or `pull--`, for
 * example:
 *
   `class="grid__item  col-1-2  push--col-1-2"`
 *
 * This would give you a grid item which is 50% width and pushed over to the
 * right by 50%.
 *
 * All classes in csswizardry grids follow this patten, so you should fairly
 * quickly be able to piece together any combinations you can imagine, for
 * example:
 *
   `class="grid__item  col-1-1  lap--col-1-2  desk--col-1-3  push--desk--col-1-3"`
 *
   `class="grid__item  col-1-4  palm--col-1-2  push--palm--col-1-2"`
 *
   `class="grid__item  palm--col-1-3  desk--5-12"`
 */
/*------------------------------------*	$VARIABLES
\*------------------------------------*/
/**
 * If you want numbers instead of names (example : 'one-whole' becomes '1-1', 'third-quarter' becomes '3-4' etc...)
 */
/**
 * When the first char of a class is a digit, you need to convert it to his unicode
 * http://stackoverflow.com/a/21229901
 * http://www.w3.org/TR/css3-syntax/#escaping
 *
 * But Sass doesn't support it yet...
 * https://github.com/sass/sass/issues/255
 *
 * So while waiting for this is possible, this is the code.
 */
/**
 * If you are building a non-responsive site but would still like to use
 * csswizardry-grids, set this to ‘false’:
 */
/**
 * Is this build mobile first? Setting to ‘true’ means that all grids will be
 * 100% width if you do not apply a more specific class to them.
 */
/**
 * Set the spacing between your grid items.
 */
/**
 * Would you like Sass’ silent classes, or regular CSS classes?
 */
/**
 * Would you like push and pull classes enabled?
 */
/**
 * Using `inline-block` means that the grid items need their whitespace removing
 * in order for them to work correctly. Set the following to true if you are
 * going to achieve this by manually removing/commenting out any whitespace in
 * your HTML yourself.
 *
 * Setting this to false invokes a hack which cannot always be guaranteed,
 * please see the following for more detail:
 *
 * github.com/csswizardry/csswizardry-grids/commit/744d4b23c9d2b77d605b5991e54a397df72e0688
 * github.com/csswizardry/inuit.css/issues/170#issuecomment-14859371
 */
/**
 * Define your breakpoints. The first value is the prefix that shall be used for
 * your classes (e.g. `.palm--one-half`), the second value is the media query
 * that the breakpoint fires at.
 *
 *      phone-portrait = 20em   = 320px
 *     phone-landscape = 30em   = 480px
 *   tablet-S-portrait = 37.5em = 600px
 *   tablet-M-portrait = 48em   = 768px
 *   tablet-L-portrait = 60em   = 960px
 *   desktop-landscape = 64em   = 1024px
 * desktop-L-landscape = 80em   = 1280px
 */
/**
 * Define which namespaced breakpoints you would like to generate for each of
 * widths, push and pull. This is handy if you only need pull on, say, desk, or
 * you only need a new width breakpoint at mobile sizes. It allows you to only
 * compile as much CSS as you need. All are turned on by default, but you can
 * add and remove breakpoints at will.
 *
 * Push and pull shall only be used if `$push` and/or `$pull` and `$responsive`
 * have been set to ‘true’.
 */
/**
 * You do not need to edit anything from this line onward; csswizardry-grids is
 * good to go. Happy griddin’!
 */
/*------------------------------------*	$MIXINS
\*------------------------------------*/
/**
 * These mixins are for the library to use only, you should not need to modify
 * them at all.
 *
 * Enclose a block of code with a media query as named in `$breakpoints`.
 */
/**
 * Drop relative positioning into silent classes which can’t take advantage of
 * the `[class*="push--"]` and `[class*="pull--"]` selectors.
 */
/*------------------------------------*	$GRID SETUP
\*------------------------------------*/
/**
 * 1. Allow the grid system to be used on lists.
 * 2. Remove any margins and paddings that might affect the grid system.
 * 3. Apply a negative `margin-left` to negate the columns’ gutters.
 */
.grid {
  list-style: none;
  /* [1] */
  margin: 0;
  /* [2] */
  padding: 0;
  /* [2] */
  margin-left: -20px;
  /* [3] */
}

/**
 * 1. Cause columns to stack side-by-side.
 * 2. Space columns apart.
 * 3. Align columns to the tops of each other.
 * 4. Full-width unless told to behave otherwise.
 * 5. Required to combine fluid widths and fixed gutters.
 */
.grid__item {
  display: inline-block;
  /* [1] */
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */
  -webkit-box-sizing: border-box;
  /* [5] */
  -moz-box-sizing: border-box;
  /* [5] */
  box-sizing: border-box;
  /* [5] */
}

/**
 * Reversed grids allow you to structure your source in the opposite order to
 * how your rendered layout will appear. Extends `.grid`.
 */
.grid--rev {
  direction: rtl;
  text-align: left;
}

.grid--rev > .grid__item {
  direction: ltr;
  text-align: left;
}

/**
 * Gutterless grids have all the properties of regular grids, minus any spacing.
 * Extends `.grid`.
 */
.grid--full {
  margin-left: 0;
}

.grid--full > .grid__item {
  padding-left: 0;
}

/**
 * Align the entire grid to the right. Extends `.grid`.
 */
.grid--right {
  text-align: right;
}

.grid--right > .grid__item {
  text-align: left;
}

/**
 * Centered grids align grid items centrally without needing to use push or pull
 * classes. Extends `.grid`.
 */
.grid--center {
  text-align: center;
}

.grid--center > .grid__item {
  text-align: left;
}

/**
 * Align grid cells vertically (`.grid--middle` or `.grid--bottom`). Extends
 * `.grid`.
 */
.grid--middle > .grid__item {
  vertical-align: middle;
}

.grid--bottom > .grid__item {
  vertical-align: bottom;
}

/**
 * Create grids with narrower gutters. Extends `.grid`.
 */
.grid--narrow {
  margin-left: -10px;
}

.grid--narrow > .grid__item {
  padding-left: 10px;
}

/**
 * Create grids with wider gutters. Extends `.grid`.
 */
.grid--wide {
  margin-left: -40px;
}

.grid--wide > .grid__item {
  padding-left: 40px;
}

/*------------------------------------*	$WIDTHS
\*------------------------------------*/
/**
 * Create our width classes, prefixed by the specified namespace.
 */
/*------------------------------------*  $HELPERS
\*------------------------------------*/
/**
 * Create helper show/hide classes, prefixed by the specified namespace.
 */
/**
 * Our regular, non-responsive width classes.
 */
/**
	 * Whole
	 */
.col-1-1 {
  width: 100%;
}

/**
	 * Halves
	 */
.col-1-2, .col-2-4, .col-3-6, .col-4-8, .col-5-10, .col-6-12 {
  width: 50%;
}

/**
	 * Thirds
	 */
.col-1-3, .col-2-6, .col-3-9, .col-4-12 {
  width: 33.333%;
}

.col-2-3, .col-4-6, .col-6-9, .col-8-12 {
  width: 66.666%;
}

/**
	 * Quarters
	 */
.col-1-4, .col-2-8, .col-3-12 {
  width: 25%;
}

.col-3-4, .col-6-8, .col-9-12 {
  width: 75%;
}

/**
	 * Fifths
	 */
.col-1-5, .col-2-10 {
  width: 20%;
}

.col-2-5, .col-4-10 {
  width: 40%;
}

.col-3-5, .col-6-10 {
  width: 60%;
}

.col-4-5, .col-8-10 {
  width: 80%;
}

/**
	 * Sixths
	 */
.col-1-6 {
  width: 16.666%;
}

.col-5-6, .col-10-12 {
  width: 83.333%;
}

/**
	 * Sevenths
	 */
.col-1-7 {
  width: 14.2857%;
}

.col-2-7 {
  width: 28.5714%;
}

.col-3-7 {
  width: 42.8571%;
}

.col-4-7 {
  width: 57.1428%;
}

.col-5-7 {
  width: 71.4285%;
}

.col-6-7 {
  width: 85.7142%;
}

/**
	 * Eighths
	 */
.col-1-8 {
  width: 12.5%;
}

.col-3-8 {
  width: 37.5%;
}

.col-5-8 {
  width: 62.5%;
}

.col-7-8 {
  width: 87.5%;
}

/**
	 * Ninths
	 */
.col-1-9 {
  width: 11.111%;
}

.col-2-9 {
  width: 22.222%;
}

.col-4-9 {
  width: 44.444%;
}

.col-5-9 {
  width: 55.555%;
}

.col-7-9 {
  width: 77.777%;
}

.col-8-9 {
  width: 88.888%;
}

/**
	 * Tenths
	 */
.col-1-10 {
  width: 10%;
}

.col-3-10 {
  width: 30%;
}

.col-7-10 {
  width: 70%;
}

.col-9-10 {
  width: 90%;
}

/**
	 * Elevenths
	 */
.col-1-11 {
  width: 9.0909%;
}

.col-2-11 {
  width: 18.1818%;
}

.col-3-11 {
  width: 27.2727%;
}

.col-4-11 {
  width: 36.3636%;
}

.col-5-11 {
  width: 45.4545%;
}

.col-6-11 {
  width: 54.5454%;
}

.col-7-11 {
  width: 63.6363%;
}

.col-8-11 {
  width: 72.7272%;
}

.col-9-11 {
  width: 81.8181%;
}

.col-10-11 {
  width: 90.9090%;
}

/**
	 * Twelfths
	 */
.col-1-12 {
  width: 8.333%;
}

.col-2-12 {
  width: 16.666%;
}

.col-5-12 {
  width: 41.666%;
}

.col-7-12 {
  width: 58.333%;
}

.col-11-12 {
  width: 91.666%;
}

.show {
  display: inline-block;
}

.hide {
  display: none;
}

/**
 * Our responsive classes, if we have enabled them.
 */
@media only screen and (min-width: 30em) {
  /**
	 * Whole
	 */
  .xs--col-1-1 {
    width: 100%;
  }
  /**
	 * Halves
	 */
  .xs--col-1-2, .xs--col-2-4, .xs--col-3-6, .xs--col-4-8, .xs--col-5-10, .xs--col-6-12 {
    width: 50%;
  }
  /**
	 * Thirds
	 */
  .xs--col-1-3, .xs--col-2-6, .xs--col-3-9, .xs--col-4-12 {
    width: 33.333%;
  }
  .xs--col-2-3, .xs--col-4-6, .xs--col-6-9, .xs--col-8-12 {
    width: 66.666%;
  }
  /**
	 * Quarters
	 */
  .xs--col-1-4, .xs--col-2-8, .xs--col-3-12 {
    width: 25%;
  }
  .xs--col-3-4, .xs--col-6-8, .xs--col-9-12 {
    width: 75%;
  }
  /**
	 * Fifths
	 */
  .xs--col-1-5, .xs--col-2-10 {
    width: 20%;
  }
  .xs--col-2-5, .xs--col-4-10 {
    width: 40%;
  }
  .xs--col-3-5, .xs--col-6-10 {
    width: 60%;
  }
  .xs--col-4-5, .xs--col-8-10 {
    width: 80%;
  }
  /**
	 * Sixths
	 */
  .xs--col-1-6 {
    width: 16.666%;
  }
  .xs--col-5-6, .xs--col-10-12 {
    width: 83.333%;
  }
  /**
	 * Sevenths
	 */
  .xs--col-1-7 {
    width: 14.2857%;
  }
  .xs--col-2-7 {
    width: 28.5714%;
  }
  .xs--col-3-7 {
    width: 42.8571%;
  }
  .xs--col-4-7 {
    width: 57.1428%;
  }
  .xs--col-5-7 {
    width: 71.4285%;
  }
  .xs--col-6-7 {
    width: 85.7142%;
  }
  /**
	 * Eighths
	 */
  .xs--col-1-8 {
    width: 12.5%;
  }
  .xs--col-3-8 {
    width: 37.5%;
  }
  .xs--col-5-8 {
    width: 62.5%;
  }
  .xs--col-7-8 {
    width: 87.5%;
  }
  /**
	 * Ninths
	 */
  .xs--col-1-9 {
    width: 11.111%;
  }
  .xs--col-2-9 {
    width: 22.222%;
  }
  .xs--col-4-9 {
    width: 44.444%;
  }
  .xs--col-5-9 {
    width: 55.555%;
  }
  .xs--col-7-9 {
    width: 77.777%;
  }
  .xs--col-8-9 {
    width: 88.888%;
  }
  /**
	 * Tenths
	 */
  .xs--col-1-10 {
    width: 10%;
  }
  .xs--col-3-10 {
    width: 30%;
  }
  .xs--col-7-10 {
    width: 70%;
  }
  .xs--col-9-10 {
    width: 90%;
  }
  /**
	 * Elevenths
	 */
  .xs--col-1-11 {
    width: 9.0909%;
  }
  .xs--col-2-11 {
    width: 18.1818%;
  }
  .xs--col-3-11 {
    width: 27.2727%;
  }
  .xs--col-4-11 {
    width: 36.3636%;
  }
  .xs--col-5-11 {
    width: 45.4545%;
  }
  .xs--col-6-11 {
    width: 54.5454%;
  }
  .xs--col-7-11 {
    width: 63.6363%;
  }
  .xs--col-8-11 {
    width: 72.7272%;
  }
  .xs--col-9-11 {
    width: 81.8181%;
  }
  .xs--col-10-11 {
    width: 90.9090%;
  }
  /**
	 * Twelfths
	 */
  .xs--col-1-12 {
    width: 8.333%;
  }
  .xs--col-2-12 {
    width: 16.666%;
  }
  .xs--col-5-12 {
    width: 41.666%;
  }
  .xs--col-7-12 {
    width: 58.333%;
  }
  .xs--col-11-12 {
    width: 91.666%;
  }
}

@media only screen and (min-width: 30em) {
  .xs--show {
    display: inline-block;
  }
  .xs--hide {
    display: none;
  }
}

@media only screen and (min-width: 37.5em) {
  /**
	 * Whole
	 */
  .s--col-1-1 {
    width: 100%;
  }
  /**
	 * Halves
	 */
  .s--col-1-2, .s--col-2-4, .s--col-3-6, .s--col-4-8, .s--col-5-10, .s--col-6-12 {
    width: 50%;
  }
  /**
	 * Thirds
	 */
  .s--col-1-3, .s--col-2-6, .s--col-3-9, .s--col-4-12 {
    width: 33.333%;
  }
  .s--col-2-3, .s--col-4-6, .s--col-6-9, .s--col-8-12 {
    width: 66.666%;
  }
  /**
	 * Quarters
	 */
  .s--col-1-4, .s--col-2-8, .s--col-3-12 {
    width: 25%;
  }
  .s--col-3-4, .s--col-6-8, .s--col-9-12 {
    width: 75%;
  }
  /**
	 * Fifths
	 */
  .s--col-1-5, .s--col-2-10 {
    width: 20%;
  }
  .s--col-2-5, .s--col-4-10 {
    width: 40%;
  }
  .s--col-3-5, .s--col-6-10 {
    width: 60%;
  }
  .s--col-4-5, .s--col-8-10 {
    width: 80%;
  }
  /**
	 * Sixths
	 */
  .s--col-1-6 {
    width: 16.666%;
  }
  .s--col-5-6, .s--col-10-12 {
    width: 83.333%;
  }
  /**
	 * Sevenths
	 */
  .s--col-1-7 {
    width: 14.2857%;
  }
  .s--col-2-7 {
    width: 28.5714%;
  }
  .s--col-3-7 {
    width: 42.8571%;
  }
  .s--col-4-7 {
    width: 57.1428%;
  }
  .s--col-5-7 {
    width: 71.4285%;
  }
  .s--col-6-7 {
    width: 85.7142%;
  }
  /**
	 * Eighths
	 */
  .s--col-1-8 {
    width: 12.5%;
  }
  .s--col-3-8 {
    width: 37.5%;
  }
  .s--col-5-8 {
    width: 62.5%;
  }
  .s--col-7-8 {
    width: 87.5%;
  }
  /**
	 * Ninths
	 */
  .s--col-1-9 {
    width: 11.111%;
  }
  .s--col-2-9 {
    width: 22.222%;
  }
  .s--col-4-9 {
    width: 44.444%;
  }
  .s--col-5-9 {
    width: 55.555%;
  }
  .s--col-7-9 {
    width: 77.777%;
  }
  .s--col-8-9 {
    width: 88.888%;
  }
  /**
	 * Tenths
	 */
  .s--col-1-10 {
    width: 10%;
  }
  .s--col-3-10 {
    width: 30%;
  }
  .s--col-7-10 {
    width: 70%;
  }
  .s--col-9-10 {
    width: 90%;
  }
  /**
	 * Elevenths
	 */
  .s--col-1-11 {
    width: 9.0909%;
  }
  .s--col-2-11 {
    width: 18.1818%;
  }
  .s--col-3-11 {
    width: 27.2727%;
  }
  .s--col-4-11 {
    width: 36.3636%;
  }
  .s--col-5-11 {
    width: 45.4545%;
  }
  .s--col-6-11 {
    width: 54.5454%;
  }
  .s--col-7-11 {
    width: 63.6363%;
  }
  .s--col-8-11 {
    width: 72.7272%;
  }
  .s--col-9-11 {
    width: 81.8181%;
  }
  .s--col-10-11 {
    width: 90.9090%;
  }
  /**
	 * Twelfths
	 */
  .s--col-1-12 {
    width: 8.333%;
  }
  .s--col-2-12 {
    width: 16.666%;
  }
  .s--col-5-12 {
    width: 41.666%;
  }
  .s--col-7-12 {
    width: 58.333%;
  }
  .s--col-11-12 {
    width: 91.666%;
  }
}

@media only screen and (min-width: 37.5em) {
  .s--show {
    display: inline-block;
  }
  .s--hide {
    display: none;
  }
}

@media only screen and (min-width: 48em) {
  /**
	 * Whole
	 */
  .m--col-1-1 {
    width: 100%;
  }
  /**
	 * Halves
	 */
  .m--col-1-2, .m--col-2-4, .m--col-3-6, .m--col-4-8, .m--col-5-10, .m--col-6-12 {
    width: 50%;
  }
  /**
	 * Thirds
	 */
  .m--col-1-3, .m--col-2-6, .m--col-3-9, .m--col-4-12 {
    width: 33.333%;
  }
  .m--col-2-3, .m--col-4-6, .m--col-6-9, .m--col-8-12 {
    width: 66.666%;
  }
  /**
	 * Quarters
	 */
  .m--col-1-4, .m--col-2-8, .m--col-3-12 {
    width: 25%;
  }
  .m--col-3-4, .m--col-6-8, .m--col-9-12 {
    width: 75%;
  }
  /**
	 * Fifths
	 */
  .m--col-1-5, .m--col-2-10 {
    width: 20%;
  }
  .m--col-2-5, .m--col-4-10 {
    width: 40%;
  }
  .m--col-3-5, .m--col-6-10 {
    width: 60%;
  }
  .m--col-4-5, .m--col-8-10 {
    width: 80%;
  }
  /**
	 * Sixths
	 */
  .m--col-1-6 {
    width: 16.666%;
  }
  .m--col-5-6, .m--col-10-12 {
    width: 83.333%;
  }
  /**
	 * Sevenths
	 */
  .m--col-1-7 {
    width: 14.2857%;
  }
  .m--col-2-7 {
    width: 28.5714%;
  }
  .m--col-3-7 {
    width: 42.8571%;
  }
  .m--col-4-7 {
    width: 57.1428%;
  }
  .m--col-5-7 {
    width: 71.4285%;
  }
  .m--col-6-7 {
    width: 85.7142%;
  }
  /**
	 * Eighths
	 */
  .m--col-1-8 {
    width: 12.5%;
  }
  .m--col-3-8 {
    width: 37.5%;
  }
  .m--col-5-8 {
    width: 62.5%;
  }
  .m--col-7-8 {
    width: 87.5%;
  }
  /**
	 * Ninths
	 */
  .m--col-1-9 {
    width: 11.111%;
  }
  .m--col-2-9 {
    width: 22.222%;
  }
  .m--col-4-9 {
    width: 44.444%;
  }
  .m--col-5-9 {
    width: 55.555%;
  }
  .m--col-7-9 {
    width: 77.777%;
  }
  .m--col-8-9 {
    width: 88.888%;
  }
  /**
	 * Tenths
	 */
  .m--col-1-10 {
    width: 10%;
  }
  .m--col-3-10 {
    width: 30%;
  }
  .m--col-7-10 {
    width: 70%;
  }
  .m--col-9-10 {
    width: 90%;
  }
  /**
	 * Elevenths
	 */
  .m--col-1-11 {
    width: 9.0909%;
  }
  .m--col-2-11 {
    width: 18.1818%;
  }
  .m--col-3-11 {
    width: 27.2727%;
  }
  .m--col-4-11 {
    width: 36.3636%;
  }
  .m--col-5-11 {
    width: 45.4545%;
  }
  .m--col-6-11 {
    width: 54.5454%;
  }
  .m--col-7-11 {
    width: 63.6363%;
  }
  .m--col-8-11 {
    width: 72.7272%;
  }
  .m--col-9-11 {
    width: 81.8181%;
  }
  .m--col-10-11 {
    width: 90.9090%;
  }
  /**
	 * Twelfths
	 */
  .m--col-1-12 {
    width: 8.333%;
  }
  .m--col-2-12 {
    width: 16.666%;
  }
  .m--col-5-12 {
    width: 41.666%;
  }
  .m--col-7-12 {
    width: 58.333%;
  }
  .m--col-11-12 {
    width: 91.666%;
  }
}

@media only screen and (min-width: 48em) {
  .m--show {
    display: inline-block;
  }
  .m--hide {
    display: none;
  }
}

@media only screen and (min-width: 60em) {
  /**
	 * Whole
	 */
  .l--col-1-1 {
    width: 100%;
  }
  /**
	 * Halves
	 */
  .l--col-1-2, .l--col-2-4, .l--col-3-6, .l--col-4-8, .l--col-5-10, .l--col-6-12 {
    width: 50%;
  }
  /**
	 * Thirds
	 */
  .l--col-1-3, .l--col-2-6, .l--col-3-9, .l--col-4-12 {
    width: 33.333%;
  }
  .l--col-2-3, .l--col-4-6, .l--col-6-9, .l--col-8-12 {
    width: 66.666%;
  }
  /**
	 * Quarters
	 */
  .l--col-1-4, .l--col-2-8, .l--col-3-12 {
    width: 25%;
  }
  .l--col-3-4, .l--col-6-8, .l--col-9-12 {
    width: 75%;
  }
  /**
	 * Fifths
	 */
  .l--col-1-5, .l--col-2-10 {
    width: 20%;
  }
  .l--col-2-5, .l--col-4-10 {
    width: 40%;
  }
  .l--col-3-5, .l--col-6-10 {
    width: 60%;
  }
  .l--col-4-5, .l--col-8-10 {
    width: 80%;
  }
  /**
	 * Sixths
	 */
  .l--col-1-6 {
    width: 16.666%;
  }
  .l--col-5-6, .l--col-10-12 {
    width: 83.333%;
  }
  /**
	 * Sevenths
	 */
  .l--col-1-7 {
    width: 14.2857%;
  }
  .l--col-2-7 {
    width: 28.5714%;
  }
  .l--col-3-7 {
    width: 42.8571%;
  }
  .l--col-4-7 {
    width: 57.1428%;
  }
  .l--col-5-7 {
    width: 71.4285%;
  }
  .l--col-6-7 {
    width: 85.7142%;
  }
  /**
	 * Eighths
	 */
  .l--col-1-8 {
    width: 12.5%;
  }
  .l--col-3-8 {
    width: 37.5%;
  }
  .l--col-5-8 {
    width: 62.5%;
  }
  .l--col-7-8 {
    width: 87.5%;
  }
  /**
	 * Ninths
	 */
  .l--col-1-9 {
    width: 11.111%;
  }
  .l--col-2-9 {
    width: 22.222%;
  }
  .l--col-4-9 {
    width: 44.444%;
  }
  .l--col-5-9 {
    width: 55.555%;
  }
  .l--col-7-9 {
    width: 77.777%;
  }
  .l--col-8-9 {
    width: 88.888%;
  }
  /**
	 * Tenths
	 */
  .l--col-1-10 {
    width: 10%;
  }
  .l--col-3-10 {
    width: 30%;
  }
  .l--col-7-10 {
    width: 70%;
  }
  .l--col-9-10 {
    width: 90%;
  }
  /**
	 * Elevenths
	 */
  .l--col-1-11 {
    width: 9.0909%;
  }
  .l--col-2-11 {
    width: 18.1818%;
  }
  .l--col-3-11 {
    width: 27.2727%;
  }
  .l--col-4-11 {
    width: 36.3636%;
  }
  .l--col-5-11 {
    width: 45.4545%;
  }
  .l--col-6-11 {
    width: 54.5454%;
  }
  .l--col-7-11 {
    width: 63.6363%;
  }
  .l--col-8-11 {
    width: 72.7272%;
  }
  .l--col-9-11 {
    width: 81.8181%;
  }
  .l--col-10-11 {
    width: 90.9090%;
  }
  /**
	 * Twelfths
	 */
  .l--col-1-12 {
    width: 8.333%;
  }
  .l--col-2-12 {
    width: 16.666%;
  }
  .l--col-5-12 {
    width: 41.666%;
  }
  .l--col-7-12 {
    width: 58.333%;
  }
  .l--col-11-12 {
    width: 91.666%;
  }
}

@media only screen and (min-width: 60em) {
  .l--show {
    display: inline-block;
  }
  .l--hide {
    display: none;
  }
}

@media only screen and (min-width: 64em) {
  /**
	 * Whole
	 */
  .xl--col-1-1 {
    width: 100%;
  }
  /**
	 * Halves
	 */
  .xl--col-1-2, .xl--col-2-4, .xl--col-3-6, .xl--col-4-8, .xl--col-5-10, .xl--col-6-12 {
    width: 50%;
  }
  /**
	 * Thirds
	 */
  .xl--col-1-3, .xl--col-2-6, .xl--col-3-9, .xl--col-4-12 {
    width: 33.333%;
  }
  .xl--col-2-3, .xl--col-4-6, .xl--col-6-9, .xl--col-8-12 {
    width: 66.666%;
  }
  /**
	 * Quarters
	 */
  .xl--col-1-4, .xl--col-2-8, .xl--col-3-12 {
    width: 25%;
  }
  .xl--col-3-4, .xl--col-6-8, .xl--col-9-12 {
    width: 75%;
  }
  /**
	 * Fifths
	 */
  .xl--col-1-5, .xl--col-2-10 {
    width: 20%;
  }
  .xl--col-2-5, .xl--col-4-10 {
    width: 40%;
  }
  .xl--col-3-5, .xl--col-6-10 {
    width: 60%;
  }
  .xl--col-4-5, .xl--col-8-10 {
    width: 80%;
  }
  /**
	 * Sixths
	 */
  .xl--col-1-6 {
    width: 16.666%;
  }
  .xl--col-5-6, .xl--col-10-12 {
    width: 83.333%;
  }
  /**
	 * Sevenths
	 */
  .xl--col-1-7 {
    width: 14.2857%;
  }
  .xl--col-2-7 {
    width: 28.5714%;
  }
  .xl--col-3-7 {
    width: 42.8571%;
  }
  .xl--col-4-7 {
    width: 57.1428%;
  }
  .xl--col-5-7 {
    width: 71.4285%;
  }
  .xl--col-6-7 {
    width: 85.7142%;
  }
  /**
	 * Eighths
	 */
  .xl--col-1-8 {
    width: 12.5%;
  }
  .xl--col-3-8 {
    width: 37.5%;
  }
  .xl--col-5-8 {
    width: 62.5%;
  }
  .xl--col-7-8 {
    width: 87.5%;
  }
  /**
	 * Ninths
	 */
  .xl--col-1-9 {
    width: 11.111%;
  }
  .xl--col-2-9 {
    width: 22.222%;
  }
  .xl--col-4-9 {
    width: 44.444%;
  }
  .xl--col-5-9 {
    width: 55.555%;
  }
  .xl--col-7-9 {
    width: 77.777%;
  }
  .xl--col-8-9 {
    width: 88.888%;
  }
  /**
	 * Tenths
	 */
  .xl--col-1-10 {
    width: 10%;
  }
  .xl--col-3-10 {
    width: 30%;
  }
  .xl--col-7-10 {
    width: 70%;
  }
  .xl--col-9-10 {
    width: 90%;
  }
  /**
	 * Elevenths
	 */
  .xl--col-1-11 {
    width: 9.0909%;
  }
  .xl--col-2-11 {
    width: 18.1818%;
  }
  .xl--col-3-11 {
    width: 27.2727%;
  }
  .xl--col-4-11 {
    width: 36.3636%;
  }
  .xl--col-5-11 {
    width: 45.4545%;
  }
  .xl--col-6-11 {
    width: 54.5454%;
  }
  .xl--col-7-11 {
    width: 63.6363%;
  }
  .xl--col-8-11 {
    width: 72.7272%;
  }
  .xl--col-9-11 {
    width: 81.8181%;
  }
  .xl--col-10-11 {
    width: 90.9090%;
  }
  /**
	 * Twelfths
	 */
  .xl--col-1-12 {
    width: 8.333%;
  }
  .xl--col-2-12 {
    width: 16.666%;
  }
  .xl--col-5-12 {
    width: 41.666%;
  }
  .xl--col-7-12 {
    width: 58.333%;
  }
  .xl--col-11-12 {
    width: 91.666%;
  }
}

@media only screen and (min-width: 64em) {
  .xl--show {
    display: inline-block;
  }
  .xl--hide {
    display: none;
  }
}

/*------------------------------------*	$PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*	$PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items back to the left by certain amounts.
 */
/* Global grid reset - setting font to 0 lets grid blocks bump next to each other */
.grid {
  font-size: 0;
}

.grid__item {
  font-size: 14px;
  font-size: 1.4rem;
}

.sidr {
  display: block;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 999999;
  width: 260px;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Raleway", sans-serif;
  font-size: 14;
  background: #222;
  color: #fff;
  box-shadow: 0 0 5px 5px #222 inset;
}

.sidr .sidr-inner {
  padding: 0 0 15px;
}

.sidr .sidr-inner > p {
  margin-left: 15px;
  margin-right: 15px;
}

.sidr.right {
  left: auto;
  right: -260px;
}

.sidr.left {
  left: -260px;
  right: auto;
}

.sidr p {
  font-size: 12;
  margin: 0 0 12px;
}

.sidr p a {
  color: rgba(255, 255, 255, 0.9);
}

.sidr > p {
  margin-left: 15px;
  margin-right: 15px;
}

.sidr ul {
  display: block;
  margin: 0 0 15px;
  padding: 0;
  border-top: 1px solid #090909;
  border-bottom: 1px solid #3c3c3c;
}

.sidr ul li {
  display: block;
  margin: 0;
  line-height: 48px;
  border-top: 1px solid #3c3c3c;
  border-bottom: 1px solid #090909;
}

.sidr ul li:hover, .sidr ul li.active, .sidr ul li.sidr-class-active {
  border-top: 0;
  line-height: 49px;
}

.sidr ul li:hover > a,
.sidr ul li:hover > span, .sidr ul li.active > a,
.sidr ul li.active > span, .sidr ul li.sidr-class-active > a,
.sidr ul li.sidr-class-active > span {
  box-shadow: 0 0 15px 3px #222 inset;
}

.sidr ul li a,
.sidr ul li span {
  padding: 0 15px;
  display: block;
  text-decoration: none;
  color: #fff;
}

.sidr ul li ul {
  border-bottom: 0;
  margin: 0;
}

.sidr ul li ul li {
  line-height: 40px;
  font-size: 12;
}

.sidr ul li ul li:last-child {
  border-bottom: 0;
}

.sidr ul li ul li:hover, .sidr ul li ul li.active, .sidr ul li ul li.sidr-class-active {
  border-top: 0;
  line-height: 41px;
}

.sidr ul li ul li:hover > a,
.sidr ul li ul li:hover > span, .sidr ul li ul li.active > a,
.sidr ul li ul li.active > span, .sidr ul li ul li.sidr-class-active > a,
.sidr ul li ul li.sidr-class-active > span {
  box-shadow: 0 0 15px 3px #222 inset;
}

.sidr ul li ul li a,
.sidr ul li ul li span {
  color: rgba(255, 255, 255, 0.8);
  padding-left: 30px;
}

.sidr form {
  margin: 0 15px;
}

.sidr label {
  font-size: 12;
}

.sidr input[type="text"],
.sidr input[type="password"],
.sidr input[type="date"],
.sidr input[type="datetime"],
.sidr input[type="email"],
.sidr input[type="number"],
.sidr input[type="search"],
.sidr input[type="tel"],
.sidr input[type="time"],
.sidr input[type="url"],
.sidr textarea,
.sidr select {
  width: 100%;
  font-size: 12;
  padding: 5px;
  box-sizing: border-box;
  margin: 0 0 10px;
  border-radius: 2px;
  border: 0;
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: block;
  clear: both;
}

.sidr input[type=checkbox] {
  width: auto;
  display: inline;
  clear: none;
}

.sidr input[type=button],
.sidr input[type=submit] {
  color: #222;
  background: #fff;
}

.sidr input[type=button]:hover,
.sidr input[type=submit]:hover {
  background: rgba(255, 255, 255, 0.9);
}

.not_logged_in_header {
  text-align: center;
  min-height: 100px;
  padding-top: 20px;
  width: 100%;
  margin-bottom: 50px;
  border-bottom: solid 1px #d7d5d5;
}

.sidr-open .fa-bars:before {
  content: "\f00d";
}

.global-header {
  width: 100%;
  padding: 3rem;
  margin: 0;
  background: #161616;
  font-family: "Raleway", sans-serif;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .global-header {
    text-align: left;
  }
}

@media only screen and (min-width: 64em) {
  .global-header {
    padding: 3rem 8rem;
  }
}

.global-header .global-header__logo {
  display: inline-block;
  max-width: 200px;
  margin-top: -12px;
}

.global-header .account_header_menu {
  display: none;
  float: right;
  margin: 0;
  padding: 14px 0 0;
}

@media only screen and (min-width: 48em) {
  .global-header .account_header_menu {
    display: inline-block;
  }
}

.global-header .account_header_menu li {
  display: inline-block;
  padding: 0 10px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
}

.global-header .account_header_menu li:before {
  content: '';
}

.global-header .account_header_menu li.logout_link:before {
  content: '';
  display: inline-block;
  border-left: solid 1px #fff;
  height: 18px;
  width: 1px;
  margin: 0 0 -3px 5px;
}

.global-header .account_header_menu a {
  color: #fff;
  display: inline-block;
}

.global-header .account_header_menu a:hover {
  color: #00bfbf;
}

#page {
  max-width: 1024px;
  padding: 0 3rem;
  margin: 0 auto;
  text-align: left;
}

#page .page__title {
  margin-bottom: 20px;
}

@media only screen and (min-width: 64em) {
  #page .page__title {
    text-align: center;
  }
}

#loggedin_page {
  width: 100%;
  text-align: left;
  font-weight: normal;
}

.account_section_wrapper {
  position:relative;
  background: #222;
  font-size: 0;
}

section#change-plans {
  position:absolute;
  height:100%;
}

#sidr-main ul li:before {
  display: none;
  content: '';
}

#responsive-menu-button {
  font-size: 2em;
  color: #fff;
  display: inline-block;
  float: left;
  text-decoration: none;
  outline: none;
}

@media only screen and (min-width: 48em) {
  #responsive-menu-button {
    display: none;
  }
}

#sidebar {
  display: none;
  vertical-align: top;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (min-width: 48em) {
  #sidebar {
    width: 25%;
    padding: 40px 20px;
    display: inline-block;
  }
}

#sidebar ul {
  text-align: left;
  margin: 0;
  padding: 0;
  display: none;
}

@media only screen and (min-width: 48em) {
  #sidebar ul {
    display: block;
  }
}

#sidebar ul li {
  list-style-type: none;
  border-bottom: solid 1px #4d4d4d;
  color: #d7d7d5;
}

#sidebar ul li:before {
  display: none;
  content: '';
}

#sidebar ul li:last-child {
  border-bottom: none;
}

#sidebar ul li a {
  color: #d7d7d5;
  display: block;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  padding: 15px 10px;
  outline: none;
}

#sidebar ul li a:hover {
  color: #00bfbf;
}

.right_section {
  display: inline-block;
  vertical-align: top;
  background: #f2f2f2;
  padding: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  width: 100%;
  font-weight: normal;
}

@media only screen and (min-width: 48em) {
  .right_section {
    width: 75%;
    padding: 70px;
  }
}

.content_padding {
  padding: 50px 40px;
  margin: 20px 0;
}

.bg_white {
  background: #FFF;
}

.bg_blue {
  background: #506379;
}

.bg_primary {
  background: #00bfbf;
  color: #FFF;
}

.bg_primary a {
  color: #FFF;
}

.bg_primary a:hover {
  color: #000;
}

.bg_secondary {
  background: #333333;
  color: #FFF;
}

.bg_secondary a {
  color: #FFF;
}

.bg_secondary a:hover {
  color: #000;
}

.text_center {
  text-align: center;
}

.text_left {
  text-align: left;
}

#info_box {
  padding: 20px;
  display: none;
}

#info_box p {
  font-weight: 100;
}

#account_login {
  max-width: 430px;
  margin: 0 auto;
  text-align: center;
}

#account_register {
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

#account_register .grid {
  margin-left: 0;
  display: inline-flex;
  width: 100%;
}

#account_register .col55 .colWrap {
  max-width: 96%;
  width: 440px;
  margin: 0 auto;
}

#account_register .col45 .colWrap {
  max-width: 96%;
  width: 358px;
  margin: 0 auto;
  font-family: "Roboto Condensed",sans-serif;
}

#account_register .col55 {
  max-width: 100% !important;
  width: 100%;
  text-align: center;
  height: 100%;
  align-items: stretch;
}

#account_register .col45 {
  max-width: 45% !important;
  width: 100%;
  color: #fff;
  height: inherit;
  align-items: stretch;
  padding-top: 54px;
}

#account_register .col55 img {
  margin: 0 auto;
  display: block;
}

#account_register .col55 .fakeFooter {
  margin-top: 0%;
  color: #fff;
}

#account_register .col55 .fakeFooter a {
  color: #fff;
}

#account_register .col55 h3 {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  line-height: 36px;
  font-weight: 400;
  color: #00C1C0;
}

#account_register .col55 p {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 12px;
}

.reg_content {
  padding-bottom: 50px;
}

#account_register .col55 form label {
  color: #fff;
  text-transform: capitalize;
  font-size: 12px !important;
  font-family: "Roboto Condensed",sans-serif;
  font-weight: normal !important;
  display: block;
  margin-top: 25px;
  text-align: left;
}

#account_register .col55 form input {
  margin-top: 0px;
}

#account_register .col55 form input#register {
  margin: 50px auto 24px !important;
  display: block;
  width: 100%;
  background: #00C170;
  color: #ffffff !important;
  font-family: "Roboto Condensed",sans-serif;
  text-transform: capitalize;
  border: none;
  transition: all .3s ease;
}

#account_register .col55 form input#register:disabled:hover {
  cursor: not-allowed !important;
}

#account_register .col45 h4 {
  font-size: 18px;
  color: #00C1C0;
  font-weight: 500;
}

#account_register .col45 ul li {
  list-style-type: disc;
  font-size: 12px;
}

#account_register .col45 p {
  font-size: 12px;
}

@media only screen and (min-width: 48em) {
  .reg_content {
    padding-right: 50px;
    padding-bottom: 100px;
  }
}

.reg_content h4 {
  padding-bottom: 10px;
}

.reg_content ul {
  margin-top: 0;
}

.reg_content p {
  padding: 1em 0;
}

#payment-form {
  margin-top: 2em;
}

.form_heading {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}

.form-title {
  padding: 0 0 10px;
}

.form-sep {
  margin: 3em 0;
}

@media only screen and (min-width: 64em) {
  .form-row--third input[type="text"] {
    float: left;
    width: 32.3333%;
    margin-left: 1.5%;
  }
  .form-row--third input[type="text"]:first-child {
    margin-left: 0;
  }
  .form-row--third:after {
    content: '';
    display: block;
    clear: both;
  }
}

.hascard {
  color: #dedede;
  border-color: #dedede;
}

.hascard:focus {
  color: #000;
}

.thank-you-message {
  font-size: 16px;
  font-size: 1.6rem;
  background: #2a3440;
  color: #FFFFFF;
}

.thank-you-message .thank_you_img {
  display: inline-block;
  margin: 0px 0 10px;
}

.thank-you-message .return_to_haste {
  margin-top: 45px;
}

.small_text {
  font-size: 10px;
}

strong, b {
  font-weight: bold;
}

label {
  display: none;
}

input[type="text"], input[type="email"], input[type="phone"], input[type="password"], select {
  padding: 12px 15px;
  width: 100%;
  margin-top: 15px;
  border: solid 1px #d7d5d5 !important;
  background: #FFF !important;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="phone"]:focus, input[type="password"]:focus, select:focus {
  outline: solid 2px #00bfbf;
}

input[type="text"].password_level_one, input[type="text"].error_on_field, input[type="email"].password_level_one, input[type="email"].error_on_field, input[type="phone"].password_level_one, input[type="phone"].error_on_field, input[type="password"].password_level_one, input[type="password"].error_on_field, select.password_level_one, select.error_on_field {
  outline: solid 2px #ff2500;
}

input[type="text"].password_level_two, input[type="email"].password_level_two, input[type="phone"].password_level_two, input[type="password"].password_level_two, select.password_level_two {
  outline: solid 2px #ff9000;
}

input[type="text"].password_level_three, input[type="email"].password_level_three, input[type="phone"].password_level_three, input[type="password"].password_level_three, select.password_level_three {
  outline: solid 2px #ffc000;
}

input[type="text"].password_level_four, input[type="email"].password_level_four, input[type="phone"].password_level_four, input[type="password"].password_level_four, select.password_level_four {
  outline: solid 2px #00ffff;
}

input[type="text"].password_level_five, input[type="text"].success_on_field, input[type="email"].password_level_five, input[type="email"].success_on_field, input[type="phone"].password_level_five, input[type="phone"].success_on_field, input[type="password"].password_level_five, input[type="password"].success_on_field, select.password_level_five, select.success_on_field {
  outline: solid 2px #1cd83f;
}

input[type="text"].button:focus, input[type="email"].button:focus, input[type="phone"].button:focus, input[type="password"].button:focus, select.button:focus {
  outline: none;
}

input[type="checkbox"] {
  padding: 12px 15px;
  margin-top: 15px;
  border: solid 1px #333 !important;
  background: #d7d5d5 !important;
  width: auto;
  display: inline-block;
  margin-right: 10px;
}

input[type="button"] {
  padding: 12px 15px;
  width: 100%;
  margin-top: 15px;
  border: solid 2px #333 !important;
  background: none !important;
  color: #333 !important;
  font-weight: bold;
  letter-spacing: 0.05em;
}

input[type="button"]:hover {
  background: #00bfbf !important;
}

input[type="submit"] {
  margin: 65px 0 30px;
  width: auto;
  color: #00bfbf !important;
  font-weight: bold !important;
  letter-spacing: 1;
  border-color: #00bfbf !important;
}

input[type="submit"]:focus {
  outline: none;
}

input[type="submit"]:hover {
  background: #00bfbf !important;
  border-color: #333 !important;
  color: #333 !important;
}

input[type="submit"]:disabled {
  border-color: #ccc !important;
  color: #ccc !important;
  cursor: none;
}

.terms_conditions {
  padding: 25px 0 0;
}

.register_error {
  text-align: left;
  color: #ff2500;
}

.register_error p {
  padding: 5px;
}

.password_req_1, .password_req_2, .password_req_3 {
  text-align: left;
  padding: 2px 5px;
  color: #949494;
}

.password_req_met {
  display: none;
}

.password_requirements {
  display: none;
}

table {
  width: 100%;
}

table th {
  border-bottom: solid 2px #222222;
  padding: 10px;
  font-family: "Roboto Condensed", sans-serif;
  color: #999999;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
}

table td {
  padding: 10px;
  color: #222222;
  font-size: 12px;
  font-size: 1.2rem;
  border-bottom: solid 1px #d7d5d5;
}

#devices table {
  width: 100%;
}

#devices table td input[type="button"] {
  border: none !important;
  font-weight: normal;
  padding: 0;
  color: #00bfbf !important;
  margin: 0;
}

#devices table td input[type="button"]:hover {
  background: none !important;
  color: #222222 !important;
}

.global-footer {
  width: 100%;
  background: #161616;
  text-align: left;
  padding: 3rem;
  color: #999999;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
}

@media only screen and (min-width: 64em) {
  .global-footer {
    padding: 3rem 8rem;
  }
}

.global-footer a {
  color: #fff;
  padding: 0 5px 0 0;
}

.global-footer a:hover {
  color: #00bfbf;
}

.global-footer a:before {
  content: "/";
  display: inline-block;
  width: 10px;
  color: #999999;
  margin-right: 5px;
}

.global-footer .menu-footer-menu-container, .global-footer .menu {
  display: inline-block;
}

.global-footer ul {
  text-align: left;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.global-footer ul li {
  padding: 0;
  margin: 0;
  display: inline-block;
}

.global-footer ul li:before {
  content: '';
}

.logged-in-nav {
  position: fixed;
  bottom: 0px;
  right: 0px;
  padding: 15px;
  background: #fff;
  font-weight: bold;
  opacity: 0.5;
  color: #00bfbf;
}

.logged-in-nav a {
  color: #000;
}

.logged-in-nav:hover {
  opacity: 1;
}

.logged-in-nav ul {
  margin: 0;
  padding: 0;
}

.logged-in-nav ul li {
  display: inline-block;
  margin: 0;
  padding: 0 5px;
}

.trophy {
  position: relative;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  margin-right: 25px;
}

.trophy:before {
  content: '';
  background: url(../../img/trophy.png) no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  width: 15px;
}

.free_game_progress {
  padding-top: 20px;
  text-align: center;
}

@media only screen and (min-width: 64em) {
  .free_game_progress {
    text-align: right;
  }
}

.free_game {
  font-size: 11px;
  color: #222222;
  margin: 0 0 2em;
}

.progress_bar {
  width: 100%;
  height: 46px;
  background-color: #f1f1f1;
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 64em) {
  .progress_bar {
    float: right;
  }
}

.progress_bar .progress_bar_progress {
  background: #02bfc1;
  background: -webkit-linear-gradient(left, #02bfc1, #01ffff);
  background: linear-gradient(to right, #02bfc1, #01ffff);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: skew(-54deg);
  -ms-transform: skew(-54deg);
  transform: skew(-54deg);
}

.progress_bar .progress_bar_overlay {
  background: url(../../img/tracker-02-inverse.png) 50% 50% no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  vertical-align: middle;
  font-family: 'Raleway';
  font-weight: 500;
}

.progress_bar .progress_bar_overlay span {
  display: none;
  padding: 8px 20px 0;
}

@media only screen and (min-width: 64em) {
  .progress_bar .progress_bar_overlay span {
    display: block;
  }
}

.xprogress_bar.in_progress .xprogress_bar_progress:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  height: 0;
  width: 0;
  border-bottom: 46px solid #f1f1f1;
  border-left: 63px solid transparent;
  border-right: 0 solid transparent;
}

.xprogress_bar.in_progress .xprogress_bar_overlay {
  color: #d9d9d9;
}

#rewards_progress_wrapper {
  background: #fff;
  padding: 50px 20px;
  margin: 20px 0;
}

#rewards_progress_wrapper h4 {
  text-transform: uppercase;
  padding-top: 0;
  padding-bottom: 25px;
  font-size: 18px;
  font-weight: bold;
}

#rewards_progress_wrapper p {
  padding-bottom: 0;
}

small {
  color: #999999;
  font-size: 11px;
}

#haste-recap-list {
  padding: 50px 20px;
  margin: 20px 0;
  background: #FFF;
  overflow-x: scroll;
}

#haste-recap-list::-webkit-scrollbar {
  display: none;
}

#reward_reminder {
  border: solid 2px #00bfbf;
  padding: 15px;
  margin: 20px 0;
  position: relative;
  color: #222222;
}

@media only screen and (min-width: 48em) {
  #reward_reminder {
    padding: 15px 20px 15px 50px;
  }
}

#reward_reminder .dismiss-link {
  position: absolute;
  top: 5px;
  right: 20px;
}

#reward_reminder .dismiss-link a {
  color: #222222;
}

#reward_reminder .dismiss-link a:hover {
  color: #00bfbf;
}

#reward_reminder span {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
}

#reward_reminder .message {
  display: inline-block;
}

#reward_reminder .message p {
  padding-bottom: 0;
}

@media only screen and (min-width: 48em) {
  #reward_reminder .message {
    width: 80%;
  }
}

#reward_reminder .trophy_lg {
  display: block;
  height: 30px;
  background: url(../../img/trophy-lg.png) no-repeat;
  background-position: 50% 0;
  margin: 0 0 1em;
}

@media only screen and (min-width: 48em) {
  #reward_reminder .trophy_lg {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    max-width: 50px;
    margin: 0;
    background-position: 0;
  }
}

#profile_overview {
  width: 100%;
  display: block;
  background: #FFF;
  padding: 50px 40px;
  vertical-align: top;
  margin: 20px 0;
  word-wrap: break-word;
  text-align: center;
}

@media only screen and (min-width: 64em) {
  #profile_overview {
    text-align: left;
    width: 48%;
    display: inline-block;
    margin-right: 2%;
  }
}

#profile_overview .profile {
  width: 100%;
  margin: 0 0 30px;
}

#profile_overview .profile__row {
  margin: 0 0 0.5em;
}

#profile_overview .profile__label {
  color: #999999;
}

@media only screen and (min-width: 80em) {
  #profile_overview .profile__row div {
    display: inline-block;
  }
  #profile_overview .profile__row .profile__label {
    width: 105px;
  }
}

#cta {
  width: 100%;
  display: block;
  background: #FFF;
  padding: 50px 40px;
  vertical-align: top;
  margin: 20px 0;
  text-align: center;
  float: right;
}

@media only screen and (min-width: 64em) {
  #cta {
    width: 49%;
    display: inline-block;
  }
}

#cta p {
  padding: 0 0 20px;
}

#cta.purple {
  background: #8d79ab;
}

#cta.purple .button {
  border-color: #222;
  color: #222;
}

#cta.blue {
  background: #00bfbf;
}

#cta.blue .button {
  border-color: #222;
  color: #222;
}

.unpaid {
  color: red;
}

#cancel-form {
  font-size: 18px;
}

#cancel-form p {
  padding-bottom: 10px;
}

#cancel-form .other_reason {
  display: inline-block;
  width: auto;
  padding: 5px 10px !important;
  margin-top: 0;
  margin-left: 10px;
}

#payment-form .form-row.cc-fields input::placeholder {
  color: #8898AA !important;
}


#cancel-form button#stripesubmit {
  color: #00bfbf !important;
  font-weight: bold !important;
  background: #FFF;
}

#cancel-form button#stripesubmit[disabled], #payment-form button#stripesubmit[disabled] {
    cursor: not-allowed;
    opacity: .5;
}
#cancel-form button#stripesubmit i.fa-spinner, #payment-form button#stripesubmit i.fa-spinner {
  display: none;
}
#cancel-form button#stripesubmit[disabled] i.fa-spinner, #payment-form button#stripesubmit[disabled] i.fa-spinner {
  display: inline-block;
}

/* Payment form button */
#payment-form button#stripesubmit {
    line-height: initial !important;
    display: block;
    background: #666EE8;
    color: white !important;
    box-shadow: 0 7px 14px 0 rgba(49,49,93,0.10), 0 3px 6px 0 rgba(0,0,0,0.08);
    border-radius: 4px;
    border: 0 !important;
    margin-top: 20px;
    font-size: 15px !important;
    font-weight: 400 !important;
    width: 100%;
    height: 40px;
    outline: none;
}

#change-plans .button.change-plan-button[disabled] {
    cursor: not-allowed;
    opacity: .5;
}
#change-plans .button.change-plan-button i.fa-spinner {
  display: none;
}
#change-plans .button.change-plan-button[disabled] i.fa-spinner, #payment-form button#stripesubmit[disabled] i.fa-spinner {
  display: inline-block;
}
#change-plans .button.change-plan-button[disabled]:hover {
    background-color: #00c1c0;
    /*color: #FFF;*/
}
/* Hiding Google conversion iframe to remove whitespace under footer */
iframe[name=google_conversion_frame] {
  display: none;
}

@media all and (max-width: 749px) {
  #account_register .grid {
    display: block;
  }

  #account_register .col55, #account_register .col45 {
    display: block;
    width: 100%;
    max-width: 100% !important;
  }

  #account_register .col55 .fakeFooter {
    display: none;
  }

  .global-footer {
    display: block !important;
  }
}
