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, em,
img, ins, kbd, q, s, samp, small, strike, strong,
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  box-sizing: border-box;
  line-height: 1;
}
html *, html *:before, html *:after {
  box-sizing: inherit;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: 400;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

html {
  box-sizing: border-box;
  height: 100%;
}

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

body {
  background-color: #191919;
  color: #fff;
  font-family: "Barlow Condensed", arial, tahoma, sans-serif;
  font-size: 20px;
  font-weight: 400;
  height: 100%;
  line-height: 1.4;
  text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

h1, h2, h3, h4 {
  color: #fff;
  font-family: "Barlow Condensed", arial, tahoma, sans-serif;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin: auto 0 18px;
}

ul, ol {
  margin: 0 0 20px 0;
}

ol {
  list-style-type: decimal;
}

li {
  list-style-type: disc;
  margin: 0 0 0 30px;
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

a:link, a:hover, a:active, a:visited {
  border-bottom: 1px solid white;
  color: white;
  outline: none;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}

a:hover {
  border-bottom-color: transparent;
  color: white;
}

a:visited {
  color: #f9f9f9;
}

hr {
  border: 0;
  border-top: 1px solid #2b2b2b;
  margin: 20px 0;
}

img, iframe, video {
  max-width: 100%;
}

.form-group {
  padding: 0 4px 10px;
}
.form-group label {
  color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  font-size: 16px;
  padding: 0 0 2px 4px;
  text-transform: uppercase;
}
.form-group span.field-validation-error {
  color: #fd3935;
  font-size: 16px;
  line-height: 1;
}

input[type=text], input[type=tel], input[type=email], input[type=number], input[type=password], select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #1d1d1d;
  border: 1px solid #2b2b2b;
  border-radius: 4px;
  color: #fff;
  font-family: "Barlow Condensed", arial, tahoma, sans-serif;
  font-size: 20px;
  line-height: 1;
  outline: none;
  padding: 8px;
  transition: box-shadow 0.2s linear;
  width: 100%;
}
input[type=text]:focus, input[type=tel]:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.04);
}
input[type=text].input-validation-error, input[type=tel].input-validation-error, input[type=email].input-validation-error, input[type=number].input-validation-error, input[type=password].input-validation-error, select.input-validation-error, textarea.input-validation-error {
  border-color: #fd3935;
  box-shadow: 0 0 0 3px rgba(150, 0, 0, 0.04);
}

.actions {
  padding: 10px;
  text-align: center;
}

.button, .button:hover, .button:active, .button:visited {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #2b2b2b;
  border: 0 !important;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-family: "Barlow Condensed", arial, tahoma, sans-serif;
  font-size: 22px;
  line-height: 1;
  padding: 10px 20px 12px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s linear;
}
.button.full-width, .button:hover.full-width, .button:active.full-width, .button:visited.full-width {
  text-align: center;
  width: 100%;
}
.button.red, .button:hover.red, .button:active.red, .button:visited.red {
  background-color: #fd3935;
}
.button.orange, .button:hover.orange, .button:active.orange, .button:visited.orange {
  background-color: #dc6938;
}
.button.disabled, .button:disabled, .button:hover.disabled, .button:hover:disabled, .button:active.disabled, .button:active:disabled, .button:visited.disabled, .button:visited:disabled {
  background: #5e5e5e;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.button:hover {
  background-color: #444;
}
.button:hover.red {
  background-color: rgb(252.5, 7.5, 2.5);
}
.button:hover.orange {
  background-color: rgb(191.3461538462, 80.7692307692, 33.6538461538);
}

.pop-alert {
  border-radius: 8px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 24px;
  font-style: italic;
  max-width: 90%;
  padding: 15px 20px;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 10000;
}
.pop-alert.success {
  background: #099449;
}
.pop-alert.failure {
  background: #fd3935;
}

.auto-complete {
  position: relative;
}
.auto-complete .auto-complete-options {
  background: #222;
  border: 1px solid #2b2b2b;
  left: 5px;
  max-height: 200px;
  overflow: scroll;
  overflow-x: hidden;
  position: absolute;
  right: 5px;
  top: 31px;
  z-index: 100;
}
.auto-complete .auto-complete-options a:link, .auto-complete .auto-complete-options a:hover, .auto-complete .auto-complete-options a:active, .auto-complete .auto-complete-options a:visited {
  border: 0;
  color: #fff;
  display: block;
  padding: 5px;
  text-decoration: none;
}
.auto-complete .auto-complete-options a:link *, .auto-complete .auto-complete-options a:hover *, .auto-complete .auto-complete-options a:active *, .auto-complete .auto-complete-options a:visited * {
  pointer-events: none;
}
.auto-complete .auto-complete-options a:hover, .auto-complete .auto-complete-options a.selected:link, .auto-complete .auto-complete-options a.selected:hover, .auto-complete .auto-complete-options a.selected:active, .auto-complete .auto-complete-options a.selected:visited {
  background: rgba(255, 255, 255, 0.1);
}

