/** 1. Set default font family to sans-serif. 2. Prevent iOS text size adjust after orientation change, without disabling user zoom. */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/** Remove default margin. */
body {
  margin: 0;
}

/* HTML5 display definitions ========================================================================== */
/** Correct `block` display not defined for any HTML5 element in IE 8/9. Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox. Correct `block` display not defined for `main` in IE 11. */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/** 1. Correct `inline-block` display not defined in IE 8/9. 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/** Prevent modern browsers from displaying `audio` without controls. Remove excess height in iOS 5 devices. */
audio:not([controls]) {
  display: none;
  height: 0;
}

/** Address `[hidden]` styling not present in IE 8/9/10. Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. */
[hidden],
template {
  display: none;
}

/* Links ========================================================================== */
/** Remove the gray background color from active links in IE 10. */
a {
  background-color: transparent;
}

/** Improve readability when focused and also mouse hovered in all browsers. */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics ========================================================================== */
/** Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
abbr[title] {
  border-bottom: 1px dotted;
}

/** Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
b,
strong {
  font-weight: bold;
}

/** Address styling not present in Safari and Chrome. */
dfn {
  font-style: italic;
}

/** Address variable `h1` font-size and margin within `section` and `article` contexts in Firefox 4+, Safari, and Chrome. */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/** Address styling not present in IE 8/9. */
mark {
  background: #ff0;
  color: #000;
}

/** Address inconsistent and variable font size in all browsers. */
small {
  font-size: 80%;
}

/** Prevent `sub` and `sup` affecting `line-height` in all browsers. */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content ========================================================================== */
/** Remove border when inside `a` element in IE 8/9/10. */
img {
  border: 0;
}

/** Correct overflow not hidden in IE 9/10/11. */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content ========================================================================== */
/** Address margin not present in IE 8/9 and Safari. */
figure {
  margin: 1em 40px;
}

/** Address differences between Firefox and other browsers. */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/** Contain overflow in all browsers. */
pre {
  overflow: auto;
}

/** Address odd `em`-unit font size rendering in all browsers. */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms ========================================================================== */
/** Known limitation: by default, Chrome and Safari on OS X allow very limited styling of `select`, unless a `border` property is set. */
/** 1. Correct color not being inherited. Known issue: affects color of disabled elements. 2. Correct font properties not being inherited. 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/** Address `overflow` set to `hidden` in IE 8/9/10/11. */
button {
  overflow: visible;
}

/** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. Correct `select` style inheritance in Firefox. */
button,
select {
  text-transform: none;
}

/** 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls. 2. Correct inability to style clickable `input` types in iOS. 3. Improve usability and consistency of cursor style between image-type `input` and others. */
button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/** Re-set default cursor for disabled elements. */
button[disabled],
html input[disabled] {
  cursor: default;
}

/** Remove inner padding and border in Firefox 4+. */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/** Address Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet. */
input {
  line-height: normal;
}

/** It's recommended that you don't attempt to style these elements. Firefox's implementation doesn't respect box-sizing, padding, or width.  1. Address box sizing set to `content-box` in IE 8/9/10. 2. Remove excess padding in IE 8/9/10. */
input[type='checkbox'],
input[type='radio'] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/** Fix the cursor style for Chrome's increment/decrement buttons. For certain `font-size` values of the `input`, it causes the cursor style of the decrement button to change from `default` to `text`. */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  height: auto;
}

/** 1. Address `appearance` set to `searchfield` in Safari and Chrome. 2. Address `box-sizing` set to `border-box` in Safari and Chrome (include `-moz` to future-proof). */
input[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/** Remove inner padding and search cancel button in Safari and Chrome on OS X. Safari (but not Chrome) clips the cancel button when the search input has padding (and `textfield` appearance). */
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/** Define consistent border, margin, and padding. */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/** 1. Correct `color` not being inherited in IE 8/9/10/11. 2. Remove padding so people aren't caught out if they zero out fieldsets. */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/** Remove default vertical scrollbar in IE 8/9/10/11. */
textarea {
  overflow: auto;
}

/** Don't inherit the `font-weight` (applied by a rule above). NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
optgroup {
  font-weight: bold;
}

/* Tables ========================================================================== */
/** Remove most spacing between table cells. */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #333;
  margin: 0;
  padding: 6px 16px 12px;
}

p {
  margin: 0 0 10px;
}

