/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device 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/10/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 of focused elements when they are also in an
 * active/hover state.
 */
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 {
  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.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector
 */
button,
html input[type=button],
input[type=reset] {
  -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. CUSTOM FOR WEBFLOW: changed from `textfield` to `none` to normalize iOS rounded input
 * 2. CUSTOM FOR WEBFLOW: box-sizing: content-box rule removed
 *    (similar to normalize.css >=4.0.0)
 */
input[type=search] {
  -webkit-appearance: none;
  /* 1 */
}

/**
 * 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;
}

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

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 10px;
}

h1 {
  font-size: 38px;
  line-height: 44px;
  margin-top: 20px;
}

h2 {
  font-size: 32px;
  line-height: 36px;
  margin-top: 20px;
}

h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
}

h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}

h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}

h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

blockquote {
  margin: 0 0 10px 0;
  padding: 10px 20px;
  border-left: 5px solid #E2E2E2;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin: 0;
  margin-bottom: 10px;
}

figcaption {
  margin-top: 5px;
  text-align: center;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

button,
html input[type=button],
input[type=reset] {
  border: 0;
  cursor: pointer;
  -webkit-appearance: button;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type=checkbox]:focus {
  outline: 0;
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: 0.375em;
  padding: 0;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.375em;
}

input,
select,
textarea {
  display: block;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 16px;
}

[type=color],
[type=date],
[type=datetime],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
input:not([type]),
textarea {
  appearance: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-bottom: 0.75em;
  padding: 0.5em;
  transition: border-color 150ms ease;
  width: 100%;
}
[type=color]:hover,
[type=date]:hover,
[type=datetime]:hover,
[type=datetime-local]:hover,
[type=email]:hover,
[type=month]:hover,
[type=number]:hover,
[type=password]:hover,
[type=search]:hover,
[type=tel]:hover,
[type=text]:hover,
[type=time]:hover,
[type=url]:hover,
[type=week]:hover,
input:not([type]):hover,
textarea:hover {
  border-color: shade(#ddd, 20%);
}
[type=color]:focus,
[type=date]:focus,
[type=datetime]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
input:not([type]):focus,
textarea:focus {
  border-color: #228be6;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(34, 139, 230, 0.7);
  outline: none;
}
[type=color]:disabled,
[type=date]:disabled,
[type=datetime]:disabled,
[type=datetime-local]:disabled,
[type=email]:disabled,
[type=month]:disabled,
[type=number]:disabled,
[type=password]:disabled,
[type=search]:disabled,
[type=tel]:disabled,
[type=text]:disabled,
[type=time]:disabled,
[type=url]:disabled,
[type=week]:disabled,
input:not([type]):disabled,
textarea:disabled {
  background-color: shade(#fff, 5%);
  cursor: not-allowed;
}
[type=color]:disabled:hover,
[type=date]:disabled:hover,
[type=datetime]:disabled:hover,
[type=datetime-local]:disabled:hover,
[type=email]:disabled:hover,
[type=month]:disabled:hover,
[type=number]:disabled:hover,
[type=password]:disabled:hover,
[type=search]:disabled:hover,
[type=tel]:disabled:hover,
[type=text]:disabled:hover,
[type=time]:disabled:hover,
[type=url]:disabled:hover,
[type=week]:disabled:hover,
input:not([type]):disabled:hover,
textarea:disabled:hover {
  border: 1px solid #ddd;
}
[type=color]::placeholder,
[type=date]::placeholder,
[type=datetime]::placeholder,
[type=datetime-local]::placeholder,
[type=email]::placeholder,
[type=month]::placeholder,
[type=number]::placeholder,
[type=password]::placeholder,
[type=search]::placeholder,
[type=tel]::placeholder,
[type=text]::placeholder,
[type=time]::placeholder,
[type=url]::placeholder,
[type=week]::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
  color: tint(#333, 40%);
}

textarea {
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  display: inline;
  margin-right: 0.375em;
}

[type=file] {
  margin-bottom: 0.75em;
  width: 100%;
}

select {
  margin-bottom: 0.75em;
  width: 100%;
}

[type=checkbox]:focus,
[type=radio]:focus,
[type=file]:focus,
select:focus {
  outline: 3px solid rgba(34, 139, 230, 0.6);
  outline-offset: 2px;
}

html {
  background-color: #fff;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
}
body div {
  display: flex;
}
body div.StripeElement {
  display: block;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin: 0;
}

dd {
  margin: 0;
}

figure {
  margin: 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  margin: 1.5em 0;
  table-layout: fixed;
  text-align: left;
  width: 100%;
}

thead {
  line-height: 1.2;
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

tr {
  border-bottom: 1px solid #ddd;
}

th {
  font-weight: 600;
}

th,
td {
  padding: 0.75em 0.75em 0.75em 0;
}

html {
  color: #333;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 100%;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: modular-scale(1);
  line-height: 1.2;
  margin: 0 0 0.75em;
}

p {
  margin: 0 0 0;
}

a {
  color: #228be6;
  text-decoration-skip: ink;
  transition: color 150ms ease;
}
a:hover {
  color: shade(#228be6, 25%);
}
a:focus {
  outline: 3px solid rgba(34, 139, 230, 0.6);
  outline-offset: 2px;
}

hr {
  border-bottom: 1px solid #ddd;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: 1.5em 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

a, select {
  text-decoration: none;
}
a:hover, a:visited, select:hover, select:visited {
  text-decoration: none;
  cursor: pointer;
}
a:focus, select:focus {
  outline: none;
}

.primary-button {
  transition: opacity 0.2s ease-in-out;
  width: 80%;
}
.primary-button:hover {
  opacity: 0.75;
}
.primary-button:active {
  opacity: 0.5;
}

.react-tooltip-content {
  display: block;
}
.react-tooltip-content p {
  white-space: pre-wrap;
}

.stripe-element-label {
  border-bottom: 1px solid #E0D7E5;
  transition: border-color 0.2s ease-in-out;
}
.stripe-element-label:hover {
  border-color: rgba(0, 0, 0, 0.5);
}

.input-label {
  border-bottom: 1px solid #E0D7E5;
  transition: border-color 0.2s ease-in-out;
  width: 100%;
}
.input-label:hover {
  border-color: rgba(0, 0, 0, 0.5);
}

.city-input-label {
  margin-left: 16px;
  max-width: 45%;
}
@media screen and (max-width: 722px) {
  .city-input-label {
    margin-left: 0;
    max-width: 100%;
  }
}

@media screen and (max-width: 722px) {
  .state-input-label {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-left: 16px;
    padding-right: 16px;
  }
}

.app-header {
  align-items: center;
  background-color: #228be6;
  color: #fff;
  display: flex;
  height: 48px;
  position: fixed;
  padding: 0 16px;
  width: 100%;
  z-index: 1060;
}
.app-header nav a {
  color: white;
}
.app-header nav a:hover {
  text-decoration: underline;
}
.app-header .vertical-divider {
  border-left-color: #fff;
  border-left-style: solid;
  border-left-width: 1px;
  height: 24px;
  margin: 0 8px;
}
.app-header .app-links-container {
  align-items: center;
  display: flex;
  margin-left: auto;
}

@media screen and (max-width: 722px) {
  .subscription-cards-container {
    flex-direction: column;
  }
  .subscription-cards-container .card-title {
    padding-top: 16px;
  }
}

.logo-container {
  padding-top: 60px;
  padding-bottom: 40px;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.logo-container.no-padding {
  padding-top: 8px;
  padding-bottom: 8px;
}

.logo {
  color: #228be6;
  font-family: "Oxygen", sans-serif;
  font-weight: bold;
  font-size: 38px;
  line-height: 1;
}
@media screen and (min-width: 722px) and (max-width: 1094px) {
  .logo {
    font-size: 72px;
  }
}

@media screen and (max-width: 722px) {
  .phone-input-country-list {
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: none !important;
    width: 96vw !important;
  }
}
@media screen and (min-width: 722px) and (max-width: 1094px) {
  .phone-input-country-list {
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: none !important;
    width: 96vw !important;
  }
}

.subscription-card-container {
  margin: 0 12px;
  flex-direction: column;
}
.subscription-card-container .card-container-header {
  flex-direction: inherit;
  align-items: center;
  margin: 8px;
}
.subscription-card-container .card-container-header h3, .subscription-card-container .card-container-header div {
  margin: 0 4px 4px 4px;
}
.subscription-card-container .subscription-card {
  flex-direction: column;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  justify-content: space-between;
}
.subscription-card-container .subscription-card .ant-card-head {
  margin: 0 16px;
  padding: 0;
}
.subscription-card-container .subscription-card .ant-card-head .ant-card-head-title {
  font-size: 14px;
  padding: 16px 0 8px 0;
  line-height: 2;
  font-weight: 600;
}
.subscription-card-container .subscription-card .ant-card-head .ant-card-head-title div.header-title {
  font-weight: 300;
}
.subscription-card-container .subscription-card .ant-card-body {
  flex-direction: column;
  margin: 8px 16px 16px 16px;
  padding: 0;
  font-size: 14px;
  height: calc(100% - 134px);
  justify-content: flex-end;
}
.subscription-card-container .subscription-card .ant-card-body div {
  margin-bottom: 8px;
  font-size: 12px;
}
.subscription-card-container .ant-btn.ant-btn-lg {
  font-size: 14px;
}

.ant-steps.account-stepper {
  max-width: 800px;
  margin: -24px auto 48px auto;
}

body p {
  margin-bottom: 0;
}

.screen-background {
  background-color: #fafafa;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 100vh;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 10vh;
  margin-top: 24px;
}
@media screen and (min-width: 722px) and (max-width: 1094px) {
  .screen-background {
    margin: 0;
    padding: 0;
  }
}
@media screen and (max-width: 722px) {
  .screen-background {
    margin: 0;
    padding: 0;
  }
}

.main-container {
  align-items: center;
  background-color: #fff;
  flex-direction: column;
  min-height: 528px;
  margin-bottom: 80px;
  padding-bottom: 40px;
  padding-left: 25%;
  padding-right: 25%;
  border-radius: 4px;
}
.main-container.no-padding {
  padding: 0;
}
@media screen and (min-width: 722px) and (max-width: 1094px) {
  .main-container {
    padding: 0 16px;
    min-height: 100vh;
    padding-top: 160px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 722px) {
  .main-container {
    padding: 0;
    min-height: 100vh;
    padding-top: 40px;
    margin-bottom: 0;
  }
  .main-container .info-text {
    padding-left: 16px;
    padding-right: 16px;
  }
  .main-container .vertical-divider {
    display: none;
  }
  .main-container .address-wrapper {
    flex-direction: column;
  }
}

.activate-container {
  align-items: center;
  background-color: #fff;
  flex-direction: column;
  min-height: 528px;
  margin-bottom: 80px;
  padding-bottom: 40px;
}
@media screen and (min-width: 722px) and (max-width: 1094px) {
  .activate-container {
    padding: 0;
    min-height: 100vh;
    padding-top: 160px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 722px) {
  .activate-container {
    padding: 0;
    min-height: 100vh;
    padding-top: 40px;
    margin-bottom: 0;
  }
}
.activate-container .activate-card-container {
  flex-direction: row;
}
@media screen and (max-width: 722px) {
  .activate-container .activate-card-container {
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.activate-container .activate-card-header {
  min-height: 96px;
}
@media screen and (max-width: 722px) {
  .activate-container .activate-card-header {
    min-height: 0;
  }
}
.activate-container .activate-card {
  width: 40%;
  height: 100%;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (min-width: 722px) and (max-width: 1094px) {
  .activate-container .activate-card {
    padding: 16px;
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 722px) {
  .activate-container .activate-card {
    padding: 0;
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 722px) {
  .activate-container .code-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 722px) {
  .activate-container .activate-footer {
    flex-direction: column;
  }
}

.buttons-container {
  width: 100%;
}
@media screen and (max-width: 722px) {
  .buttons-container {
    flex-direction: column;
  }
}

.mobile-dividing-space {
  display: none;
}
@media screen and (max-width: 722px) {
  .mobile-dividing-space {
    display: block;
    width: 100%;
    margin-top: 16px;
    border-bottom-color: rgba(0, 0, 0, 0.15);
    border-bottom-style: solid;
    border-bottom-width: 1px;
  }
}

.badge-icon {
  height: 8vh;
  margin: 16px;
}
@media screen and (min-width: 722px) and (max-width: 1094px) {
  .badge-icon {
    height: 6vh;
  }
}

.account-link-wrapper {
  flex-direction: row;
  justify-content: space-between;
  padding: 16px;
}
@media screen and (max-width: 722px) {
  .account-link-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 722px) {
  .account-text-wrapper {
    flex-direction: column;
  }
}

@media screen and (max-width: 722px) {
  .empty-space {
    display: none;
  }
}

.data-analytics-component {
  background-color: #f6f7f7;
  min-height: inherit;
}
.data-analytics-component .data-analytics-container {
  width: calc(100% - 32px);
  margin: 64px 16px 16px 16px;
  flex-direction: column;
}
.data-analytics-component .data-analytics-container .ant-card {
  box-shadow: 0 0 4px darkgrey;
  margin: 10px 0 24px 0;
}
.data-analytics-component .data-analytics-container .ant-card .ant-table-wrapper {
  margin-top: 20px;
}
.data-analytics-component .data-analytics-container .ant-card .ant-table-wrapper .ant-table-scroll .ant-table-body {
  overflow-x: auto !important;
}
.data-analytics-component .data-analytics-container .ant-card .ant-table-wrapper .ant-spin-nested-loading > div > .ant-spin {
  max-height: unset;
}
.data-analytics-component .data-analytics-container .ant-card .ant-table-wrapper ::-webkit-scrollbar {
  height: 6px;
  margin-left: 4px;
}
.data-analytics-component .data-analytics-container .ant-card .ant-table-wrapper ::-webkit-scrollbar-track {
  background-color: #ccc;
  border-radius: 10px;
}
.data-analytics-component .data-analytics-container .ant-card .ant-table-wrapper ::-webkit-scrollbar-thumb {
  background: darkgray;
  border-radius: 10px;
}
.data-analytics-component .data-analytics-container .ant-card .ant-table-wrapper ::-webkit-scrollbar-thumb:hover {
  background: gray;
}
.data-analytics-component .data-analytics-container .ant-card .ant-table-fixed {
  margin: 0;
}
.data-analytics-component .data-analytics-container div {
  display: block;
}
.data-analytics-component .data-analytics-container .top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.data-analytics-component .data-analytics-container .top-container .table-title {
  font-size: 24px;
  font-weight: bold;
}
.data-analytics-component .data-analytics-container .filter-container {
  margin: 24px 0;
  display: flex;
}
.data-analytics-component .data-analytics-container .filter-container button.ant-btn.ant-dropdown-trigger {
  min-width: fit-content;
  max-width: 280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  margin-right: 8px;
}
.data-analytics-component .data-analytics-container .filter-container button.ant-btn.ant-dropdown-trigger .anticon.anticon-loading {
  margin: 2px 8px 0px 4px;
}
.data-analytics-component .data-analytics-container .filter-container button.ant-btn.ant-dropdown-trigger div.filter-title {
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 4px;
  color: #000;
}
.data-analytics-component .data-analytics-container .filter-container button.ant-btn.ant-dropdown-trigger div.filter-buttons {
  font-size: 12px;
  display: flex;
  align-items: center;
}
.data-analytics-component .data-analytics-container .filter-container button.ant-btn.ant-dropdown-trigger div.filter-buttons i.anticon {
  margin-left: 4px;
}
.data-analytics-component .data-analytics-container .filter-container button.ant-btn.ant-dropdown-trigger div.filter-buttons i.anticon.anticon-down {
  color: #1b6fb8;
}
.data-analytics-component .data-analytics-container .filter-container button.ant-btn.ant-dropdown-trigger.ant-dropdown-open {
  background-color: #1b6fb8;
  color: #fff;
}
.data-analytics-component .data-analytics-container .filter-container button.ant-btn.ant-dropdown-trigger.ant-dropdown-open div.filter-title {
  color: white;
}
.data-analytics-component .data-analytics-container .filter-container button.ant-btn.ant-dropdown-trigger.ant-dropdown-open div.filter-buttons i.anticon.anticon-down {
  color: white;
}
.data-analytics-component .data-analytics-container tbody {
  vertical-align: middle;
}
.data-analytics-component .data-analytics-container .ant-table-placeholder {
  display: block;
}
.data-analytics-component .data-analytics-container .pagination-container {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}
.data-analytics-component .data-analytics-container .pagination-container .ant-select-selection__rendered {
  margin-right: 28px;
}

.ant-dropdown.ant-dropdown-placement-bottomLeft ::-webkit-scrollbar {
  width: 6px;
}
.ant-dropdown.ant-dropdown-placement-bottomLeft ::-webkit-scrollbar-track {
  background-color: #ccc;
  border-radius: 10px;
}
.ant-dropdown.ant-dropdown-placement-bottomLeft ::-webkit-scrollbar-thumb {
  background: darkgray;
  border-radius: 10px;
}
.ant-dropdown.ant-dropdown-placement-bottomLeft ::-webkit-scrollbar-thumb:hover {
  background: gray;
}
.ant-dropdown.ant-dropdown-placement-bottomLeft > div {
  flex-direction: column;
  border-radius: 4px 4px 4px 4px;
  webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-dropdown.ant-dropdown-placement-bottomLeft > div > span.ant-input-affix-wrapper {
  background-color: #fff;
  border-radius: 4px 4px 0 0;
}
.ant-dropdown.ant-dropdown-placement-bottomLeft > div > span.ant-input-affix-wrapper > input.ant-input {
  margin: 16px;
  width: calc(100% - 32px);
  outline: none;
  border: none;
  box-shadow: none;
  background-color: #F2F2F2;
  color: #000;
}
.ant-dropdown.ant-dropdown-placement-bottomLeft > div > span.ant-input-affix-wrapper span.ant-input-suffix {
  right: 24px;
}
.ant-dropdown.ant-dropdown-placement-bottomLeft > div .ant-checkbox-wrapper {
  margin-right: 10px;
}
.ant-dropdown.ant-dropdown-placement-bottomLeft > div ul.ant-menu.ant-menu-light.ant-menu-root.ant-menu-vertical {
  max-height: 320px;
  overflow-y: auto;
  border-radius: 0 0 4px 4px;
}
.ant-dropdown.ant-dropdown-placement-bottomLeft ul.ant-menu.ant-menu-light.ant-menu-root.ant-menu-vertical {
  outline: none;
  border: none;
}

.ant-calendar-picker {
  width: 140px;
}
.ant-calendar-picker > div input.ant-calendar-picker-input.ant-input {
  background-color: #d8d8d8;
  border-radius: 4px;
  border: none;
  outline: none;
  box-shadow: none;
  color: #000;
  padding-top: 4px;
  padding-right: 11px;
  padding-bottom: 4px;
  padding-left: 11px;
}
.ant-calendar-picker > div i.anticon.anticon-calendar.ant-calendar-picker-icon {
  top: 38%;
  color: #000;
}
.ant-calendar-picker > div i.anticon.anticon-close-circle.ant-calendar-picker-clear {
  top: 38%;
  background-color: #d8d8d8;
  font-size: 16px;
}

.ant-calendar-picker-container .ant-calendar-panel {
  flex-direction: column;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-input-wrap {
  width: 100%;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-input-wrap .ant-calendar-input {
  outline: none;
  border: none;
  box-shadow: none;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-panel {
  flex-direction: column;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-panel .ant-calendar-header {
  display: block;
  width: 100%;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-panel .ant-calendar-header .ant-calendar-my-select {
  width: 100%;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-panel .ant-calendar-body .ant-calendar-table {
  margin: 0;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-panel .ant-calendar-body .ant-calendar-table tr {
  border: none;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-panel .ant-calendar-footer .ant-calendar-footer-btn {
  width: 100%;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-panel .ant-calendar-year-panel .ant-calendar-year-panel-decade-select {
  width: 100%;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-panel .ant-calendar-year-panel-body .ant-calendar-year-panel-table {
  margin: 0;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-panel .ant-calendar-year-panel-body .ant-calendar-year-panel-table tr {
  border: none;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-panel .ant-calendar-decade-panel .ant-calendar-decade-panel-header .ant-calendar-decade-panel-century {
  width: 100%;
  justify-content: center;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-panel .ant-calendar-decade-panel .ant-calendar-decade-panel-body .ant-calendar-decade-panel-table {
  margin: 0;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-panel .ant-calendar-decade-panel .ant-calendar-decade-panel-body .ant-calendar-decade-panel-table tr {
  border: none;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-panel .ant-calendar-month-panel .ant-calendar-month-panel-header .ant-calendar-month-panel-year-select {
  width: 100%;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-panel .ant-calendar-month-panel .ant-calendar-month-panel-body .ant-calendar-month-panel-table {
  margin: 0;
}
.ant-calendar-picker-container .ant-calendar-panel .ant-calendar-date-panel .ant-calendar-month-panel .ant-calendar-month-panel-body .ant-calendar-month-panel-table tr {
  border: none;
}

.create-account-form-container {
  flex-direction: column;
  width: 640px;
  margin: 0 auto 22px auto;
}

.connect-studio-form-container {
  flex-direction: column;
  width: 640px;
  margin: 0 auto 22px auto;
}

.activate-studio-form-container {
  flex-direction: column;
  width: 100%;
  margin: 0 auto 22px auto;
  align-items: center;
}

.credit-card-state-selector {
  text-transform: none;
  border: none;
  border-bottom: 1px solid #E0D7E5;
  padding-bottom: 14px;
  padding: 0 12px 10px;
  font-size: 17px;
  color: rgba(0, 0, 0, 0.5);
  transition: all 250ms;
}
.credit-card-state-selector:hover {
  border-color: #b1b1b1;
}

.credit-card-form-container {
  flex-direction: column;
  width: 640px;
  margin: 0 auto 22px auto;
}

img.stripe-logo {
  display: block;
  margin: 2em auto;
  max-width: 150px;
}

.upgrade-plan-container {
  flex-direction: column;
  width: 100%;
  margin: 22px 0;
  align-items: center;
}
.upgrade-plan-container .upgrade-plan-text-container {
  flex-direction: column;
  margin: 0 0 0 16px;
}
.upgrade-plan-container .upgrade-plan-text-container .upgrade-plan-title {
  height: 19px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  margin: 10px 0;
}
.upgrade-plan-container .upgrade-plan-text-container .upgrade-plan-info {
  margin: 10px 0;
}
.upgrade-plan-container .upgrade-plan-text-container .upgrade-plan-info > div:first-child {
  margin-right: 26px;
}
.upgrade-plan-container .upgrade-plan-text-container .upgrade-plan-info > div:first-child > span {
  font-weight: 700;
  display: contents;
}
.upgrade-plan-container .upgrade-plan-text-container .upgrade-plan-info > div:last-child button.ant-btn {
  font-size: 14px;
}
.upgrade-plan-container .upgrade-plan-button-container {
  align-items: center;
}
.upgrade-plan-container .upgrade-plan-button-container button {
  font-size: 14px;
}

.plan-summary {
  flex-direction: column;
  width: calc(100% - 380px);
  margin: 22px;
}
.plan-summary div {
  padding: 16px 0 16px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  justify-content: space-between;
}
.plan-summary div:first-child {
  border: none;
  font-weight: 500;
  font-size: 16px;
}
.plan-summary div:last-child {
  border: none;
  font-weight: 500;
}
.plan-summary div > div:first-child {
  font-weight: unset;
}
.plan-summary div > div:last-child {
  font-weight: 700;
  border: none;
}
.plan-summary div > div {
  padding: 0;
}

.plan-features {
  flex-direction: column;
  width: calc(100% - 380px);
  margin: 22px 22px 28px 22px;
  font-size: 16px;
}
.plan-features div.plan-title {
  font-weight: 500;
  margin-bottom: 16px;
}
.plan-features div.features-container {
  flex-direction: column;
}
.plan-features div.features-container > div {
  justify-content: space-between;
}
.plan-features div.features-container > div > div {
  flex: 0.475;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
}
.plan-features div.features-container > div > div > i {
  height: 22px;
}

.buttons-container.confirm-subscription .ant-btn.ant-btn-lg {
  min-width: 274px;
  margin: 8px 12px;
}
.buttons-container.confirm-subscription .ant-btn.ant-btn-lg:first-child {
  background-color: #bdbdbd;
  color: white;
  outline: none;
  border: none;
}

.ant-modal {
  display: block;
  width: auto !important;
}
.ant-modal .ant-modal-content {
  margin-bottom: 48px;
}
.ant-modal .ant-modal-content .ant-modal-body {
  flex-direction: column;
}