.table-label {
  padding: 4px;
}

.table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
.table tr:nth-child(even) td {
  background-color: #141414;
}
.table tr.faded td {
  color: #777;
}
.table th, .table td {
  color: #ddd;
  overflow: hidden;
  padding: 10px 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table th {
  background: rgba(255, 255, 255, 0.01);
  border: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #777;
  font-size: 14px;
}
.table th:first-of-type {
  border-left: 0;
}
.table th:last-of-type {
  border-right: 0;
}
.table td {
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.table td:first-of-type {
  border-left: 0;
}
.table td:last-of-type {
  border-right: 0;
}
.table .button {
  border: 1px solid #444;
  font-size: 14px;
  padding: 8px 10px;
}
.table .inactive td {
  color: #888;
}
.table .inactive .button {
  color: #888;
}
.table .inactive-icon {
  background: #222;
  border-radius: 100px;
  color: #888;
  float: right;
  font-size: 10px;
  margin-top: 2px;
  padding: 3px 10px;
}
.table .table-actions {
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.3s;
}
.table .table-actions a:link, .table .table-actions a:hover, .table .table-actions a:active, .table .table-actions a:visited {
  border: 0;
}
.table .table-actions:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pager-links td {
  background: transparent !important;
  border: 0;
  padding: 0;
}
.pager-links a, .pager-links a:active, .pager-links a:hover, .pager-links a:visited, .pager-links span {
  background: #111;
  border: 1px solid #444;
  display: inline-block;
  margin: 10px 5px;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  width: 50px;
}
.pager-links a:hover {
  background: #222;
}
.pager-links span {
  background: #666;
  font-weight: bold;
}

header {
  background: #222;
  border-bottom: 1px solid #2b2b2b;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
header .back-link {
  left: 100px;
  position: fixed;
  top: 20px;
}
header .back-link a:link, header .back-link a:hover, header .back-link a:active, header .back-link a:visited {
  background-color: #2b2b2b;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  padding: 8px 15px;
  text-transform: uppercase;
}
header .back-link a:hover {
  background-color: #444;
}
header .logo {
  background: url(/images/bb-logo.svg) center center no-repeat #222;
  background-size: 100px;
  border: 1px solid #2b2b2b;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  height: 75px;
  left: 10px;
  position: absolute;
  top: 10px;
  width: 75px;
}
header nav {
  display: flex;
}
header nav a:link, header nav a:hover, header nav a:active, header nav a:visited {
  align-items: center;
  background: #222;
  border: 0;
  display: flex;
  padding: 20px 20px;
  transition: background-color 0.2s linear;
}
header nav a:hover {
  background: #191919;
}

.main.top-padding {
  padding-top: 70px;
}

.sub-header {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 10px 1px 20px;
}

.container {
  margin: 0 auto;
  max-width: 1080px;
}
.container.slim {
  max-width: 500px;
}
.container.shadowbox {
  background: #222;
  border: 1px solid #2b2b2b;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  padding: 20px;
}

.small-box {
  margin: 0 auto;
  max-width: 500px;
}

.tiny-box {
  margin: 0 auto;
  max-width: 300px;
}

.hero {
  background: url(/images/ipad-preview.png) center bottom no-repeat;
  background-size: 1000px;
  border-bottom: 1px solid #2b2b2b;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.hero .name, .hero .tagline {
  font-weight: 700;
  margin: 0;
  text-align: center;
}
.hero .name {
  font-size: 85px;
}
.hero .tagline {
  bottom: 0;
  font-size: 50px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 10;
}
.hero .shadow {
  bottom: 0;
  box-shadow: inset 0px -50px 50px black !important;
  height: 100px;
  left: -50px;
  position: absolute;
  right: -50px;
}

section {
  padding: 20px 20px 40px;
}
section h2 {
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
section h2 .text {
  background: #191919;
  display: inline-block;
  margin-left: 20px;
  padding: 0 5px;
  position: relative;
  z-index: 10;
}
section h2 .bar {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  bottom: 11px;
  left: 0;
  position: absolute;
  right: 0;
  top: 15px;
}
section.features .feature-row {
  column-gap: 20px;
  display: flex;
  margin-bottom: 20px;
}
section.features .feature {
  background: #222;
  border: 1px solid #333;
  border-radius: 10px;
}
section.features .feature h3 {
  background: black;
  border-bottom: 1px solid #333;
  border-radius: 10px 10px 0 0;
  margin: 0;
  padding: 15px 20px;
}
section.features .feature p {
  padding: 10px 20px 5px;
}
section.features .feature img {
  display: inline-block;
  max-width: 80%;
}
section.features .feature.split {
  width: 50%;
}
section.benefits {
  background: black;
  border: 1px solid #2b2b2b;
  border-width: 1px 0;
}
section.benefits h2 {
  margin-bottom: 5px;
}
section.benefits h2 .text {
  background: black;
}
section.benefits h2 .bar {
  background: rgba(255, 255, 255, 0.05);
}
section.benefits .benefit-row {
  column-gap: 20px;
  display: flex;
}
section.benefits .benefit {
  background: #222;
  border: 1px solid #2b2b2b;
  border-radius: 10px;
  width: 33.3333333333%;
}
section.benefits .benefit h4 {
  margin: 0;
  padding: 15px 20px 0;
}
section.benefits .benefit p {
  padding: 5px 20px 5px;
}
section.subscription .special {
  text-align: center;
}
section.subscription .special .heading {
  font-size: 30px;
  text-transform: uppercase;
}
section.subscription .price {
  display: inline-block;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  margin: 0 auto 20px;
  padding: 20px;
  text-align: center;
}
section.subscription .price span {
  color: #717171;
  font-size: 20px;
}
section.subscription .or {
  background: black;
  border: 1px solid #2b2b2b;
  border-radius: 100px;
  display: inline-block;
  padding: 10px;
  position: relative;
  text-align: center;
  top: -15px;
  width: 50px;
}
section.contact {
  background: black;
  border: 1px solid #2b2b2b;
  border-width: 1px 0;
}
section.contact h2 .text {
  background: black;
}
section.contact h2 .bar {
  background: rgba(255, 255, 255, 0.05);
}

footer {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  padding: 20px 20px 100px;
  text-align: center;
}
footer .line {
  border-bottom: 1px solid #2b2b2b;
  margin: 0 auto 10px;
  padding-top: 10px;
  width: 250px;
}
footer a:link, footer a:hover, footer a:active, footer a:visited {
  color: rgba(255, 255, 255, 0.5);
  border: 0;
}
footer a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.account-header {
  align-items: center;
  background: url(/images/bb-logo.svg) center right no-repeat #222;
  background-size: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  height: 100px;
  position: relative;
}
.account-header .back-link {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  height: 100%;
  justify-content: center;
}
.account-header .back-link a:link, .account-header .back-link a:hover, .account-header .back-link a:active, .account-header .back-link a:visited {
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 0;
  color: #999;
  display: flex;
  font-size: 14px;
  height: 100%;
  justify-content: center;
  text-transform: uppercase;
  transition: background 0.3s;
  width: 80px;
}
.account-header .back-link a:hover {
  background: rgba(255, 255, 255, 0.08);
}
.account-header .header-content {
  padding: 20px 0 0 20px;
  position: relative;
}
.account-header .header-content:before {
  color: #777;
  content: "BartendersBinder";
  font-size: 16px;
  left: 20px;
  position: absolute;
  top: -3px;
}
.account-header .header-content h1 {
  font-size: 26px;
  line-height: 1;
}
.account-header .header-content p {
  font-size: 18px;
  margin: 0;
}

.sub-header-content {
  background: #8c5f27;
  font-size: 20px;
  padding: 10px;
  text-align: center;
}

.account-layout {
  display: flex;
  height: calc(100% - 100px);
}
.account-layout .account-nav {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  width: 250px;
}
.account-layout .account-nav a:link, .account-layout .account-nav a:hover, .account-layout .account-nav a:active, .account-layout .account-nav a:visited {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  padding: 10px 20px;
  transition: background 0.3s;
}
.account-layout .account-nav a:hover {
  background: rgba(0, 0, 0, 0.3);
}
.account-layout .account-content {
  width: calc(100% - 250px);
}
.account-layout .account-content.full-width {
  width: 100%;
}

.section-padding {
  padding: 20px;
}

.margin-b-10 {
  margin-bottom: 10px;
}

.margin-b-20 {
  margin-bottom: 20px;
}

.margin-b-30 {
  margin-bottom: 30px;
}

.padding-5 {
  padding: 5px;
}

.padding-10 {
  padding: 10px;
}

.padding-20 {
  padding: 20px;
}

.width-100 {
  width: 100% !important;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.small-text {
  font-size: 14px;
}

.big-text {
  font-size: 24px !important;
}

.super-title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.uppercase {
  text-transform: uppercase;
}

.border-b {
  border-bottom: 1px solid #2b2b2b;
}

.cols {
  display: flex;
  gap: 20px;
  width: 100%;
}
.cols .cols-10 p:last-child, .cols .cols-15 p:last-child, .cols .cols-20 p:last-child, .cols .cols-25 p:last-child, .cols .cols-30 p:last-child, .cols .cols-33 p:last-child, .cols .cols-35 p:last-child, .cols .cols-40 p:last-child, .cols .cols-45 p:last-child, .cols .cols-50 p:last-child, .cols .cols-55 p:last-child, .cols .cols-60 p:last-child, .cols .cols-65 p:last-child, .cols .cols-66 p:last-child, .cols .cols-70 p:last-child, .cols .cols-75 p:last-child, .cols .cols-80 p:last-child, .cols .cols-85 p:last-child, .cols .cols-90 p:last-child, .cols .cols-100 p:last-child {
  margin-bottom: 0;
}
.cols .cols-10 {
  width: 10%;
}
.cols .cols-15 {
  width: 15%;
}
.cols .cols-20 {
  width: 20%;
}
.cols .cols-25 {
  width: 25%;
}
.cols .cols-30 {
  width: 30%;
}
.cols .cols-33 {
  width: 33.3333333333%;
}
.cols .cols-35 {
  width: 35%;
}
.cols .cols-40 {
  width: 40%;
}
.cols .cols-45 {
  width: 45%;
}
.cols .cols-50 {
  width: 50%;
}
.cols .cols-55 {
  width: 55%;
}
.cols .cols-60 {
  width: 60%;
}
.cols .cols-65 {
  width: 65%;
}
.cols .cols-66 {
  width: 66.6666666667%;
}
.cols .cols-70 {
  width: 70%;
}
.cols .cols-75 {
  width: 75%;
}
.cols .cols-80 {
  width: 80%;
}
.cols .cols-85 {
  width: 85%;
}
.cols .cols-90 {
  width: 90%;
}
.cols .cols-100 {
  width: 100%;
}

.callout {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: white;
  margin: 5px 0 15px;
  padding: 20px;
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout.alert {
  background: #fd3935;
  border: 1px solid rgb(252.5, 7.5, 2.5);
}
.callout.keyline {
  background: transparent;
}

.no-records {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: block;
  font-style: italic;
  margin-bottom: 20px;
  padding: 10px;
  text-align: center;
}

.dropzone {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px dashed #2b2b2b !important;
  border-radius: 5px;
  min-height: 0 !important;
}
.dropzone .dz-message {
  margin: 0 !important;
  padding: 45px 0 !important;
}

.dropzone-warning, .dropzone-error {
  border-radius: 5px;
  color: white;
  margin: 10px;
  padding: 10px;
  text-align: center;
}

.dropzone-warning {
  background-color: #dc6938;
}

.dropzone-error {
  background-color: #fd3935;
}

.item-listing .item-row {
  display: flex;
  margin-bottom: 10px;
  width: 100%;
}
.item-listing .item-row.faded * {
  color: #888 !important;
  opacity: 0.5;
}
.item-listing .item-row div {
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  padding: 12px 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.item-listing .item-row div:first-of-type {
  border-radius: 8px 0 0 8px;
  flex-grow: 10;
}
.item-listing .item-row div.end-cap {
  border-radius: 0 8px 8px 0;
}
.item-listing .item-row .item-action, .item-listing .item-row .item-action:link, .item-listing .item-row .item-action:hover, .item-listing .item-row .item-action:active, .item-listing .item-row .item-action:visited {
  background: #2b2b2b;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  display: inline;
  padding: 12px 18px;
  text-align: center;
  transition: background 0.3s;
}
.item-listing .item-row .item-action:hover, .item-listing .item-row .item-action:link:hover, .item-listing .item-row .item-action:hover:hover, .item-listing .item-row .item-action:active:hover, .item-listing .item-row .item-action:visited:hover {
  background: #444;
}
.item-listing .item-row .item-action:last-child, .item-listing .item-row .item-action:link:last-child, .item-listing .item-row .item-action:hover:last-child, .item-listing .item-row .item-action:active:last-child, .item-listing .item-row .item-action:visited:last-child {
  border-radius: 0 8px 8px 0;
}
.item-listing .item-row .item-action a, .item-listing .item-row .item-action:link a, .item-listing .item-row .item-action:hover a, .item-listing .item-row .item-action:active a, .item-listing .item-row .item-action:visited a {
  border: 0 !important;
  text-decoration: none !important;
}

.stat-box {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  flex-flow: column;
  line-height: 1;
  padding: 10px;
}
.stat-box .stat-value {
  font-size: 30px;
}
.stat-box .stat-label {
  color: #888;
  font-size: 12px;
  text-transform: uppercase;
}

.new-spirit-link {
  float: right;
  position: relative;
}
.new-spirit-link .new-spirit-box {
  background-color: #191919;
  border: 1px solid #444;
  display: none;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 40px;
  width: 350px;
}

@media (max-width: 568px) {
  .cols {
    display: block;
  }
  .cols .cols-10, .cols .cols-15, .cols .cols-20, .cols .cols-25, .cols .cols-30, .cols .cols-33, .cols .cols-35, .cols .cols-40, .cols .cols-45, .cols .cols-50, .cols .cols-55, .cols .cols-60, .cols .cols-65, .cols .cols-66, .cols .cols-70, .cols .cols-75, .cols .cols-80, .cols .cols-85, .cols .cols-90, .cols .cols-100 {
    margin-bottom: 20px;
    width: 100%;
  }
}
@media (max-width: 980px) {
  header {
    justify-content: right;
  }
  header .back-link {
    left: 65px;
    top: 5px;
  }
  header .logo {
    background-size: 70px;
    height: 50px;
    width: 50px;
  }
  header nav {
    padding-right: 5px;
  }
  header nav a:link, header nav a:hover, header nav a:active, header nav a:visited {
    font-size: 16px;
    padding: 10px 5px;
  }
  .main.top-padding {
    padding-top: 60px;
  }
  .hero {
    background-position: top 60px center;
    background-size: 800px;
    height: 300px;
  }
  .hero .name {
    font-size: 60px;
  }
  .hero .tagline {
    font-size: 40px;
  }
  section {
    padding: 10px 10px 20px;
  }
  section h2 {
    margin-bottom: 10px;
  }
  section.features .feature-row {
    column-gap: 10px;
    margin-bottom: 10px;
  }
  section.features .feature h3 {
    padding: 10px 15px;
  }
  section.features .feature p {
    padding: 5px 10px 5px;
  }
  section.benefits .benefit-row {
    column-gap: 10px;
  }
  section.benefits .benefit h4 {
    padding: 10px 10px 0;
  }
  section.benefits .benefit p {
    padding: 5px 10px;
  }
}
@media (max-width: 568px) {
  .hero {
    background-position: top 60px center;
    background-size: 300px;
    height: 180px;
  }
  .hero .name {
    font-size: 50px;
  }
  .hero .tagline {
    font-size: 30px;
  }
  section {
    padding: 20px;
  }
  section h2 {
    font-size: 30px;
    line-height: 1;
  }
  section h2 .bar {
    bottom: 8px;
    top: 12px;
  }
  section.features .feature-row {
    display: block;
    margin-bottom: 0;
    width: 100%;
  }
  section.features .feature {
    margin-bottom: 10px;
  }
  section.features .feature h3 {
    font-size: 26px;
  }
  section.features .feature.split {
    width: 100%;
  }
  section.benefits .benefit-row {
    display: block;
  }
  section.benefits .benefit {
    margin-bottom: 10px;
    width: 100%;
  }
  section.subscription .special {
    text-align: center;
  }
  section.subscription .special .heading {
    font-size: 30px;
    text-transform: uppercase;
  }
  section.subscription .price {
    display: block;
    font-size: 70px;
    padding: 10px;
  }
  section.subscription .or {
    top: -5px;
  }
}
@media (max-width: 980px) {
  .pop-alert {
    left: 20px;
    max-width: none;
    padding: 10px;
    right: 20px;
    top: 20px;
  }
}/*# sourceMappingURL=site.css.map */