/* line 1, app/assets/stylesheets/base.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*
 * -- BASE STYLES --
 * Most of these are inherited from Base, but I want to change a few.
 */
/* line 11, app/assets/stylesheets/base.scss */
body {
  line-height: 1.7em;
  color: var(--primary);
  font-size: 13px;
  font-family: "Oxygen", sans-serif;
}

/* line 18, app/assets/stylesheets/base.scss */
h1,
h2,
h3,
h4,
h5,
h6,
label {
  color: #34495e;
}

/* line 28, app/assets/stylesheets/base.scss */
.pure-img-responsive {
  max-width: 100%;
  height: auto;
}

/*
 * -- LAYOUT STYLES --
 * These are some useful classes which I will need
 */
/* line 37, app/assets/stylesheets/base.scss */
.l-box {
  padding: 1em;
}

/* line 41, app/assets/stylesheets/base.scss */
.l-box-lrg {
  padding: 2em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 46, app/assets/stylesheets/base.scss */
.is-center {
  text-align: center;
}

/*
 * -- PURE FORM STYLES --
 * Style the form inputs and labels
 */
/* line 54, app/assets/stylesheets/base.scss */
.pure-form label {
  margin: 1em 0 0;
  font-weight: bold;
  font-size: 100%;
}

/* line 60, app/assets/stylesheets/base.scss */
.pure-form input[type] {
  border: 2px solid #ddd;
  box-shadow: none;
  font-size: 100%;
  width: 100%;
  margin-bottom: 1em;
}

/*
 * -- PURE BUTTON STYLES --
 * I want my pure-button elements to look a little different
 */
/* line 72, app/assets/stylesheets/base.scss */
.pure-button {
  background-color: #1f8dd6;
  color: white;
  padding: 0.5em 2em;
  border-radius: 5px;
}

/* line 79, app/assets/stylesheets/base.scss */
a.pure-button-primary {
  background: white;
  color: #1f8dd6;
  border-radius: 5px;
  font-size: 120%;
}

/*
 * -- MENU STYLES --
 * I want to customize how my .pure-menu looks at the top of the page
 */
/* line 91, app/assets/stylesheets/base.scss */
.home-menu {
  padding: 0.5em;
  text-align: center;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

/* line 97, app/assets/stylesheets/base.scss */
.home-menu {
  background: var(--third);
}

/* line 101, app/assets/stylesheets/base.scss */
.pure-menu.pure-menu-fixed {
  /* Fixed menus normally have a border at the bottom. */
  border-bottom: none;
  /* I need a higher z-index here because of the scroll-over effect. */
  z-index: 4;
}

/* line 108, app/assets/stylesheets/base.scss */
.home-menu .pure-menu-heading {
  color: white;
  font-weight: 400;
  font-size: 120%;
}

/* line 114, app/assets/stylesheets/base.scss */
.home-menu .pure-menu-selected a {
  color: white;
}

/* line 118, app/assets/stylesheets/base.scss */
.home-menu a {
  color: #6fbef3;
}

/* line 122, app/assets/stylesheets/base.scss */
.home-menu li a:hover,
.home-menu li a:focus {
  background: none;
  border: none;
  color: #aecfe5;
}

/*
 * -- SPLASH STYLES --
 * This is the blue top section that appears on the page.
 */
/* line 134, app/assets/stylesheets/base.scss */
.splash-container {
  background: #1f8dd6;
  z-index: 1;
  overflow: hidden;
  /* The following styles are required for the "scroll-over" effect */
  width: 100%;
  height: 88%;
  top: 0;
  left: 0;
  position: fixed !important;
}

/* line 146, app/assets/stylesheets/base.scss */
.splash {
  /* absolute center .splash within .splash-container */
  width: 80%;
  height: 50%;
  margin: auto;
  position: absolute;
  top: 100px;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  text-transform: uppercase;
}

/* This is the main heading that appears on the blue section */
/* line 161, app/assets/stylesheets/base.scss */
.splash-head {
  font-size: 20px;
  font-weight: bold;
  color: white;
  border: 3px solid white;
  padding: 1em 1.6em;
  font-weight: 100;
  border-radius: 5px;
  line-height: 1em;
}

/* This is the subheading that appears on the blue section */
/* line 173, app/assets/stylesheets/base.scss */
.splash-subhead {
  color: white;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

/*
 * -- CONTENT STYLES --
 * This represents the content area (everything below the blue section)
 */
/* line 183, app/assets/stylesheets/base.scss */
.content-wrapper {
  /* These styles are required for the "scroll-over" effect */
  position: absolute;
  top: 87%;
  width: 100%;
  min-height: 12%;
  z-index: 2;
  background: white;
}

/* We want to give the content area some more padding */
/* line 194, app/assets/stylesheets/base.scss */
.content {
  padding: 1em 1em 3em;
}

/* This is the class used for the main content headers (<h2>) */
/* line 199, app/assets/stylesheets/base.scss */
.content-head {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 2em 0 1em;
}

/* This is a modifier class used when the content-head is inside a ribbon */
/* line 207, app/assets/stylesheets/base.scss */
.content-head-ribbon {
  color: white;
}

/* This is the class used for the content sub-headers (<h3>) */
/* line 212, app/assets/stylesheets/base.scss */
.content-subhead {
  color: #1f8dd6;
}

/* line 216, app/assets/stylesheets/base.scss */
.content-subhead i {
  margin-right: 7px;
}

/* This is the class used for the dark-background areas. */
/* line 221, app/assets/stylesheets/base.scss */
.ribbon {
  background: #2d3e50;
  color: #aaa;
}

/* This is the class used for the footer */
/* line 227, app/assets/stylesheets/base.scss */
.footer {
  background: #111;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* line 234, app/assets/stylesheets/base.scss */
footer a {
  color: white;
}

/*
 * -- TABLET (AND UP) MEDIA QUERIES --
 * On tablets and other medium-sized devices, we want to customize some
 * of the mobile styles.
 */
@media (min-width: 968px) {
  /* We increase the body font size */
  /* line 246, app/assets/stylesheets/base.scss */
  body {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    height: 100vh;
  }
  /* line 252, app/assets/stylesheets/base.scss */
  body .page-content {
    flex: 1;
    width: 1200px;
    position: relative;
    overflow-y: scroll;
    margin: 30px auto;
  }
  /* line 259, app/assets/stylesheets/base.scss */
  body .page-content.wide {
    width: 100%;
    margin: auto;
  }
  /* We can align the menu header to the left, but float the
    menu items to the right. */
  /* line 268, app/assets/stylesheets/base.scss */
  .home-menu {
    text-align: left;
  }
  /* line 272, app/assets/stylesheets/base.scss */
  .home-menu ul {
    float: right;
  }
  /* We increase the height of the splash-container */
  /*    .splash-container {
        height: 500px;
    }*/
  /* We decrease the width of the .splash, since we have more width
    to work with */
  /* line 283, app/assets/stylesheets/base.scss */
  .splash {
    width: 50%;
    height: 50%;
  }
  /* line 288, app/assets/stylesheets/base.scss */
  .splash-head {
    font-size: 250%;
  }
  /* We remove the border-separator assigned to .l-box-lrg */
  /* line 293, app/assets/stylesheets/base.scss */
  .l-box-lrg {
    border: none;
  }
}

/*
 * -- DESKTOP (AND UP) MEDIA QUERIES --
 * On desktops and other large devices, we want to over-ride some
 * of the mobile and tablet styles.
 */
@media (min-width: 78em) {
  /* We increase the header font size even more */
  /* line 306, app/assets/stylesheets/base.scss */
  .splash-head {
    font-size: 300%;
  }
}

@media screen and (max-width: 968px) {
  /* line 312, app/assets/stylesheets/base.scss */
  .page-content {
    margin: auto 20px;
  }
}
/* line 1, app/assets/stylesheets/buttons.scss */
.button {
  padding: 8px 10px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  margin: 5px;
  line-height: 40px;
}

/* line 8, app/assets/stylesheets/buttons.scss */
.button.primary {
  background-color: var(--primary);
  color: var(--primary-inverse);
}

/* line 12, app/assets/stylesheets/buttons.scss */
.button.secondary {
  background-color: #fff;
  border: 1px solid var(--secondary);
  color: var(--secondary-inverse);
}

/* line 18, app/assets/stylesheets/buttons.scss */
.button.input {
  line-height: 20px;
}
/* line 1, app/assets/stylesheets/footer.scss */
footer {
  background: black;
  color: var(--third-inverse);
  min-height: 180px;
  padding: 40px 80px;
}
/* line 1, app/assets/stylesheets/forms.scss */
form {
  display: grid;
}

/* line 5, app/assets/stylesheets/forms.scss */
form .field {
  font-family: system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.3em;
  display: grid;
  gap: 0.5em;
}

/* line 15, app/assets/stylesheets/forms.scss */
.field + .field {
  margin-top: 1em;
}

/* line 19, app/assets/stylesheets/forms.scss */
input[type="email"],
input[type="password"] {
  margin: 5px;
  padding: 5px 10px;
  font-size: 1.5em;
  border-radius: 10px;
  border: 1px solid #ccc;
  line-height: 1.5em;
}

/* line 29, app/assets/stylesheets/forms.scss */
input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

/* line 51, app/assets/stylesheets/forms.scss */
input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  /* Windows High Contrast Mode */
  background-color: CanvasText;
}

/* line 64, app/assets/stylesheets/forms.scss */
input[type="checkbox"]:checked::before {
  transform: scale(1);
}

/* line 73, app/assets/stylesheets/forms.scss */
input[type="checkbox"]:disabled {
  --form-control-color: var(--form-control-disabled);
}

/* line 77, app/assets/stylesheets/forms.scss */
.form {
  text-align: left;
}

/* line 81, app/assets/stylesheets/forms.scss */
.field label {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-bottom: 20px;
}

/* line 87, app/assets/stylesheets/forms.scss */
.field label input[type="checkbox"] {
  margin-right: 20px;
  line-height: 2em;
  margin-top: 10px;
  margin-left: 30px;
  margin-bottom: 10px;
}

/* line 96, app/assets/stylesheets/forms.scss */
.button {
  font-size: 1.3em;
}

/* line 100, app/assets/stylesheets/forms.scss */
.sign-in,
.sign-up {
  text-align: center;
}
/* line 1, app/assets/stylesheets/header.scss */
.header {
  height: 135px;
}

/* line 7, app/assets/stylesheets/header.scss */
body.light .header .logo.light {
  display: block;
}

/* line 10, app/assets/stylesheets/header.scss */
body.light .header .logo.dark {
  display: none;
}

/* line 17, app/assets/stylesheets/header.scss */
body.dark .header .logo.dark {
  display: block;
}

/* line 20, app/assets/stylesheets/header.scss */
body.dark .header .logo.light {
  display: none;
}

@media screen and (max-width: 968px) {
  /* line 27, app/assets/stylesheets/header.scss */
  .header {
    height: 80px;
  }
  /* line 29, app/assets/stylesheets/header.scss */
  .header .logo {
    width: 200px;
  }
}
/* line 3, app/assets/stylesheets/home.scss */
body.home .header a {
  color: white;
}

/* line 8, app/assets/stylesheets/home.scss */
body.home .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100vh + 62px);
  background-image: url(/assets/waterfall8_3-e87be1039bed2dc1121173ae28abcd3206d37fb13f2aa2eab3700b1004c24141.jpg);
  background-size: cover;
  background-position: 50%;
  width: 100%;
  z-index: -50;
}

/* line 20, app/assets/stylesheets/home.scss */
body.home .hero {
  display: block;
  height: calc(100vh);
  position: relative;
}

/* line 26, app/assets/stylesheets/home.scss */
body.home .hero .content {
  margin: 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 40px;
  font-size: 2rem;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
}

/* line 39, app/assets/stylesheets/home.scss */
body.home .hero .content h1 {
  color: white;
  font-weight: 900;
  line-height: 1em;
  font-size: 2.2em;
}

/* line 45, app/assets/stylesheets/home.scss */
body.home .hero .content p.sub-heading {
  color: white;
  font-weight: 900;
  line-height: 1em;
  font-size: 1.5em;
}

/* line 51, app/assets/stylesheets/home.scss */
body.home .hero .content a {
  margin-top: 30px;
  font-size: 1em;
}

/* line 58, app/assets/stylesheets/home.scss */
body.home .page-content {
  width: 100%;
  margin: 0;
  overflow-y: initial;
}

/* line 65, app/assets/stylesheets/home.scss */
body.home section {
  min-height: 200px;
  text-align: center;
}

/* line 68, app/assets/stylesheets/home.scss */
body.home section.dark {
  background: var(--third);
  color: var(--third-inverse);
}

/* line 73, app/assets/stylesheets/home.scss */
body.home section.quote {
  text-align: center;
  font-size: 2em;
  position: relative;
}

/* line 78, app/assets/stylesheets/home.scss */
body.home section.quote p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  width: 80%;
}

