/* DESIGN SYSTEM COLOUR PALETTE */

/* Defined here https://www.figma.com/file/YrCXp3zztpwtcSD9XVge7Z/%E2%9C%A8Foundations?node-id=0%3A1 */

/* Storybook: https://storybook.internal.dckr.io/?path=/story/foundations-palettes--palettes */

/* All legacy should be transitioned to these */

/* primary */

/* primary */

/* primary */

/* primary */

/* primary */

/* primary */

/* media queries */

/* lib/constants/sizes */

/* layout */

/* spacing */

/* misc */

/* body font sizes */

/* heading font sizes */

/* font family */

/* -----------------------------------------------------------------------------
 | Color Purpose Vars
----------------------------------------------------------------------------- */

/* lib/constants/variants */

/* CTA component colors */

/* cohesion font colors */

/* possibly used in mixins */

/* Autobuilds Colors */

/* audit logs colors */

/* State Colors */

/* are these being used in mixins? */

/* this variable is being overwritten in cloud/Core/object/components/State/styles.css */

/* -- These use colors not found in the styleguide -- */

/* - end -- */

/* Note: These are volumes states and not actual/valid object states.
 Added here for completion
*/

/* button */

/* select */

/* input */

/* stylelint-disable value-list-comma-newline-after */

/* box-shadow for store cards */

/* component: tab */

/* Publish flow */

/* Public Profile */

/* v2 */

/* Sign up form width */

/**
  This was extracted from the Wrapped component. There are subtle differences
  from the wrapped mixin, but they could probably be unified with a little
  effort.

  It's defined here as a rule rather than a mixin so it can be used with
  `composes`, which generally yields smaller code bundles.
*/

.styles__wrapped___ZAJnX {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1280px;
  padding-left: 12px;
  padding-right: 12px;
}

/* https://goo.gl/Mus6xj */

/* Font sizes */

/* columns */

/* Three equal columns */

/* Rows */

/* TODO:  Use flex. Flexbox doesn't seem to work on iOS safari/chrome
          when overriding a lost column for small devices (?)(Registration page)
*/

