/**
 * HTML5 ✰ Boilerplate
 *
 * style.css contains a reset, font normalization and some base styles.
 *
 * Credit is left where credit is due.
 * Much inspiration was taken from these projects:
 * - yui.yahooapis.com/2.8.1/build/base/base.css
 * - camendesign.com/design/
 * - praegnanz.de/weblog/htmlcssjs-kickstart
 */


/**
 * html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
 * v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark
 * html5doctor.com/html-5-reset-stylesheet/
 */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q { quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after { content: ""; content: none; }

ins { background-color: #ff9; color: #000; text-decoration: none; }

mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }

table { border-collapse: collapse; border-spacing: 0; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }

input, select { vertical-align: middle; }


/**
 * Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/
 */

body { font:13px/1.231 sans-serif; *font-size:small; } /* Hack retained to preserve specificity */
select, input, textarea, button { font-size: 99%; }

/* Normalize monospace sizing:
   en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */
pre, code, kbd, samp { font-family: monospace, sans-serif; }


/**
 * Minimal base styles.
 */

/* Always force a scrollbar in non-IE */
html { overflow-y: scroll; }

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

ul, ol { margin-left: 2em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; list-style:none; list-style-image: none; }

small { font-size: 85%; }
strong, th { font-weight: bold; }
em { font-style: italic; }

td { vertical-align: top; }

/* Set sub, sup without affecting line-height: gist.github.com/413930 */
sub, sup { font-size: 75%; line-height: 0; position: relative; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

pre {
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; white-space: pre-wrap; word-wrap: break-word;
  padding: 15px;
}

textarea { overflow: auto; } /* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }

/* Hand cursor on clickable input elements */
label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; }

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea { margin: 0; }

/* Make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }

/**
 * You might tweak these..
 */

body, select, input, textarea {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #444;
  /* Set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */
}

/* Headers (h1, h2, etc) have no default font-size or margin; define those yourself */
h1, h2, h3, h4, h5, h6 { font-weight: bold; }

/**
 * Non-semantic helper classes: please define your styles before this section.
 */

/* For image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }



/**
 * Media queries for responsive design.
 *
 * These follow after primary styles so they will successfully override.
 */

@media all and (orientation:portrait) {
  /* Style adjustments for portrait mode goes here */

}

@media all and (orientation:landscape) {
  /* Style adjustments for landscape mode goes here */

}

/* Grade-A Mobile Browsers (Opera Mobile, Mobile Safari, Android Chrome)
   consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {


  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you: j.mp/textsizeadjust */
  /* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}


/**
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 */
@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
  -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}
/*


 */
/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
/* Text meant only for screen readers */
input[type=submit] {
  -webkit-appearance: none;
  background: #55bc75;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  padding: 15px 50px;
  width: 100%;
}
input[type=submit]:hover {
  background: rgb(121.582278481, 202.417721519, 146.6962025316);
}

.terms-of-service-container {
  border: 1px solid #dfdfdf;
  border-radius: 4px;
  font-size: 12px;
  height: 80px;
  margin-bottom: 20px;
  overflow-y: scroll;
  overscroll-behavior: contain;
  padding: 15px;
}
.terms-of-service-container p {
  margin-bottom: 1em;
}

.fineprint {
  color: #6f6f6f;
  font-size: 13px;
  line-height: 20px;
}

input:invalid, textarea:invalid {
  box-shadow: none;
}

html {
  background-color: #f6f7f8;
}

body {
  font-family: "Open Sans", sans-serif;
  margin: 35px auto;
  width: 600px;
}