/* line 91, app/assets/stylesheets/home.scss */
body.home .features div {
  text-align: center;
  padding: 40px;
  font-size: 1.3em;
}

/* line 96, app/assets/stylesheets/home.scss */
body.home .features div i {
  font-size: 1.7em;
}

@media screen and (max-width: 1700px) {
  /* line 106, app/assets/stylesheets/home.scss */
  body.home .hero .content {
    font-size: 1rem;
  }
  /* line 110, app/assets/stylesheets/home.scss */
  body.home section.quote {
    font-size: 1em;
  }
}

@media screen and (max-width: 968px) {
  /* line 118, app/assets/stylesheets/home.scss */
  body.home .hero {
    margin-top: -80px;
  }
  /* line 120, app/assets/stylesheets/home.scss */
  body.home .hero .content {
    font-size: 0.6rem;
  }
  /* line 124, app/assets/stylesheets/home.scss */
  body.home section.quote {
    font-size: 1em;
  }
}
/* line 1, app/assets/stylesheets/metric.scss */
.metric {
  border: 1px solid;
  background: var(--fourth);
  color: var(--fourth-inverse);
  display: inline-block;
  padding: 0 15px;
  text-align: center;
}

/* line 9, app/assets/stylesheets/metric.scss */
.metric .title {
  font-size: 1.2em;
  margin: 10px;
}