a {
  text-decoration: none;
  color: #4a88f2;
}
a:hover {
  text-decoration: underline;
}

/* Body */
html,
body {
  width: 100%;
  height: 100%;
}

body {
  color: #4f4f4f;
  cursor: default;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: normal;
  line-height: 15px;
  word-wrap: break-word;
  background-color: #808080;
}

body.default,
body.website {
  background-color: #cdd0dc;
  background-image: url('../img/bg.jpg?1453385884');
}
@media all and (-webkit-min-device-pixel-ratio: 1.5),
  all and (-o-min-device-pixel-ratio: 3 / 2),
  all and (min--moz-device-pixel-ratio: 1.5),
  all and (min-device-pixel-ratio: 1.5) {
  body.default,
  body.website {
    background-image: url('../img/bg@2x.jpg?1451386447');
    background-size: 100px 100px;
  }
}

body.website iframe {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

body.website .protect {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 6000;
}

.clear {
  clear: both;
  height: 0;
  overflow: hidden;
}

.bg {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -9000;
  overflow: hidden;
}
.bg img {
  position: absolute;
  left: 0px;
  top: 0px;
  border: medium none;
  z-index: -9000;
  width: 100%;
}

.downloader {
  position: absolute;
  left: 0;
  top: 0;
  display: table;
  width: 100%;
  height: 100%;
  z-index: 6010;
}

.container {
  display: table-cell;
  vertical-align: middle;
  padding: 0 40px;
}

.app {
  width: 514px;
  margin: 40px auto;
  display: none;
  margin-bottom: 92px;
}
.app.with-links {
  margin-bottom: 92px;
}

.console {
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 0 15px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0 15px;
  box-shadow: rgba(0, 0, 0, 0.4) 0 0 15px;
  padding: 3px;
  background-color: #fdfdfd;
  position: relative;
  z-index: 6020;
}
.console .central {
  padding: 12px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -moz-box-shadow: rgba(0, 0, 0, 0.17) 0 0 12px inset;
  -webkit-box-shadow: rgba(0, 0, 0, 0.17) 0 0 12px inset;
  box-shadow: rgba(0, 0, 0, 0.17) 0 0 12px inset;
}
.console a.close {
  position: absolute;
  top: -26px;
  right: 15px;
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
}
.console a.close:hover {
  text-decoration: none;
}
.console a.close:hover span {
  color: #ff192c;
}

body.default .console {
  -moz-box-shadow: rgba(0, 0, 0, 0.2) 0 0 15px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0 15px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 15px;
}

.avatar {
  float: left;
  width: 200px;
  height: 200px;
  padding-right: 12px;
  overflow: hidden;
}
.avatar img {
  display: block;
  border: 0 none;
  margin: 0;
}
.avatar .pro {
  width: 200px;
  height: 200px;
  overflow: hidden;
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  border-radius: 9px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  background-color: #4f5680;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: url('../img/unlock.jpg?1451386659');
}
@media all and (-webkit-min-device-pixel-ratio: 1.5),
  all and (-o-min-device-pixel-ratio: 3 / 2),
  all and (min--moz-device-pixel-ratio: 1.5),
  all and (min-device-pixel-ratio: 1.5) {
  .avatar .pro {
    background-image: url('../img/unlock@2x.jpg?1451386642');
    background-size: 600px 200px;
  }
}
.avatar .pro.unlocked {
  background-position: -200px 0;
}
.avatar .pro.download {
  background-position: -400px 0;
}

.main {
  float: left;
  width: 272px;
}

.divider {
  height: 4px;
  overflow: hidden;
  background: url('../img/divider.png?1437993173');
}

.control-group {
  margin-bottom: 5px;
  position: relative;
}

.control-group input[type='text'] {
  margin: 0;
  border: 2px solid #dbdde1;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 3px 11px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 26px;
  height: 26px;
  color: #4f4f4f;
  background-color: #fff;
  outline: 0 none !important;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 214px;
  -moz-box-shadow: rgba(219, 221, 225, 0.5) 0 1px 3px inset;
  -webkit-box-shadow: rgba(219, 221, 225, 0.5) 0 1px 3px inset;
  box-shadow: rgba(219, 221, 225, 0.5) 0 1px 3px inset;
}
.control-group input[type='text'].placeholder {
  color: #bfc1c6;
  font-weight: normal;
}
.control-group span.error {
  margin-left: 10px;
  color: #e04f5b;
}

.error {
  overflow: hidden;
  color: #e04f5b;
  padding: 1px 3px 0;
}

.dynamic {
  padding: 0 16px;
}

.expand {
  display: table-cell;
  vertical-align: middle;
  min-height: 134px;
}

.download-code {
  padding: 0 27px;
}
.download-code input[type='text'] {
  width: 160px;
}

.code-submit {
  padding-left: 51px;
  position: relative;
}

.mailing-list {
  padding: 11px 0 13px;
}
.mailing-list .invitation {
  padding-bottom: 8px;
}
.mailing-list input[type='text'] {
  font-size: 13px;
  line-height: 25px;
  height: 25px;
}
.mailing-list .options {
  padding-top: 2px;
}
.mailing-list .no-thanks {
  float: left;
  width: 106px;
  padding-top: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 17px;
}
.mailing-list .no-thanks a {
  color: #bfc1c6;
}
.mailing-list .no-thanks a:hover {
  text-decoration: none;
  color: #24c700;
}
.mailing-list .submit-data-form {
  float: left;
}

.download-icon {
  padding: 8px 0 0 86px;
  height: 60px;
  overflow: hidden;
}
.download-icon .download-link {
  display: block;
  width: 60px;
  height: 60px;
  overflow: hidden;
  background: url('../img/icon.gif?1440629719');
  background-position: 0 0;
  background-repeat: none;
  outline: 0 none;
}
.download-icon .download-link:hover {
  background-position: 0 -61px;
}
.download-icon .download-link-downloaded {
  width: 60px;
  height: 60px;
  overflow: hidden;
  background: url('../img/icon.gif?1440629719');
  background-position: 0 0;
  background-repeat: none;
  outline: 0 none;
}
.download-icon .download-progress {
  width: 60px;
  height: 60px;
  overflow: hidden;
  background: url('../img/icon.gif?1440629719');
  background-position: 0 -122px;
  background-repeat: none;
  outline: 0 none;
}
.download-icon .download-progress.started {
  background-position: 0 -183px;
}

.download-message {
  padding-top: 3px;
  text-align: center;
}
.download-message span {
  color: #b8babf;
}

.download-button {
  padding: 7px 0 12px 53px;
}

.message-header {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 19px;
}

.message {
  margin-bottom: 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}
.message span {
  font-weight: 800;
}

.login-blocked .message {
  margin-bottom: 5px;
}

.preview-message {
  margin-bottom: 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 19px;
  margin-bottom: 5px;
  color: #00af46;
}

.app-refresh {
  margin-bottom: 7px;
}

.btn {
  display: block;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #598df6;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 27px;
  color: #fff;
  height: 27px;
  width: 132px;
  border: 1px solid #4879f3;
  border-top-color: #5da1f7;
  border-bottom-color: #2e50ee;
  text-align: center;
  background: #76aff8;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc2YWZmOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzZjZiZjIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #76aff8 0%, #3f6bf2 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #76aff8), color-stop(100%, #3f6bf2));
  background: -webkit-linear-gradient(top, #76aff8 0%, #3f6bf2 100%);
  background: -o-linear-gradient(top, #76aff8 0%, #3f6bf2 100%);
  background: -ms-linear-gradient(top, #76aff8 0%, #3f6bf2 100%);
  background: linear-gradient(to bottom, #76aff8 0%, #3f6bf2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#76aff8', endColorstr='#3f6bf2',GradientType=0 );
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-box-shadow: rgba(179, 182, 186, 0.8) 0 1px 2px;
  -webkit-box-shadow: rgba(179, 182, 186, 0.8) 0 1px 2px;
  box-shadow: rgba(179, 182, 186, 0.8) 0 1px 2px;
}
.btn:hover {
  text-decoration: none;
  background: #8ebff9;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzhlYmZmOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM0YzgwZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #8ebff9 0%, #4c80f5 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #8ebff9), color-stop(100%, #4c80f5));
  background: -webkit-linear-gradient(top, #8ebff9 0%, #4c80f5 100%);
  background: -o-linear-gradient(top, #8ebff9 0%, #4c80f5 100%);
  background: -ms-linear-gradient(top, #8ebff9 0%, #4c80f5 100%);
  background: linear-gradient(to bottom, #8ebff9 0%, #4c80f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8ebff9', endColorstr='#4c80f5',GradientType=0 );
}

.btn-green {
  border: 1px solid #009720;
  border-top-color: #00b327;
  border-bottom-color: #01891f;
  background: #38cc64;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzM4Y2M2NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwZGEwMjQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #38cc64 0%, #0da024 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #38cc64), color-stop(100%, #0da024));
  background: -webkit-linear-gradient(top, #38cc64 0%, #0da024 100%);
  background: -o-linear-gradient(top, #38cc64 0%, #0da024 100%);
  background: -ms-linear-gradient(top, #38cc64 0%, #0da024 100%);
  background: linear-gradient(to bottom, #38cc64 0%, #0da024 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#38cc64', endColorstr='#0da024',GradientType=0 );
}
.btn-green:hover {
  background: #43d678;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQzZDY3OCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxMGIzMmIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #43d678 0%, #10b32b 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #43d678), color-stop(100%, #10b32b));
  background: -webkit-linear-gradient(top, #43d678 0%, #10b32b 100%);
  background: -o-linear-gradient(top, #43d678 0%, #10b32b 100%);
  background: -ms-linear-gradient(top, #43d678 0%, #10b32b 100%);
  background: linear-gradient(to bottom, #43d678 0%, #10b32b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#43d678', endColorstr='#10b32b',GradientType=0 );
}

.btn-blue-visual,
.btn-blue-visual:hover,
.btn-blue-visual:active,
.btn-blue-visual:focus,
.btn-blue-visual.active {
  background: #598df6;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc3YjNmOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzZDY5ZjMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #77b3f9 0%, #3d69f3 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #77b3f9), color-stop(100%, #3d69f3));
  background: -webkit-linear-gradient(top, #77b3f9 0%, #3d69f3 100%);
  background: -o-linear-gradient(top, #77b3f9 0%, #3d69f3 100%);
  background: -ms-linear-gradient(top, #77b3f9 0%, #3d69f3 100%);
  background: linear-gradient(to bottom, #77b3f9 0%, #3d69f3 100%);
  display: none;
}

.btn-downloaded,
.btn-downloaded:hover,
.btn-downloaded:active,
.btn-downloaded:focus,
.btn-downloaded.active {
  border-color: #e5e5e8 #d9d9dd #cccccf;
  background: #e2e2e5;
  background: -moz-linear-gradient(top, #efeff3 0%, #d4d5d8 100%);
  background: -webkit-linear-gradient(top, #efeff3 0%, #d4d5d8 100%);
  background: linear-gradient(to bottom, #efeff3 0%, #d4d5d8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efeff3', endColorstr='#d4d5d8',GradientType=0 );
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.help {
  font-size: 10px;
  line-height: 12px;
  padding: 8px 16px 0;
}
.help span {
  color: #d9dadb;
}

.policy {
  float: right;
  font-size: 10px;
  line-height: 12px;
  padding: 8px 16px 0;
}
.policy a {
  color: #c9cacf;
}

.links {
  position: absolute;
  left: 9px;
  bottom: -50px;
  background-color: #fff;
  z-index: 5000;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -moz-box-shadow: rgba(0, 0, 0, 0.3) 0 0 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 0 10px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 10px;
  padding: 8px 2px 8px 17px;
}
.links .label {
  color: #7d7e82;
  float: left;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  line-height: 20px;
  width: 40px;
}
.links a {
  font-size: 20px;
  line-height: 20px;
  display: block;
  float: left;
  margin-right: 18px;
  color: #7d7e82;
}
.links a:hover {
  color: #4a88f2;
}
.links a.instagram {
  margin-left: -3px;
  margin-right: 14px;
}
.links a svg {
  fill: #7d7e82;
  width: 20px;
  height: 20px;
}
.links a:hover svg {
  fill: #4a88f2;
}

.blocker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
}

.terms {
  display: none;
  padding: 20px 0 0;
  text-align: center;
  color: #838490;
}
.terms a {
  color: #838490;
  text-decoration: underline;
}

.test-mode-spacer {
  height: 64px;
}

.test-mode {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 19px 20px;
  background: #fff;
  border-top: 1px solid hsl(240deg 4% 73%);
  font-weight: 700;
  color: #545661;
  z-index: 99999;
  width: 100%;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
}
