@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700|Roboto:500,700);
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

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

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

/* React Modal handling once open */
.ReactModal__Body--open {
  overflow-y: hidden; }

/* make body defaut 100% height */
html,
body,
#app {
  min-height: 100vh; }

/* Stripe Elements styling */
.StripeElement {
  display: block;
  margin: 10px 0 10px 0;
  max-width: 500px;
  padding: 16px 14px;
  font-size: 1em;
  font-family: 'Lato', sans-serif;
  box-shadow: rgba(50, 50, 93, 0.14902) 0px 1px 3px, rgba(0, 0, 0, 0.0196078) 0px 1px 0px;
  border: 0;
  outline: 0;
  border-radius: 4px;
  background: white; }

.StripeElement--focus {
  box-shadow: rgba(50, 50, 93, 0.109804) 0px 4px 6px, rgba(0, 0, 0, 0.0784314) 0px 1px 3px;
  -webkit-transition: all 150ms ease;
  transition: all 150ms ease; }

/* Google font loading */

/* CSS variables. */
:root {
	--PhoneInput-color--focus: #03b2cb;
	--PhoneInputInternationalIconPhone-opacity: 0.8;
	--PhoneInputInternationalIconGlobe-opacity: 0.65;
	--PhoneInputCountrySelect-marginRight: 0.35em;
	--PhoneInputCountrySelectArrow-width: 0.3em;
	--PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
	--PhoneInputCountrySelectArrow-marginTop: calc(var(--PhoneInputCountrySelectArrow-height) / 2);
	--PhoneInputCountrySelectArrow-borderWidth: 1px;
	--PhoneInputCountrySelectArrow-opacity: 0.45;
	--PhoneInputCountrySelectArrow-color: inherit;
	--PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountrySelectArrow-transform: rotate(45deg);
	--PhoneInputCountryFlag-aspectRatio: 1.5;
	--PhoneInputCountryFlag-height: 1em;
	--PhoneInputCountryFlag-borderWidth: 1px;
	--PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
	--PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}

.PhoneInput {
	/* This is done to stretch the contents of this component. */
	display: flex;
	align-items: center;
}

.PhoneInputInput {
	/* The phone number input stretches to fill all empty space */
	flex: 1;
	/* The phone number input should shrink
	   to make room for the extension input */
	min-width: 0;
}

.PhoneInputCountryIcon {
	width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
	height: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--square {
	width: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--border {
	/* Removed `background-color` because when an `<img/>` was still loading
	   it would show a dark gray rectangle. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom. */
	background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
	/* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom,
	   so an additional "inset" border is added. */
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
	/* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
	   Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
	width: 100%;
	height: 100%;
}

.PhoneInputInternationalIconPhone {
	opacity: var(--PhoneInputInternationalIconPhone-opacity);
}

.PhoneInputInternationalIconGlobe {
	opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}

/* Styling native country `<select/>`. */

.PhoneInputCountry {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	margin-right: var(--PhoneInputCountrySelect-marginRight);
}

.PhoneInputCountrySelect {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.PhoneInputCountrySelect[disabled] {
	cursor: default;
}

.PhoneInputCountrySelectArrow {
	display: block;
	content: '';
	width: var(--PhoneInputCountrySelectArrow-width);
	height: var(--PhoneInputCountrySelectArrow-width);
	margin-top: var(--PhoneInputCountrySelectArrow-marginTop);
	margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
	border-style: solid;
	border-color: var(--PhoneInputCountrySelectArrow-color);
	border-top-width: 0;
	border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	border-left-width: 0;
	border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	transform: var(--PhoneInputCountrySelectArrow-transform);
	opacity: var(--PhoneInputCountrySelectArrow-opacity);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}
.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff; }
  .Toastify__toast-container--top-left {
    top: 1em;
    left: 1em; }
  .Toastify__toast-container--top-center {
    top: 1em;
    left: 50%;
    margin-left: -160px; }
  .Toastify__toast-container--top-right {
    top: 1em;
    right: 1em; }
  .Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em; }
  .Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    margin-left: -160px; }
  .Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em; }

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0; }
    .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
      top: 0; }
    .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
      bottom: 0; }
    .Toastify__toast-container--rtl {
      right: 0;
      left: initial; } }

.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr; }
  .Toastify__toast--rtl {
    direction: rtl; }
  .Toastify__toast--default {
    background: #fff;
    color: #aaa; }
  .Toastify__toast--info {
    background: #3498db; }
  .Toastify__toast--success {
    background: #07bc0c; }
  .Toastify__toast--warning {
    background: #f1c40f; }
  .Toastify__toast--error {
    background: #e74c3c; }
  .Toastify__toast-body {
    margin: auto 0;
    -ms-flex: 1;
        flex: 1; }

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0; } }

.Toastify__close-button {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start; }
  .Toastify__close-button--default {
    color: #000;
    opacity: 0.3; }
  .Toastify__close-button:hover, .Toastify__close-button:focus {
    opacity: 1; }

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1); }
  100% {
    transform: scaleX(0); } }

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left; }
  .Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards; }
  .Toastify__progress-bar--controlled {
    transition: transform .2s; }
  .Toastify__progress-bar--rtl {
    right: 0;
    left: initial;
    transform-origin: right; }
  .Toastify__progress-bar--default {
    background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55); }

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft; }

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight; }

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown; }

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp; }

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft; }

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight; }

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp; }

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown; }

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes Toastify__zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn; }

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut; }

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.Toastify__flip-enter {
  animation-name: Toastify__flipIn; }