/* line 13, app/assets/stylesheets/metric.scss */
.metric .score {
  font-size: 2em;
  margin: 10px;
}

/* line 17, app/assets/stylesheets/metric.scss */
.metric .unit {
  display: inline-block;
  font-size: 0.4em;
}
/* line 1, app/assets/stylesheets/navigation.scss */
.home-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 7, app/assets/stylesheets/navigation.scss */
.pure-menu-list {
  margin-right: 20px;
}

/* line 8, app/assets/stylesheets/navigation.scss */
.pure-menu-list a {
  margin-right: 20px;
}

/* line 16, app/assets/stylesheets/navigation.scss */
.home .home-menu {
  background: rgba(0, 0, 0, 0.4);
  box-shadow: none;
}

/* line 21, app/assets/stylesheets/navigation.scss */
.home .home-menu .pure-menu-selected a {
  color: #6fbef3;
}

/* line 26, app/assets/stylesheets/navigation.scss */
.home .home-menu a {
  color: var(--primary);
}

/* line 29, app/assets/stylesheets/navigation.scss */
.home .home-menu a:hover {
  color: #aecfe5;
}

@media screen and (max-width: 968px) {
  /* line 39, app/assets/stylesheets/navigation.scss */
  nav .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
  }
  /* line 45, app/assets/stylesheets/navigation.scss */
  nav .nav-btn label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  /* line 51, app/assets/stylesheets/navigation.scss */
  nav .nav-btn label span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
  }
  /* line 60, app/assets/stylesheets/navigation.scss */
  nav .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #333;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 0px;
  }
  /* line 71, app/assets/stylesheets/navigation.scss */
  nav .nav-links a {
    display: block;
    width: 100%;
  }
  /* line 77, app/assets/stylesheets/navigation.scss */
  nav #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  /* line 81, app/assets/stylesheets/navigation.scss */
  nav #nav-check:checked ~ .nav-links {
    height: calc(100vh - 50px);
    overflow-y: auto;
  }
}