@keyframes styles__fadein___dqhtN {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* flex does not work inside firefox buttons, this is a workaround
   http://stackoverflow.com/questions/24289251/flexbox-not-working-in-buttons-in-firefox */

/* Causes text that overflows in an element to be truncated with an ellipsis. */

/*
 A little trick for vertically centering text content that doesn't wrap when
 the element's height is known.
*/

@keyframes styles__load8___LsCkX {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.styles__alert___qFshK {
  display: flex;
  position: relative;
  border-radius: 4px;
  background-color: #c4c8d1;
  color: #ffffff;
  fill: #ffffff;

  margin-bottom: 24px;
}

.styles__message___OUX5o {
  font-weight: 600;
}

.styles__closeIcon___i4y00 {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 26px;
  line-height: 44px;
  font-weight: 300;
  padding: 0 13px;
  cursor: pointer;
}

/* sizes */

.styles__alert___qFshK.styles__medium___BvoK4 {
  min-height: 44px;
  padding: 10px 40px 10px 16px;
}

.styles__alert___qFshK.styles__medium___BvoK4 .styles__message___OUX5o {
    font-size: 14px;
    line-height: 24px;
  }

.styles__alert___qFshK.styles__medium___BvoK4 .styles__description___n9Cuf {
    font-size: 12px;
    line-height: 18px;
  }

.styles__alert___qFshK.styles__medium___BvoK4 .styles__icon___rAsOr {
    margin-right: 10px;
    height: 24px;
  }

.styles__alert___qFshK.styles__large___dMCBp {
  padding: 16px 20px 16px 20px;
}

.styles__alert___qFshK.styles__large___dMCBp > * {
    align-self: center;
  }

.styles__alert___qFshK.styles__large___dMCBp .styles__text___xMSZn {
    flex-basis: 100%;
  }

.styles__alert___qFshK.styles__large___dMCBp .styles__message___OUX5o {
    font-size: 16px;
  }

.styles__alert___qFshK.styles__large___dMCBp .styles__description___n9Cuf {
    font-size: 14px;
    line-height: 20px;
    margin-top: 4px;
  }

.styles__alert___qFshK.styles__large___dMCBp > .styles__action___tuaaf {
    /* actionPlacement="right" */

    flex-shrink: 0;
  }

.styles__alert___qFshK.styles__large___dMCBp .styles__icon___rAsOr {
    margin-right: 16px;

    width: 32px;
    height: 32px;
  }

.styles__alert___qFshK.styles__large___dMCBp .styles__icon___rAsOr img,
    .styles__alert___qFshK.styles__large___dMCBp .styles__icon___rAsOr svg {
      width: 32px;
      height: 32px;
    }

.styles__text___xMSZn > .styles__action___tuaaf {
  /* actionPlacement="below" */

  margin-top: 4px;
}

/* alert types */

.styles__success___oXDYX {
  background-color: #88d5c0;
}

.styles__info___xYKWx {
  background-color: #e5f2fc;
  color: #27343b;
  /* stylelint-disable-next-line function-no-unknown */
  border: 1px solid rgb(209, 232, 250);
}

.styles__info___xYKWx .styles__icon___rAsOr {
    fill: #576167;
  }

.styles__warning___pEQMj {
  background-color: #fff4dc;

  color: #b85504;
  border: 1px solid #dd7805;
}

.styles__warning___pEQMj .styles__icon___rAsOr {
    fill: #b85504;
  }

.styles__warning___pEQMj .styles__text___xMSZn {
    /*
      the contrast of dark orange on light orange is low;
      bold the text to make it easier to read
    */
    font-weight: 600;
  }

.styles__danger___STbeH {
  background-color: #fbb552;
}

.styles__error___vfuga {
  background-color: rgba(248, 160, 154, 0.5);
  border: 1px solid #8b1924;
  color: #8b1924;
  fill: #8b1924;
}

.styles__error___vfuga .styles__icon___rAsOr {
    fill: #8b1924;
  }

/* DESIGN SYSTEM COLOUR PALETTE */

/* Defined here https://www.figma.com/file/YrCXp3zztpwtcSD9XVge7Z/%E2%9C%A8Foundations?node-id=0%3A1 */

/* Storybook: https://storybook.internal.dckr.io/?path=/story/foundations-palettes--palettes */

/* All legacy should be transitioned to these */

/* primary */

/* primary */

/* primary */

/* primary */

/* primary */

/* primary */

/* media queries */

/* lib/constants/sizes */

/* layout */

/* spacing */

/* misc */

/* body font sizes */

/* heading font sizes */

/* font family */

/* -----------------------------------------------------------------------------
 | Color Purpose Vars
----------------------------------------------------------------------------- */

/* lib/constants/variants */

/* CTA component colors */

/* cohesion font colors */

/* possibly used in mixins */

/* Autobuilds Colors */

/* audit logs colors */

/* State Colors */

/* are these being used in mixins? */

/* this variable is being overwritten in cloud/Core/object/components/State/styles.css */

/* -- These use colors not found in the styleguide -- */

/* - end -- */

/* Note: These are volumes states and not actual/valid object states.
 Added here for completion
*/

/* button */

/* select */

/* input */

/* stylelint-disable value-list-comma-newline-after */

/* box-shadow for store cards */

/* component: tab */

/* Publish flow */

/* Public Profile */

/* v2 */

/* Sign up form width */

/**
  This was extracted from the Wrapped component. There are subtle differences
  from the wrapped mixin, but they could probably be unified with a little
  effort.

  It's defined here as a rule rather than a mixin so it can be used with
  `composes`, which generally yields smaller code bundles.
*/

.styles__wrapped___Uy6dr {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1280px;
  padding-left: 12px;
  padding-right: 12px;
}

/* https://goo.gl/Mus6xj */

/* Font sizes */

/* columns */

/* Three equal columns */

/* Rows */

/* TODO:  Use flex. Flexbox doesn't seem to work on iOS safari/chrome
          when overriding a lost column for small devices (?)(Registration page)
*/

@keyframes styles__fadein___OLG6E {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* flex does not work inside firefox buttons, this is a workaround
   http://stackoverflow.com/questions/24289251/flexbox-not-working-in-buttons-in-firefox */

/* Causes text that overflows in an element to be truncated with an ellipsis. */

/*
 A little trick for vertically centering text content that doesn't wrap when
 the element's height is known.
*/

@keyframes styles__load8___LeqId {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.styles__wrapper___sbYWc {
  margin: 0 15px 70px;
}

.styles__wrapper___sbYWc > div {
    max-width: 870px;
    margin: 0 auto;
  }

.styles__wrapper___sbYWc .styles__hero___DwzY0 {
    text-align: center;
    margin: 60px 0 40px;
  }

.styles__wrapper___sbYWc .styles__hero___DwzY0 .styles__title___glSsa {
      font-size: 38px;
      line-height: 52px;
      margin-bottom: 10px;
    }

.styles__wrapper___sbYWc .styles__hero___DwzY0 .styles__subtitle___J0rRC {
      color: #677285;
      font-size: 18px;
      margin: 10px 0 30px;
    }

.styles__wrapper___sbYWc .styles__buttonWrapper___Ar2Me {
    margin-top: 30px;
  }

.styles__wrapper___sbYWc .styles__subscribeButton___Su6zk {
    width: 190px;
  }

.styles__card___n3331 {
  padding-left: 50px;
  padding-right: 50px;
}

.styles__cardTitle___PEIYC {
  font-size: 22px;
}

.styles__cardBody___cX1gG {
  flex: 1 0 400px;

  display: flex;
  flex-direction: column;
}

.styles__newOrgForm___RT0pv {
  flex-grow: 1;
}

.styles__row___cqgcc {
  display: flex;
  justify-content: space-between;
}

.styles__formWrapper___PFUxR {
  width: 60%;
  margin-right: 40px;
}

.styles__selectedPlanCard___fltqI {
  margin: 35px 30px;
  width: 40%;
}

.styles__purchaseOrderCardWrapper___ocZ5h {
  margin-top: 80px;
}

@media only screen and (max-width: 960px) {
  .styles__formWrapper___PFUxR {
    width: 100%;
    margin-right: 0;
  }
  .styles__selectedPlanCard___fltqI {
    display: none;
  }
}


/*# sourceMappingURL=8248.ef29aebb2e62337def60.css.map*/