.primary-header {
  /* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
  zoom: 1;
}
.primary-header:before, .primary-header:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.primary-header:after {
  clear: both;
}
.primary-header {
  margin-bottom: 25px;
}
.primary-header .brand {
  float: left;
  max-width: 170px;
}
.primary-header .brand img {
  max-width: 100%;
}
.primary-header h1 {
  color: #363636;
  float: right;
  font-size: 24px;
  font-weight: normal;
  margin-top: 25px;
}

.primary-footer {
  color: #716f6f;
  font-size: 12px;
  line-height: 20px;
  margin-top: 30px;
  text-align: center;
}

a {
  color: #55bc75;
  text-decoration: none;
}

.publisher-registration-form {
  background: #fff;
  border: 1px solid #d5dadf;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  color: #716f6f;
  font-size: 14px;
}
.publisher-registration-form .checkbox,
.publisher-registration-form .radio_buttons {
  display: inline-block;
  padding-left: 20px;
  padding-top: 5px;
}
.publisher-registration-form .checkbox input,
.publisher-registration-form .radio_buttons input {
  float: left;
  margin: 4px 0 0 -20px;
}

.form-header {
  background: #f9f9f9;
  border-bottom: 1px solid #dfdfdf;
  color: #8f8f8f;
  font-size: 18px;
  padding: 30px;
}
.form-header .plan-info {
  color: #363636;
}

fieldset {
  padding: 30px;
}
fieldset + fieldset {
  border-top: 1px solid #dfdfdf;
}
fieldset .legend {
  color: #363636;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 20px;
}

p {
  margin-bottom: 15px;
}

.control-group {
  /* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
  zoom: 1;
}
.control-group:before, .control-group:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.control-group:after {
  clear: both;
}
.control-group + .control-group {
  margin-top: 15px;
}

.control-label {
  font-weight: bold;
  padding-top: 12px;
}

.screen-reader {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}
.screen-reader:hover, .screen-reader:active, .screen-reader:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar */
}

input[type=email],
input[type=password],
input[type=tel],
input[type=text] {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: inset 0 1px 0 #ededed;
  display: inline-block;
  font-family: inherit;
  font-size: 14px;
  height: 47px;
  padding: 0 15px;
  width: 100%;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url(/assets/marketing/arrow-down-gray-hi-eb6ad39efdbc80348e02806ea2927fe0bd998e4371c540f959045b2859d7f318.png) no-repeat;
  background-position: right center;
  background-position: right 15px center;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  color: #222;
  font-size: 16px;
  height: 47px;
  max-width: 100%;
  padding: 0 34.5px 0 15px;
}

.span-half {
  float: left;
  width: 50%;
}
.span-half input {
  border-radius: 4px 0 0 4px;
}
.span-half + .span-half input {
  border-left: 0;
  border-radius: 0 4px 4px 0;
}

.control-group .span-1-3:first-child,
.control-group .span-2-3:first-child {
  margin-left: 0;
}

.span-2-3 {
  float: left;
  margin-left: 5%;
  width: 65%;
}

.span-1-3 {
  float: left;
  margin-left: 5%;
  width: 30%;
}

.controls .radio {
  display: block;
  font-weight: bold;
}
.controls .radio + .radio {
  margin-top: 10px;
}

.upsell-promo {
  color: #619b50;
  text-transform: uppercase;
}

#card_number {
  background: url(/assets/accepted-credit-cards-faf77529184f06874f2c8684db48e73583d73978f7d0256de7774d3f2a1dead2.png) no-repeat;
  background-position: right center;
  background-position: right 15px center;
  padding-right: 202px;
}

#expiration_month {
  border-radius: 4px 0 0 4px;
  width: 162px;
}

#expiration_year {
  border-left: 0;
  border-radius: 0;
  width: 90px;
}

#card_cvv {
  border-left: 0;
  border-radius: 0 4px 4px 0;
  width: 97px;
}

#expiration_month,
#expiration_year {
  float: left;
}

input[type=submit] {
  margin-bottom: 15px;
}

.validation-message {
  color: #f4793e;
  margin-bottom: 1em;
  padding: 30px;
  text-align: center;
}

.error {
  color: #f4793e;
  display: block;
  font-size: 14px;
  margin-top: 5px;
}

.field_with_errors input[type=email],
.field_with_errors input[type=password],
.field_with_errors input[type=tel],
.field_with_errors input[type=text],
.field_with_errors select {
  border-color: #f4793e;
}