@media screen and (max-width: 700px) {
  /* line 90, app/assets/stylesheets/navigation.scss */
  nav #menuToggle {
    position: relative;
  }
  /* line 93, app/assets/stylesheets/navigation.scss */
  nav #menuToggle i {
    font-size: 2em;
    display: block;
    color: white;
    margin-right: 20px;
  }
  /* line 100, app/assets/stylesheets/navigation.scss */
  nav #menuToggle .pure-menu-list {
    display: none;
  }
  /* line 105, app/assets/stylesheets/navigation.scss */
  nav #menuToggle.menu-visible .pure-menu-list {
    position: absolute;
    display: flex;
    align-items: start;
    padding: 10px 20px;
    flex-direction: column;
    background-color: var(--third);
    color: black;
    top: 35px;
    right: 0;
    width: 130px;
    font-size: 20px;
    line-height: 30px;
    border-radius: 3px;
  }
  /* line 120, app/assets/stylesheets/navigation.scss */
  nav #menuToggle.menu-visible .pure-menu-list a {
    color: var(--third-inverse);
  }
}
/* line 1, app/assets/stylesheets/pricing.scss */
.pricing {
  /*
 * -- Layout Styles --
 */
  /*
 * -- MENU STYLES --
 * Make the menu have a very faint box-shadow.
 */
  /*
 * -- BANNER --
 * The top banner with the headings. By using a combination
 * of `display: table;` and `display: table-cell;`, we can
 * vertically center the text.
 */
  /*
 * -- PRICING TABLE WRAPPER --
 * This element wraps up all the pricing table elements
 */
  /*
 * -- PRICING TABLE  --
 * Every pricing table has the .pricing-table class
 */
  /*
 * -- PRICING TABLE HEADER COLORS --
 * Choose a different color based on the type of pricing table.
 */
  /*
 * -- PRICING TABLE HEADER --
 * By default, a header is black/white, and has some styles for its <h2> name.
 */
  /*
 * -- PRICING TABLE PRICE --
 * Styles for the price and the corresponding <span>per month</span>
 */
  /*
 * -- PRICING TABLE LIST --
 * Each pricing table has a <ul> which is denoted by the .pricing-table-list class
 */
  /*
 * -- PRICING TABLE LIST ELEMENTS --
 * Styles for the individual list elements within each pricing table
 */
  /*
 * -- PRICING TABLE BUTTON --
 * Styles for the "Choose" button at the bottom of a pricing table.
 * This inherits from Pure Button.
 */
  /*
 * -- TABLET MEDIA QUERIES --
 * On tablets, we want to slightly adjust the size of the banner
 * text and add some vertical space between the various pricing tables
 */
  /*
 * -- PHONE MEDIA QUERIES --
 * On phones, we want to reduce the height and font-size of the banner further
 */
}