.Toastify__flip-exit {
  animation-name: Toastify__flipOut; }

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0); } }

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0); } }

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0); } }

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0); } }

.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft; }

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight; }

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown; }

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp; }

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft; }

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight; }

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp; }

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown; }


.Logo__logo__3M-MJ {
  height: 24px; }

@media (min-width: 640px) {
  .Logo__logo__3M-MJ {
    height: 36px; } }

.Nav__container__3DPMs {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  grid-template-areas: '. nav nav nav nav nav nav nav nav nav nav .';
  padding-top: 12px; }

.Nav__container__3DPMs.Nav__fill__OvdLe {
  background-color: #f0003f; }

.Nav__container__3DPMs.Nav__thick__3Y9bF {
  padding-top: 24px; }

.Nav__blank__b1eHx {
  height: 75px; }

.Nav__nav__HfptJ {
  position: relative;
  grid-area: nav;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center; }

.Nav__logo__2l5TW {
  padding-top: 16px;
  padding-bottom: 6px; }

.Nav__center__7sCJq {
  justify-content: center; }

.Nav__right__3PICl {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-bottom: 6px;
  display: flex;
  flex-direction: row;
  align-items: center; }

.Nav__textLinks__22D3g {
  bottom: 8px; }

.Nav__linkbox__3IpyD {
  position: relative;
  display: inline-block;
  width: 48px;
  text-decoration: none;
  outline: none; }

.Nav__hoverbar__2dFCy {
  position: absolute;
  bottom: -13px;
  background-color: none;
  height: 3px;
  width: 100%; }

.Nav__tb__1CrRq {
  font-family: 'Lato', sans-serif;
  text-transform: lowercase;
  text-align: center;
  cursor: pointer;
  font-weight: 400;
  font-size: 12px;
  padding-top: 8px;
  color: #4f4940; }

.Nav__linkbox__3IpyD:hover .Nav__tb__1CrRq {
  color: #f0003f; }

.Nav__fill__OvdLe .Nav__tb__1CrRq {
  color: white; }

.Nav__fill__OvdLe .Nav__linkbox__3IpyD:hover .Nav__tb__1CrRq {
  color: white; }

.Nav__fill__OvdLe .Nav__linkbox__3IpyD:hover .Nav__hoverbar__2dFCy {
  background-color: white; }

.Nav__menu__2G_zf {
  font-family: 'Lato', sans-serif; }

.Nav__menu__2G_zf > button > span {
  background-color: #f7c948; }

.Nav__navbutton__3--eM {
  margin-right: 16px; }

.Nav__selected__3fhzY {
  display: flex;
  flex-direction: row;
  padding: 0.75rem; }

.Nav__avatar__3-wD9 {
  background-color: #f7c948;
  font-family: 'Roboto', sans-serif; }

.Nav__selected__3fhzY .Nav__info__sCMyq {
  margin-left: 0.5rem;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center; }

.Nav__info__sCMyq h1 {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Roboto', sans-serif; }

.Nav__info__sCMyq h2 {
  font-size: 0.75rem; }

.Nav__itemHeader__3LjEM span {
  text-transform: lowercase;
  font-family: 'Roboto', sans-serif; }

.Nav__linknostyle__3259B,
.Nav__linknostyle__3259B:visited {
  text-decoration: none;
  outline: none;
  color: inherit; }

.Nav__linknostyle__3259B button:hover,
.Nav__linknostyle__3259B button:focus,
.Nav__linknostyle__3259B button:active {
  border-color: #f7c948;
  color: #f7c948; }

@media (min-width: 640px) {
  .Nav__linkbox__3IpyD {
    width: 64px; }
  .Nav__logo__2l5TW {
    padding-top: 24px;
    padding-bottom: 12px; }
  .Nav__right__3PICl {
    padding-bottom: 12px; }
  .Nav__textLinks__22D3g {
    bottom: 14px; }
  .Nav__tb__1CrRq {
    font-size: 14px;
    padding-top: 15px; }
  .Nav__hoverbar__2dFCy {
    bottom: -22px; } }

@media (min-width: 1200px) {
  .Nav__nav__HfptJ {
    justify-content: center; } }

.PageLoader__box__1S7oG {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.PageLoader__label__TrsJc {
  font-family: 'Roboto', sans-serif;
  text-transform: lowercase;
  font-size: 24px;
  color: #26231c;
  margin-bottom: 32px; }

.Group__card__1L7po {
  display: flex;
  flex-direction: column;
  max-width: 512px;
  margin: 12px auto;
  padding: 32px 24px;
  font-family: 'Lato', sans-serif;
  text-align: left; }

.Group__settings__1qrIr {
  display: flex;
  flex-direction: row;
  max-width: 560px;
  margin: 12px auto;
  justify-content: space-between;
  font-family: 'Lato', sans-serif; }

.Group__groupSettings__3tXSb {
  width: 50%;
  margin-right: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column; }

.Group__groupSettings__3tXSb .Group__title__1pakW {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px; }

.Group__subscriptionSettings__1jmUh {
  width: 50%;
  padding: 32px 24px;
  display: flex;
  flex-direction: column; }

.Group__subscriptionSettings__1jmUh .Group__title__1pakW {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px; }

.Group__lineitems__1zMxz {
  margin-bottom: 12px; }

.Group__lineitems__1zMxz .Group__item__115kV:not(:last-child) {
  margin-bottom: 12px; }

.Group__infolabel__3sxUp {
  text-transform: lowercase;
  color: #576574;
  font-size: 0.875rem; }

.Group__infodetail__3eG51 {
  float: right;
  color: #061c3f; }

.Group__header__2zXf9 h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 1.2;
  font-weight: 900; }

.Group__header__2zXf9 h2 {
  font-size: 18px;
  color: #423d33; }

.Group__snips__2IkHk {
  padding: 24px 0px; }

.Group__snips__2IkHk h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  line-height: 1.1;
  font-weight: 900; }

.Group__snips__2IkHk h2 {
  margin-top: 16px;
  line-height: 1.4; }

.Group__on__3Cj4b h1 {
  font-size: 48px;
  color: #27241d; }

.Group__on__3Cj4b h2 {
  font-size: 16px;
  color: #423d33; }

.Group__off__JLiRB h1 {
  font-size: 32px;
  color: #423d33; }

.Group__off__JLiRB h2 {
  font-size: 14px;
  line-height: 1.2;
  color: #504a40; }

.Group__alert__1d6jF h2 {
  font-weight: 700;
  color: #f0003f; }

.Group__hoverhighlight__2MmA0:hover > h1 {
  cursor: pointer;
  color: #54acdc; }

.Group__avatarSection__O9Ywz {
  margin: 6px 0; }

.Group__avatars__1Rx7F {
  padding: 12px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }

.Group__sendInvite__1YBpG {
  margin-top: 6px;
  background-color: #f0f4f8;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 32px; }

.Group__sendInvite__1YBpG h2 {
  align-self: center; }

.Group__inputWithButton__aKVa2 {
  position: relative;
  display: flex;
  flex-direction: row;
  margin: 24px 16px 0px;
  min-width: 224px; }

.Group__modal__3NZHJ {
  font-family: 'Lato', sans-serif; }

.Group__modal__3NZHJ .Group__content__2B6-S {
  padding: 12px;
  color: #423d33;
  line-height: 1.3; }

.Group__modal__3NZHJ .Group__footer__3QFwv {
  display: flex;
  flex-direction: row;
  justify-content: flex-end; }

.Group__modal__3NZHJ .Group__content__2B6-S .Group__creditCard__3u-N2 {
  margin: auto;
  border: solid;
  border-radius: 8px;
  padding: 60px 20px 20px;
  width: 200px;
  font-family: 'Lato', sans-serif;
  text-align: left;
  line-height: 1.3;
  text-transform: uppercase;
  color: #576574; }

.Group__creditCard__3u-N2 h4 {
  font-size: 16px;
  margin-bottom: 20px; }

.Group__creditCard__3u-N2 h5 {
  font-size: 12px; }

.Group__creditCard__3u-N2 .Group__expiresLogo__3byLl {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; }

.Group__embedded__2EW-H {
  max-width: 512px;
  margin: 32px auto 12px;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #d3cec4;
  text-align: left;
  text-transform: lowercase; }

.Group__embedded__2EW-H h2 {
  padding-left: 12px;
  font-size: 16px; }

.Group__restartButton__2790s {
  display: flex;
  flex-direction: row;
  justify-content: center; }

.App__toastContainer__3cds8 {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  text-transform: lowercase; }

.App__toastStyles__33Liv {
  border-radius: 12px;
  background: #fce588; }

.App__toastBody__3x_mN {
  text-align: center;
  color: #27241d;
  font-weight: 500;
  padding-left: 12px;
  padding-right: 12px; }

.App__toastNoProgress__10Vyp {
  background: #fce588; }

.App__toastProgress__38fFa {
  background: #f0003f; }

.Headers__hprimary__1hMgv {
  font-family: 'Roboto';
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #26231c; }

.Headers__hsecondary__1PhwE {
  font-family: 'Lato';
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1.2;
  color: #423d33; }

.Headers__htertiary__23x_H {
  font-family: 'Lato';
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #615c51;
  margin-bottom: 2px; }

.Headers__tb__2RA8c {
  font-family: 'Lato';
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  color: #2680c0;
  margin-bottom: 2px;
  cursor: pointer; }

@media (min-width: 640px) {
  /* spacing */
  .Headers__hprimary__1hMgv {
    margin-bottom: 16px; }
  .Headers__hsecondary__1PhwE {
    margin-bottom: 8px; }
  .Headers__htertiary__23x_H {
    margin-bottom: 4px; }
  /* font size */
  .Headers__hprimary__1hMgv {
    font-size: 48px; }
  .Headers__hsecondary__1PhwE {
    font-size: 30px; }
  .Headers__htertiary__23x_H {
    font-size: 20px; } }

.ButtonRound__button__14l70 {
  min-width: 150px;
  background: #f7c948;
  border-radius: 24px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  outline: 0;
  user-select: none;
  display: inline-block;
  height: 42px;
  margin: 1px 0 2px;
  padding: 0 8px;
  text-align: center;
  white-space: nowrap;
  transition: 0.5s;
  text-decoration: none;
  cursor: pointer; }

.ButtonRound__button__14l70 div {
  font-family: 'Lato', sans-serif;
  line-height: 36px;
  position: relative;
  color: #f9f8f6;
  text-transform: lowercase;
  overflow: hidden;
  font-size: 18px; }

.PageGrid__container__3-aeL {
  overflow-x: hidden;
  height: 100vh;
  overflow-y: hidden; }

.PageGrid__form__21Vql {
  grid-area: form; }

.PageGrid__value__3ULNS {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 5%;
  grid-template-rows: auto;
  grid-template-areas: '. form form form form form form form form . . .'; }

.PageGrid__image__3MQoy {
  margin-top: 12px;
  grid-area: image;
  grid-row: 1;
  grid-column-start: 6;
  grid-column-end: span 5;
  z-index: -1; }

@media (min-width: 640px) {
  .PageGrid__value__3ULNS {
    grid-template-areas: '. form form form form form form form . . . .';
    margin-top: none; }
  .PageGrid__image__3MQoy {
    margin-top: none;
    grid-row: 1;
    grid-column-start: 7;
    grid-column-end: span 5; } }

.ErrorBoundary__content__3qeoh {
  margin-top: 32px; }

.ErrorBoundary__textspace__fd3Fz {
  max-width: 420px;
  margin-bottom: 44px; }

.ErrorBoundary__error__189fX {
  margin-top: 12px; }

@media (min-width: 640px) {
  .ErrorBoundary__textspace__fd3Fz {
    max-width: 550px;
    margin-bottom: 60px; } }

.FormPage__page__1WLNL {
  display: flex;
  flex-flow: column;
  height: 100%; }

.FormPage__formsections__TWj3N {
  margin: 36px 0;
  min-height: 100vh; }

.FormPage__page__1WLNL section {
  max-width: 500px;
  margin: 12px 16px;
  padding: 24px 24px; }

.FormPage__page__1WLNL section .FormPage__title__2qO8a {
  margin-bottom: 4px; }

.FormPage__page__1WLNL section .FormPage__title__2qO8a h2 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  font-family: 'Roboto', sans-serif; }

.FormPage__page__1WLNL section .FormPage__title__2qO8a p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.2; }

.FormPage__form___gxFc {
  width: 100%; }

.FormPage__names__3E3Yy {
  display: flex;
  flex-direction: column; }

.FormPage__fullname__1yY31 {
  max-width: 148px;
  margin-right: 16px; }

.FormPage__nickname__lSVtR {
  max-width: 96px; }

.FormPage__email__2fJWJ {
  max-width: 256px; }

.FormPage__phone__pdxvp {
  max-width: 256px; }

.FormPage__group__2UU8e {
  max-width: 256px; }

@media (min-width: 560px) {
  .FormPage__page__1WLNL section {
    margin: 24px auto; } }

@media (min-width: 750px) {
  .FormPage__page__1WLNL section {
    min-width: 750px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0; }
  .FormPage__page__1WLNL section .FormPage__title__2qO8a {
    width: 325px;
    padding: 24px; }
  .FormPage__page__1WLNL section .FormPage__content__1LTfq {
    width: 300px;
    padding: 24px; }
  .FormPage__page__1WLNL section .FormPage__title__2qO8a.FormPage__lowspace__2-BED {
    margin-right: 76px; }
  .FormPage__content__1LTfq {
    margin-top: -8px; } }

.solid__page__3TCnp {
  background: #faf9f7; }

.solid__section__Z6RHV {
  background: white;
  border-radius: 4px; }

.solid__input__2_0s0 {
  background-color: 0 0;
  color: #26231c;
  box-shadow: inset 0 -2px 0 0 #d4cfc4;
  outline: none;
  border: none; }

.solid__input__2_0s0::placeholder {
  color: #a49e94; }

.solid__input__2_0s0[value]:not([value='']) {
  box-shadow: inset 0 -2px 0 0 #f0b428; }

.solid__bottomlabel__2OFzD {
  color: #26231c; }

.solid__page__3TCnp .solid__title__is9K7 {
  color: #26231c; }

.solid__page__3TCnp .solid__text__3tAwD {
  color: #4f4940; }

.solid__section__Z6RHV .solid__title__is9K7 {
  color: #4f4940; }

.solid__section__Z6RHV .solid__text__3tAwD {
  color: #a49e94; }

.solid__inputLabel__tcCze {
  color: #dd901d; }

.solid__inputLabel__tcCze.solid__val__26dDP {
  color: #f0003f; }

.solid__input__2_0s0.solid__val__26dDP {
  box-shadow: inset 0 -2px 0 0 #f0003f; }

.How__how__3pWmO {
  display: grid;
  grid-template-rows: 72px 1fr 1fr 1fr 1fr 1fr 1fr 1fr 72px;
  grid-template-columns: 10% 1fr 10%;
  grid-template-areas: '. . .' '. headers .' '. list .' '. list .' '. list .' '. list .' '. list .' '. list .' '. . .';
  min-height: 700px;
  background: #ffffff; }

.How__headers__3Ic5P {
  grid-area: headers;
  text-align: left;
  max-width: 80%;
  font-size: 20px; }

.How__headers__3Ic5P h1 {
  font-family: 'Roboto', sans-serif;
  color: #f0003f;
  font-weight: 700;
  margin-bottom: 4px; }

.How__headers__3Ic5P h2 {
  font-family: 'Lato', sans-serif;
  color: #615c51; }

.How__how__3pWmO ul {
  grid-area: list;
  max-width: 80%;
  list-style: none; }

.How__how__3pWmO li {
  text-align: left;
  margin-bottom: 32px; }

.How__how__3pWmO h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  margin-bottom: 2px;
  color: #26231c; }

.How__how__3pWmO p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #615c51; }

.How__startLink__2b5qK a {
  color: #f0003f;
  font-family: 'Lato', sans-serif;
  font-size: 14px; }

.How__startLink__2b5qK a:link {
  text-decoration: none; }

.How__startLink__2b5qK a:visited {
  text-decoration: none; }

@media (min-width: 865px) {
  .How__how__3pWmO {
    display: grid;
    grid-template-rows: 72px 1fr 1fr 1fr 1fr 1fr 1fr 72px;
    grid-template-columns: repeat(8, 1fr);
    grid-template-areas: '. . . . . . . .' '. . headers headers headers . . .' '. . list list list list . .' '. . list list list list . .' '. . list list list list . .' '. . list list list list . .' '. . list list list list . .' '. . . . . . . .';
    min-height: 700px; }
  .How__headers__3Ic5P {
    grid-area: headers;
    max-width: none;
    font-size: 24px; }
  .How__headers__3Ic5P h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px; }
  .How__headers__3Ic5P h2 {
    font-family: 'Lato', sans-serif;
    font-size: 24px; }
  .How__how__3pWmO ul {
    grid-area: list;
    max-width: 80%; }
  .How__how__3pWmO li {
    margin-bottom: 48px; }
  .How__how__3pWmO h3 {
    font-size: 20px;
    margin-bottom: 4px; }
  .How__how__3pWmO p {
    font-size: 16px;
    line-height: 1.5; }
  .How__startLink__2b5qK a {
    font-size: 16px; } }

.LandingPage__top__L2UDm {
  background-image: radial-gradient(1200px circle at 30% -10%, #ffffff 50%, #f0003f 50%); }

.LandingPage__vp__1tbAO {
  min-height: 500px;
  margin-top: 16px; }

.LandingPage__vptext__1kuOJ {
  margin-bottom: 44px; }

.LandingPage__vptextsecond__TFvIc {
  max-width: 420px; }

.LandingPage__signUp__2SQhS {
  max-width: 460px; }

.LandingPage__placeCell__1LH3B {
  width: 100%;
  padding-right: 24px;
  vertical-align: top;
  min-width: 150px; }

.LandingPage__placeContainer__xXAJM {
  width: 100%;
  height: 36px;
  margin-bottom: 2px;
  border-bottom: 1px solid #26231c; }
  .LandingPage__placeContainer__xXAJM input::placeholder {
    color: #a49e94;
    font-family: 'Lato', sans-serif; }

.LandingPage__place__32q92 {
  width: 100%;
  background: 0 0;
  border: none;
  outline: 0;
  padding: 0;
  text-transform: lowercase;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  top: 4px;
  font-family: 'Lato', sans-serif;
  line-height: 32px;
  position: relative;
  color: #f0003f; }

.LandingPage__buttonCell__1d5lp {
  vertical-align: top;
  min-width: 120px; }

.LandingPage__button__11E6j {
  min-width: 150px;
  background: #f7c948;
  border-radius: 24px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  outline: 0;
  user-select: none;
  display: inline-block;
  height: 36px;
  margin: 1px 0 2px;
  padding: 0 8px;
  text-align: center;
  white-space: nowrap;
  transition: 0.5s;
  text-decoration: none;
  cursor: pointer; }

.LandingPage__button__11E6j div {
  font-family: 'Lato', sans-serif;
  line-height: 32px;
  position: relative;
  color: #f9f8f6;
  text-transform: lowercase;
  overflow: hidden;
  font-size: 16px; }

.LandingPage__heroContainer__26tCQ {
  margin-top: 48px;
  margin-bottom: 32px;
  text-align: center; }

.LandingPage__hero__3oVik {
  width: 100%;
  max-width: 1024px; }

@media (min-width: 640px) {
  /* section divider background */
  .LandingPage__top__L2UDm {
    background-image: radial-gradient(1500px circle at 30% -10%, #ffffff 50%, #f0003f 50%); }
  /* spacing */
  .LandingPage__vp__1tbAO {
    margin-top: 64px; }
  .LandingPage__vptext__1kuOJ {
    margin-bottom: 60px; }
  .LandingPage__vptextsecond__TFvIc {
    max-width: 550px; }
  /* fonts and heights */
  .LandingPage__tb__1it5X {
    font-size: 16px;
    padding-top: 10px; }
  .LandingPage__placeContainer__xXAJM {
    height: 46px; }
  .LandingPage__place__32q92 {
    line-height: 42px;
    font-size: 24px; }
  .LandingPage__button__11E6j {
    min-width: 200px;
    height: 48px; }
  .LandingPage__button__11E6j div {
    line-height: 42px;
    font-size: 20px; } }

@media (min-width: 1200px) {
  .LandingPage__hero__3oVik {
    width: 1024px; }
  .LandingPage__heroContainer__26tCQ {
    margin-top: 0; } }

.LandingPageGrid__signup__3E3eU {
  grid-area: signup; }

.LandingPageGrid__image__25Oll {
  grid-area: image; }

.LandingPageGrid__value__3KSlb {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 12px;
  grid-template-rows: auto;
  grid-template-areas: '. signup signup signup signup signup signup signup signup signup signup .' 'image image image image image image image image image image image image'; }

@media (min-width: 1200px) {
  .LandingPageGrid__value__3KSlb {
    grid-template-areas: '. signup signup signup signup signup signup . . . . .'; }
  .LandingPageGrid__image__25Oll {
    grid-row: 1;
    grid-column-start: 7;
    grid-column-end: span 5; }
  .LandingPageGrid__container__15gn7 {
    overflow-x: hidden; } }


.PlanSection__visualPickerFooter__3B1b3 h1 {
  margin-bottom: 4px; }

.PlanSection__visualPickerFooter__3B1b3 h2 {
  line-height: 1.2; }

.PlanSection__visualPickerOption__u_67P input:checked ~ label > [data-id='visual-picker_option'] {
  border-color: #f7c94a; }

.PlanSection__visualPickerOption__u_67P
input:checked
~ label
> [data-id='visual-picker_option']
> span {
  border-right-color: #f7c94a;
  border-top-color: #f7c94a; }

.PlanSection__visualPickerOption__u_67P input:hover ~ label > [data-id='visual-picker_option'] {
  border-color: #f7c94a; }

.Checkout__purchasedisclaimer__34irx {
  text-align: center;
  padding-left: 60px;
  padding-right: 60px;
  line-height: 20px;
  font-size: 11px;
  color: #b9b3a7;
  font-weight: 300;
  margin-bottom: 16px; }

.Checkout__ssl__1n15n {
  text-align: center;
  font-weight: 100;
  font-size: 12px;
  color: #000;
  opacity: 0.36;
  margin-top: 14px; }

.Checkout__termsLink__3Lehg {
  font-weight: 500;
  color: #423d33;
  text-decoration: none; }

.Checkout__checkout__afn3K {
  padding: 24px; }

.Checkout__checkout__afn3K button {
  width: 100%;
  white-space: nowrap;
  border: 0;
  outline: 0;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 14px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  color: #f9f8f6;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.025em;
  background-color: #f7c94a;
  text-decoration: none;
  -webkit-transition: all 150ms ease;
  transition: all 150ms ease;
  margin-top: 10px; }

.Checkout__checkout__afn3K button:hover {
  color: #fff;
  cursor: pointer;
  background-color: #fadb61;
  transform: translateY(-1px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08); }

.BillingSection__section__2ASm4 {
  max-width: 548px;
  margin: 12px 16px; }

.BillingSection__title__3nvOb {
  padding: 24px 24px 0 24px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: 'Roboto', sans-serif; }

.BillingSection__summary__2z3yS {
  background-color: #f7f7f7;
  font-size: 12px;
  font-weight: 300;
  font-family: 'Lato', sans-serif;
  padding: 24px; }

.BillingSection__summary__2z3yS .BillingSection__lineitems__2MUeQ {
  border-bottom: 1px solid #a49e94;
  margin-bottom: 16px; }

.BillingSection__summary__2z3yS .BillingSection__lineitem__2QBIL {
  margin-bottom: 16px; }

.BillingSection__summary__2z3yS .BillingSection__finalline__2zzYJ {
  margin-bottom: 8px; }

.BillingSection__summaryLabel__3d7f2 {
  text-transform: lowercase;
  font-weight: 500; }

.BillingSection__summaryAmount__HLDt5 {
  float: right; }

.BillingSection__finalline__2zzYJ .BillingSection__summaryAmount__HLDt5 {
  font-size: 14px;
  font-weight: 500; }

.BillingSection__discounted__18Ohi {
  color: #ec4067; }

.BillingSection__total__3aYv4 {
  text-transform: lowercase;
  font-weight: bold; }

@media (min-width: 560px) {
  .BillingSection__section__2ASm4 {
    margin: 12px auto; } }

@media (min-width: 750px) {
  .BillingSection__section__2ASm4 {
    max-width: 748px;
    display: flex;
    flex-direction: row; }
  .BillingSection__summary__2z3yS {
    width: 264px;
    padding-top: 30px; } }

.default__page__1eZXR {
  background: white; }

.default__section__2nAQp {
  background: white; }

.default__input__2W9C8 {
  background: 0 0;
  color: #26231c;
  box-shadow: inset 0 -2px 0 0 #d4cfc4;
  border: none;
  outline: 0; }

.default__input__2W9C8::placeholder {
  color: #a49e94; }

.default__input__2W9C8[value]:not([value='']) {
  box-shadow: inset 0 -2px 0 0 #f0b428; }

.default__bottomlabel__39iwj {
  color: #26231c; }

.default__page__1eZXR .default__title__2Zt6B {
  color: #26231c; }

.default__page__1eZXR .default__text__1hPso {
  color: #4f4940; }

.default__section__2nAQp .default__title__2Zt6B {
  color: #4f4940; }

.default__section__2nAQp .default__text__1hPso {
  color: #a49e94; }

.default__inputLabel__3BhGe {
  color: #dd901d; }

.default__inputLabel__3BhGe.default__val__3hfty {
  color: #f0003f; }

.default__input__2W9C8.default__val__3hfty {
  box-shadow: inset 0 -2px 0 0 #f0003f; }

.FormInput__inputWrapper__NvyJM {
  padding-top: 4px;
  margin-left: 24px;
  margin-right: 24px;
  margin-bottom: 24px; }

.FormInput__inputWrapper__NvyJM input {
  width: 100%;
  padding: 0;
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
  font-family: 'Lato', sans-serif;
  line-height: 36px; }

.FormInput__inputWrapper__NvyJM input::placeholder {
  font-family: 'Lato', sans-serif; }

.FormInput__inputLabel__B_bIx {
  padding-top: 4px;
  font-family: 'Avenir LT Std Heavy', sans-serif;
  font-size: 12px;
  line-height: 18px;
  -webkit-font-smoothing: antialiased;
  position: relative;
  left: -1px;
  height: 12px;
  text-transform: lowercase;
  transition: opacity 0.2s ease-out, color 0.2s ease-out; }

.FormInput__inputLabel__B_bIx.FormInput__val__2KTUG {
  opacity: 1; }

.FormInput__hidden__2sdCI {
  opacity: 0; }

.FormInput__show__3o28Q {
  opacity: 1; }

.FormInput__none__1rcRM {
  display: none; }

.Confirmation__confirmation__3FfLK {
  padding: 0px 0px 32px;
  font-family: 'Lato', sans-serif;
  text-align: left;
  margin: 48px auto;
  display: flex;
  flex-direction: column;
  max-width: 512px; }

.Confirmation__banner__19zDv {
  background-color: #fce588;
  padding: 32px 24px; }

.Confirmation__banner__19zDv h3 {
  font-size: 16px;
  margin-bottom: 4px;
  line-height: 1.2; }

.Confirmation__banner__19zDv h1 {
  font-size: 64px;
  line-height: 1.2;
  font-weight: 900;
  font-family: 'Roboto', sans-serif; }

.Confirmation__banner__19zDv h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 12px 0 0; }

.Confirmation__cta__2t5K0 {
  padding: 0px 24px;
  color: #423d33;
  line-height: 1.2; }

.Confirmation__cta__2t5K0 h3 {
  font-family: 'Roboto', sans-serif;
  color: #27241d;
  font-size: 20px;
  text-align: center;
  padding: 24px 0; }

.Confirmation__cta__2t5K0 h4 span {
  color: #f0003f;
  font-weight: 700; }

.Confirmation__cta__2t5K0 table {
  margin: 16px auto;
  border-collapse: separate;
  border-spacing: 0px 4px; }

.Confirmation__cta__2t5K0 tr {
  cursor: pointer; }

.Confirmation__cta__2t5K0 .Confirmation__fieldName__1YzdY {
  color: #a39e93; }

.Confirmation__cta__2t5K0 .Confirmation__field__2U9WO {
  padding-left: 10px; }

.Confirmation__cta__2t5K0 > table > tbody > tr > td > span.Confirmation__copy__3O4o2 {
  opacity: 0; }

.Confirmation__cta__2t5K0 > table > tbody > tr:hover > td > span.Confirmation__copy__3O4o2 {
  opacity: 1;
  color: #f0003f; }

span.Confirmation__copy__3O4o2 {
  padding-left: 10px; }

.GroupInfoForm__inputWrapper__2oRyO {
  padding-top: 4px;
  margin-bottom: 4px; }

.GroupInfoForm__inputWrapper__2oRyO input {
  outline: 0;
  padding: 0 24px 0 0;
  line-height: 36px;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  font-family: 'Lato', sans-serif; }

.GroupInfoForm__inputWrapper__2oRyO input::placeholder {
  font-family: 'Lato', sans-serif; }

.GroupInfoForm__inputLabel__33hoJ {
  padding-top: 4px;
  width: 100%;
  font-family: 'Avenir LT Std Heavy', sans-serif;
  font-size: 12px;
  line-height: 18px;
  -webkit-font-smoothing: antialiased;
  position: relative;
  left: -1px;
  height: 12px;
  text-transform: lowercase;
  transition: opacity 0.2s ease-out, color 0.2s ease-out; }

.GroupInfoForm__inputLabel__33hoJ.GroupInfoForm__val__1Q-BI {
  opacity: 1; }

.GroupInfoForm__hidden__3qDvx {
  opacity: 0; }

.GroupInfoForm__show__3T-Lp {
  opacity: 1; }

.GroupInfoForm__none__3DAbK {
  display: none; }

.ConversionPage__info__2ksBW {
  color: #fff; }

.ConversionPage__infoButton__3hfPL {
  font-weight: 600; }

.ConversionPage__bottomlabel__HTG-t {
  padding-top: 2px;
  font-family: 'Avenir LT Std Heavy', sans-serif;
  font-size: 10px;
  line-height: 14px;
  -webkit-font-smoothing: antialiased;
  position: relative;
  left: -1px;
  text-transform: lowercase;
  transition: opacity 0.2s ease-out, color 0.2s ease-out; }

.ConversionPage__plans__1EGtp {
  margin: 32px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start; }

.ConversionPage__plan__3a0LW {
  border-radius: 16px;
  border: none;
  background: #f999b2;
  padding: 16px;
  pointer: cursor;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  outline: none; }

button > * {
  pointer-events: none; }

.ConversionPage__left__35--u {
  margin-right: 8px; }

.ConversionPage__right__1O_JX {
  margin-left: 8px; }

.ConversionPage__plan__3a0LW h3 {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: #fcccd8;
  padding: 4px 0; }

.ConversionPage__plan__3a0LW h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  color: #fde5eb; }

.ConversionPage__selected__3BE29 {
  background: #fff3c2;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
  color: #f0003f; }

.ConversionPage__selected__3BE29 h3 {
  color: #615c51; }

.ConversionPage__selected__3BE29 h1 {
  color: #423d33; }

.InvitedUserPage__invite__2TjLG {
  display: flex;
  flex-direction: column;
  max-width: 512px;
  margin: 12px;
  padding: 32px 24px;
  font-family: 'Lato', sans-serif;
  text-align: left;
  background-color: #fce588; }

.InvitedUserPage__invite__2TjLG h3 {
  font-size: 16px;
  margin-bottom: 4px;
  line-height: 1.2; }

.InvitedUserPage__invite__2TjLG h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900; }

.InvitedUserPage__invite__2TjLG h2 {
  font-size: 18px;
  margin: 12px 0 0;
  color: #423d33; }

.InvitedUserPage__invite__2TjLG h2 span {
  font-weight: 700; }

.InvitedUserPage__fullname__2whJJ {
  max-width: 256px; }

.InvitedUserPage__nickname__2Woya {
  max-width: 198px; }

.InvitedUserPage__join__2GuES {
  white-space: nowrap;
  border: 0;
  outline: 0;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 16px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  color: #f9f8f6;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.025em;
  background-color: #f7c94a;
  text-decoration: none;
  -webkit-transition: all 150ms ease;
  transition: all 150ms ease;
  margin-top: 32px; }

.InvitedUserPage__join__2GuES:hover {
  color: #fff;
  cursor: pointer;
  background-color: #fadb61;
  transform: translateY(-1px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08); }

@media (min-width: 560px) {
  .InvitedUserPage__invite__2TjLG {
    margin: 12px auto; }
  .InvitedUserPage__invite__2TjLG h1 {
    font-size: 64px; } }

@media (min-width: 750px) {
  .InvitedUserPage__invite__2TjLG {
    max-width: 700px; } }

@charset "UTF-8";
.SnippetEditor__editor__27kO_ {
  padding: 20px 0 26px;
  background: white;
  line-height: 1.58; }

.SnippetEditor__editor__27kO_:focus {
  outline: none; }

.SnippetEditor__preview___bUKA {
  opacity: 0.7; }

.SnippetEditor__ul_list__M8hp_ {
  margin-top: 20px; }
  .SnippetEditor__ul_list__M8hp_ li::before {
    content: '•';
    width: 1em;
    margin-left: -1em;
    position: absolute;
    display: inline-block;
    box-sizing: border-box;
    color: #f0003f; }

.SnippetEditor__ol_list__1Q9KX {
  margin-top: 20px;
  counter-reset: li; }
  .SnippetEditor__ol_list__1Q9KX li::before {
    content: counter(li) ".";
    counter-increment: li;
    width: 2em;
    margin-left: -2.5em;
    text-align: right;
    position: absolute;
    display: inline-block;
    box-sizing: border-box;
    color: #f0003f; }

.SnippetEditor__list_item__aDCz6 {
  line-height: 1.58;
  margin-left: 22px;
  margin-bottom: 14px; }

.SnippetsPage__error__fmAYo {
  max-width: 512px;
  margin: auto;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  font-family: 'Lato', sans-serif;
  background-color: #fce588;
  text-align: left; }

.SnippetsPage__error__fmAYo h3 {
  font-size: 16px;
  margin-bottom: 4px;
  line-height: 1.2; }

.SnippetsPage__error__fmAYo h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 1.2;
  font-weight: 900; }

.SnippetsPage__error__fmAYo h2 {
  font-size: 18px;
  margin: 24px 0 0;
  line-height: 1.2;
  color: #423d33; }

.SnippetsPage__page__1Hmjq {
  display: flex;
  flex-flow: column;
  min-height: 100vh; }

.MagicLinkRequest__textspace__3hCVV {
  max-width: 420px;
  margin-bottom: 44px; }

.MagicLinkRequest__error__3elz- {
  margin-top: 12px; }

@media (min-width: 640px) {
  .MagicLinkRequest__textspace__3hCVV {
    max-width: 550px;
    margin-bottom: 60px; } }

.MagicLinkPage__content__23Q-r {
  margin-top: 16px; }

.MagicLinkPage__container__27h5z {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  grid-template-areas: '. e e e e e e e e e e .'; }

.MagicLinkPage__e__2P9WH {
  grid-area: e; }

.MagicLinkPage__loading__2gxgk {
  display: flex;
  flex-flow: column;
  height: 100vh; }

@media (min-width: 640px) {
  .MagicLinkPage__content__23Q-r {
    margin-top: 64px; } }


/*# sourceMappingURL=main.css.map*/