/* line 3, app/assets/stylesheets/pricing.scss */
.pricing h2,
.pricing h3 {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

/* line 11, app/assets/stylesheets/pricing.scss */
.pricing p {
  line-height: 1.6em;
}

/* line 18, app/assets/stylesheets/pricing.scss */
.pricing .l-content {
  margin: 0 auto;
}

/* line 22, app/assets/stylesheets/pricing.scss */
.pricing .l-box {
  padding: 0.5em 2em;
}

/* line 30, app/assets/stylesheets/pricing.scss */
.pricing .pure-menu {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

/* line 34, app/assets/stylesheets/pricing.scss */
.pricing .pure-menu-link {
  padding: 0.5em 0.7em;
}

/* line 45, app/assets/stylesheets/pricing.scss */
.pricing .banner {
  background: transparent url("https://24.media.tumblr.com/ccb268832580ac12951828a1c179de69/tumblr_mo2xbk8JUK1st5lhmo1_1280.jpg") 0 0 no-repeat fixed;
  text-align: center;
  background-size: cover;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='https://24.media.tumblr.com/ccb268832580ac12951828a1c179de69/tumblr_mo2xbk8JUK1st5lhmo1_1280.jpg', sizingMethod='scale');
  height: 200px;
  width: 100%;
  margin-bottom: 3em;
  display: table;
  line-height: 60px;
}

/* line 58, app/assets/stylesheets/pricing.scss */
.pricing .banner-head {
  display: table-cell;
  vertical-align: middle;
  margin-bottom: 0;
  font-size: 2em;
  color: white;
  font-weight: 500;
  text-shadow: 0 1px 1px black;
}

/* line 72, app/assets/stylesheets/pricing.scss */
.pricing .pricing-tables,
.pricing .information {
  max-width: 980px;
  margin: 0 auto;
}

/* line 78, app/assets/stylesheets/pricing.scss */
.pricing .pricing-tables {
  margin-bottom: 3.125em;
  text-align: center;
}

/* line 87, app/assets/stylesheets/pricing.scss */
.pricing .pricing-table {
  margin: 0 0.5em 2em;
  padding: 0 0 3em;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* line 99, app/assets/stylesheets/pricing.scss */
.pricing .pricing-table-free .pricing-table-header {
  background: #519251;
}

/* line 103, app/assets/stylesheets/pricing.scss */
.pricing .pricing-table-biz .pricing-table-header {
  background: #2c4985;
}

/* line 111, app/assets/stylesheets/pricing.scss */
.pricing .pricing-table-header {
  background: #111;
  color: #fff;
}

/* line 116, app/assets/stylesheets/pricing.scss */
.pricing .pricing-table-header h2 {
  margin: 0;
  padding-top: 2em;
  font-size: 1em;
  font-weight: normal;
}

/* line 127, app/assets/stylesheets/pricing.scss */
.pricing .pricing-table-price {
  font-size: 80px;
  line-height: 80px;
  margin: 0.2em 0 0;
  font-weight: 100;
}

/* line 134, app/assets/stylesheets/pricing.scss */
.pricing .pricing-table-price span {
  display: block;
  text-transform: uppercase;
  font-size: 15px;
  padding-bottom: 10px;
  line-height: 30px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  *color: #fff;
}

/* line 149, app/assets/stylesheets/pricing.scss */
.pricing .pricing-table-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  flex: 1;
}

/* line 161, app/assets/stylesheets/pricing.scss */
.pricing .pricing-table-list li {
  padding: 0.8em 0;
}

/* line 170, app/assets/stylesheets/pricing.scss */
.pricing .button-choose {
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  border-radius: 2em;
  font-weight: bold;
  position: relative;
  bottom: -1.5em;
}

/* line 180, app/assets/stylesheets/pricing.scss */
.pricing .information-head {
  color: black;
  font-weight: 500;
}

/* line 185, app/assets/stylesheets/pricing.scss */
.pricing .footer {
  background: #111;
  color: #888;
  text-align: center;
}

/* line 191, app/assets/stylesheets/pricing.scss */
.pricing .footer a {
  color: #ddd;
}

@media (min-width: 767px) {
  /* line 201, app/assets/stylesheets/pricing.scss */
  .pricing .banner-head {
    font-size: 4em;
  }
  /* line 205, app/assets/stylesheets/pricing.scss */
  .pricing .pricing-table {
    margin-bottom: 0;
  }
}

@media (min-width: 480px) {
  /* line 215, app/assets/stylesheets/pricing.scss */
  .pricing .banner {
    height: 400px;
  }
  /* line 219, app/assets/stylesheets/pricing.scss */
  .pricing .banner-head {
    font-size: 3em;
  }
}
/* line 1, app/assets/stylesheets/sign-in.scss */
.sign-in,
.forgot-password,
.sign-up {
  text-align: center;
}

/* line 6, app/assets/stylesheets/sign-in.scss */
.sign-in .actions,
.forgot-password .actions,
.sign-up .actions {
  text-align: center;
}
/* line 2, app/assets/stylesheets/sites.scss */
.sites .site {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 10px 0;
}

/* line 8, app/assets/stylesheets/sites.scss */
.sites .site .score {
  width: 80px;
  font-size: 1.5em;
}

/* line 13, app/assets/stylesheets/sites.scss */
.sites .site .name {
  font-size: 1.4em;
  margin-right: 20px;
  flex: 1;
}

/* line 21, app/assets/stylesheets/sites.scss */
.metrics {
  display: flex;
  justify-content: space-between;
}
/* line 1, app/assets/stylesheets/variables.scss */
:root {
  --primary: #2d3539;
  --primary-inverse: #eee;
  --secondary: #aec3b0;
  --secondary-inverse: #333;
  --third: #124559;
  --third-inverse: #c8e4ef;
  --fourth-inverse: #eee;
  --fourth: #598392;
  --fourth-inverse: #eee;
  --fifth: #eff6e0;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
/* line 17, app/assets/stylesheets/application.scss */
.container {
  max-width: 900px;
  margin: auto;
}

/* line 22, app/assets/stylesheets/application.scss */
a {
  text-decoration: none;
}

/* line 27, app/assets/stylesheets/application.scss */
.center {
  justify-content: center;
}
