@charset "UTF-8";
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, body {
  background: #fff8eb;
  box-sizing: border-box;
  color: #502810;
  font-family: "Poppins", tahoma, arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

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

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin: auto 0 20px;
}

ul {
  list-style: disc;
  margin-bottom: 20px;
}

ol {
  list-style: decimal;
}

li {
  margin: 0 0 5px 40px;
}

a:link, a:hover, a:active, a:visited {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  color: #502810;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
  border-bottom-color: rgba(0, 0, 0, 0.3);
  color: rgb(122.5, 61.25, 24.5);
}

img {
  max-width: 100%;
}

hr {
  border: 0;
  border-bottom: 1px solid rgba(80, 40, 16, 0.1);
  margin: 0 0 20px 0;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

.form-group {
  padding-bottom: 10px;
}
.form-group span.field-validation-error {
  color: #900;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  padding: 6px 0 0 4px;
}

label {
  color: #c06f3d;
  display: inline-block;
  font-size: 14px;
  padding: 0 0 4px 4px;
}
label.disabled {
  opacity: 0.7 !important;
  pointer-events: none !important;
}

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

input[type=text], input[type=tel], input[type=email], input[type=number], input[type=password], input[type=date], input[type=datetime-local], select, textarea {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  color: #502810;
  font-family: "Poppins", tahoma, arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  outline: none;
  padding: 8px;
  resize: none;
  transition: border-color 0.3s ease;
  width: 100%;
  -webkit-appearance: none;
}
input[type=text]:focus, input[type=tel]:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=date]:focus, input[type=datetime-local]:focus, select:focus, textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
input[type=text].disabled, input[type=tel].disabled, input[type=email].disabled, input[type=number].disabled, input[type=password].disabled, input[type=date].disabled, input[type=datetime-local].disabled, select.disabled, textarea.disabled {
  border: 1px solid rgba(80, 40, 16, 0.1);
  opacity: 0.5;
  pointer-events: none;
}
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, input[type=date].input-validation-error, input[type=datetime-local].input-validation-error, select.input-validation-error, textarea.input-validation-error {
  border-color: #900;
}

input[type=checkbox].disabled {
  opacity: 0.5;
  pointer-events: none;
}

select {
  padding: 12px;
}

textarea {
  line-height: 1.4;
}

.currency-input::before {
  content: "$";
  left: 5px;
  position: absolute;
  top: 10px;
}
.currency-input input {
  padding-left: 25px;
  text-align: right;
}

.editor {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  padding: 8px;
}

.button, .button:link, .button:hover, .button:active, .button:visited {
  background: #502810;
  border: 0;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-family: "Poppins", tahoma, arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2px;
  outline: none;
  padding: 15px 20px;
  text-align: center;
  text-decoration: none;
  -webkit-appearance: none;
  transition: background-color 0.3s ease;
}
.button.disabled, .button:link.disabled, .button:hover.disabled, .button:active.disabled, .button:visited.disabled {
  background-color: rgb(153.2964426877, 88.6245059289, 48.7035573123);
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
  opacity: 0.3;
  pointer-events: none;
}
.button.icon, .button:link.icon, .button:hover.icon, .button:active.icon, .button:visited.icon {
  background-position: center;
  background-repeat: no-repeat;
  height: 40px;
  text-indent: 999px;
  white-space: nowrap;
  width: 40px;
}
.button.full-width, .button:link.full-width, .button:hover.full-width, .button:active.full-width, .button:visited.full-width {
  margin-bottom: 5px;
  width: 100%;
}
.button.big, .button:link.big, .button:hover.big, .button:active.big, .button:visited.big {
  font-size: 20px;
  padding: 20px 20px;
  width: 100%;
}
.button.medium, .button:link.medium, .button:hover.medium, .button:active.medium, .button:visited.medium {
  font-size: 14px;
  padding: 10px 15px;
}
.button.small, .button:link.small, .button:hover.small, .button:active.small, .button:visited.small {
  font-size: 10px;
  padding: 5px 8px;
}
.button.email, .button:link.email, .button:hover.email, .button:active.email, .button:visited.email {
  background-image: url(/images/icons/email.svg);
}

.button:hover {
  background: rgb(122.5, 61.25, 24.5);
}

.pop-alert {
  border-radius: 10px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-style: italic;
  left: 100px;
  max-width: 50%;
  padding: 20px;
  position: fixed;
  top: 30px;
  z-index: 10000;
}
.pop-alert.success {
  background: #099449;
}
.pop-alert.failure {
  background: #900;
}

.toggle {
  align-items: stretch;
  display: flex;
  flex-flow: column;
  font-size: 0;
  justify-content: flex-start;
  margin: 0 0 10px;
}
.toggle input {
  height: 0;
  left: -9999px;
  position: absolute;
  width: 0;
}
.toggle label {
  background-color: white;
  border: solid 1px #ddd;
  border-width: 1px 1px 0;
  color: #502810;
  font-size: 16px;
  margin: 0;
  padding: 8px;
  position: relative;
  text-align: center;
  transition: background-color 0.15s ease-out;
}
.toggle label:first-of-type {
  border-radius: 5px 5px 0 0;
}
.toggle label:last-of-type {
  border-radius: 0 0 5px 5px;
  border-bottom-width: 1px;
}
.toggle label:hover {
  background: #f8f8f8;
}
.toggle .radio-selected {
  background-color: #eee !important;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
.table th, .table td {
  overflow: hidden;
  padding: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table th {
  border-bottom: 1px solid rgba(80, 40, 16, 0.3);
  color: rgba(80, 40, 16, 0.4);
}
.table td {
  border-bottom: 1px solid rgba(80, 40, 16, 0.1);
}
.table td .button, .table td .button:link, .table td .button:hover, .table td .button:active, .table td .button:visited {
  padding: 10px 15px;
}
.table tr:last-child td {
  border-bottom: 0;
}
.table tr.inactive td {
  opacity: 0.5;
}

html, body {
  height: 100%;
}

.box {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 10px auto;
  max-width: 500px;
  padding: 10px 10px 100px;
  width: 100%;
}
.box.medium {
  max-width: 800px;
}
.box.wide {
  max-width: 1080px;
}
.box .main {
  background: white;
  border-radius: 20px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  padding: 20px;
  width: 100%;
}
.box .main p:last-child, .box .main div:last-child {
  margin-bottom: 0;
}

.full {
  padding-bottom: 100px;
  padding-left: 200px;
}
.full .hamburger {
  display: none;
}
.full .sidebar {
  background: white;
  bottom: 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  left: 0;
  position: fixed;
  top: 0;
  width: 200px;
  z-index: 100;
}
.full .sidebar .logo {
  background: url(/images/honey-helps-logo.svg) center no-repeat;
  border-bottom: 1px solid rgba(80, 40, 16, 0.1);
  height: 150px;
}
.full .sidebar nav a:link, .full .sidebar nav a:hover, .full .sidebar nav a:active, .full .sidebar nav a:visited {
  background-position: center left 15px;
  background-repeat: no-repeat;
  background-size: 24px;
  border: 0;
  display: block;
  font-size: 16px;
  padding: 15px 10px 15px 50px;
  text-decoration: none;
}
.full .sidebar nav a:link.down, .full .sidebar nav a:hover.down, .full .sidebar nav a:active.down, .full .sidebar nav a:visited.down {
  font-weight: bold;
}
.full .sidebar nav a:hover {
  background-color: rgb(255, 230.15, 184);
  color: black;
}
.full .sidebar nav .dashboard {
  background-image: url(/images/icons/house.svg);
}
.full .sidebar nav .rankings, .full .sidebar nav .fundraisers {
  background-image: url(/images/icons/graph.svg);
}
.full .sidebar nav .reports {
  background-image: url(/images/icons/reports.svg);
}
.full .sidebar nav .organization-profile {
  background-image: url(/images/icons/organizations.svg);
}
.full .sidebar nav .orders {
  background-image: url(/images/icons/coin.svg);
}
.full .sidebar nav .products {
  background-image: url(/images/icons/honey.svg);
}
.full .sidebar nav .settings, .full .sidebar nav .profile {
  background-image: url(/images/icons/gear.svg);
}
.full .sidebar nav .organizations {
  background-image: url(/images/icons/organizations.svg);
}
.full .sidebar nav .contacts {
  background-image: url(/images/icons/contacts.svg);
}
.full .sidebar nav .message {
  background-image: url(/images/icons/message.svg);
}
.full .sidebar nav .text {
  background-image: url(/images/icons/text.svg);
}
.full .sidebar nav .in-person {
  background-image: url(/images/icons/in-person.svg);
}
.full .titlebar {
  display: flex;
}
.full .titlebar .title {
  padding: 10px 0 0 20px;
  width: 100%;
}
.full .titlebar .profile-box {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: end;
  padding: 10px 20px 0;
}
.full .titlebar .profile-box .name {
  white-space: nowrap;
}
.full .main {
  padding: 10px 20px 60px;
  width: 100%;
}
.full .content-padding {
  padding: 20px;
}

a.back-link:link, a.back-link:hover, a.back-link:active, a.back-link:visited {
  border: 0;
  display: inline-block;
}

.back-link:before {
  content: "❮ ";
}

.image-bar {
  background: url(/images/honeycomb-white.svg) center repeat;
  background-color: rgb(250, 196, 21);
  background-size: 60px;
  border-radius: 30px;
  box-shadow: 2px 2px 4px inset rgba(0, 0, 0, 0.2);
  display: flex;
  min-height: 150px;
  justify-content: end;
  padding: 5px;
}

.dev-overlay, .staging-overlay {
  align-items: center;
  bottom: 0;
  color: rgba(0, 0, 0, 0.05);
  display: flex;
  font-size: 18vw;
  font-weight: bold;
  justify-content: center;
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  text-transform: uppercase;
  top: 0;
  z-index: 10000;
}

.onboarding .logo {
  background: url(/images/honey-helps-logo.svg) center no-repeat;
  height: 90px;
  width: 90px;
}

.purchase-process {
  margin: 0 auto;
  max-width: 1080px;
  padding: 20px 20px 50px;
}
.purchase-process .mobile-sticky-sales-links {
  display: none;
}
.purchase-process .return-link {
  text-align: right;
}
.purchase-process .title-bar {
  align-items: center;
  background: url(/images/honeycomb-white.svg) center repeat;
  background-color: rgb(250, 196, 21);
  background-size: 60px;
  border-radius: 30px;
  box-shadow: 2px 2px 4px inset rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  min-height: 100px;
  padding: 5px 10px;
}
.purchase-process .title-bar h1 {
  font-size: 24px;
}
.purchase-process .title-bar .logo {
  background: url(/images/honey-helps-logo.svg) center no-repeat;
  height: 90px;
  width: 90px;
}
.purchase-process .seller-block .image {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.purchase-process .seller-block .name {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.product-quantity {
  align-items: center;
  background-color: white;
  border: 1px solid rgba(80, 40, 16, 0.1);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.product-quantity .image-and-description {
  width: 100%;
}
.product-quantity .image-and-description .image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  position: relative;
  width: 100%;
}
.product-quantity .image-and-description .image .description {
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  color: white;
  font-size: 12px;
  left: 0;
  padding: 10px;
  position: absolute;
  right: 0;
}
.product-quantity .title-and-price {
  padding: 10px;
  width: 70%;
}
.product-quantity .price {
  width: 30%;
}
.product-quantity .quantity {
  align-items: stretch;
  display: flex;
  justify-content: right;
  margin: 10px 0;
  padding-right: 10px;
  width: 30%;
}
.product-quantity .quantity .minus, .product-quantity .quantity .plus {
  align-items: center;
  background-color: white;
  border: 1px solid rgba(80, 40, 16, 0.1);
  display: flex;
  justify-content: center;
  text-decoration: none;
  width: 30px;
}
.product-quantity .quantity .minus {
  border-right: 0;
}
.product-quantity .quantity .plus {
  border-left: 0;
}
.product-quantity .quantity input {
  appearance: none;
  border-radius: 0;
  margin: 0;
  text-align: center !important;
  width: 50px;
  -moz-appearance: textfield;
}
.product-quantity .description {
  width: 100%;
}

.product-popup {
  background: rgba(0, 0, 0, 0.3);
  bottom: 0;
  left: 0;
  overflow-x: auto;
  padding: 10px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
.product-popup .body {
  background: white;
  border-radius: 15px;
  margin: 0 auto;
  max-width: 600px;
  overflow: hidden;
  position: relative;
}
.product-popup .close {
  background: url(/images/icons/close.svg) center center no-repeat;
  background-size: contain;
  display: block;
  height: 40px;
  overflow: hidden;
  position: absolute;
  right: 10px;
  text-indent: 1000px;
  top: 10px;
  word-wrap: nowrap;
  width: 40px;
}
.product-popup .close:hover {
  border-color: transparent !important;
}
.product-popup .hero {
  background-position: center center;
  background-size: cover;
  border-bottom: 1px solid #ddd;
  height: 400px;
}
.product-popup .content {
  clear: right;
  padding: 20px;
}
.product-popup .additional-images .additional-image {
  background-position: center center;
  background-size: cover;
  height: 300px;
}

.profile-box {
  padding-top: 100px;
  position: relative;
  z-index: 100;
}
.profile-box .profile-image-area {
  height: 200px;
  left: 0;
  position: absolute;
  right: 0;
  top: -120px;
}
.profile-box .overlay {
  background: #fff8eb;
  border-radius: 9999px;
  height: 200px;
  margin: 0 auto;
  position: relative;
  width: 200px;
}
.profile-box .user-profile-image {
  height: 180px;
  left: 10px;
  position: absolute;
  top: 10px;
  width: 180px;
}
.profile-box h3 {
  padding-top: 75px;
}

.social img {
  background: white;
  border: 2px solid white;
  border-radius: 1000px;
  margin: -1px;
  width: 40px;
}
.social.with-text {
  align-items: center;
  background-color: #502810;
  border: 0 !important;
  border-radius: 1000px;
  color: white;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.fundraiser-progress-box {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  width: 400px;
}
.fundraiser-progress-box h3 {
  width: 100%;
}

.fundraiser-progress-module {
  padding: 30px 0 20px;
  position: relative;
  width: 100%;
}
.fundraiser-progress-module .progress-bee {
  height: 40px;
  left: 10px;
  position: absolute;
  right: 10px;
  top: 5px;
  z-index: 10;
}
.fundraiser-progress-module .progress-bee .nib, .fundraiser-progress-module .progress-bee .nib-original {
  position: absolute;
  transition: 0.5s right ease-out;
}
.fundraiser-progress-module .progress-bee .nib {
  background: url(/images/hh-bee-right.svg) center no-repeat;
  height: 40px;
  right: calc(100% - 20px);
  top: 0;
  width: 40px;
  z-index: 10;
}
.fundraiser-progress-module .progress-bee .nib-original {
  background: #502810;
  border-radius: 1000px;
  height: 20px;
  right: calc(100% - 10px);
  top: 10px;
  width: 20px;
}
.fundraiser-progress-module .progress-bar {
  background: rgba(80, 40, 16, 0.1);
  border-radius: 1000px;
  height: 10px;
  left: 10px;
  overflow: hidden;
  position: absolute;
  right: 10px;
  top: 20px;
}
.fundraiser-progress-module .progress-bar .filler, .fundraiser-progress-module .progress-bar .filler-overflow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  top: 0;
  transition: 0.5s right ease-out;
}
.fundraiser-progress-module .progress-bar .filler {
  background: #502810;
  z-index: 2;
}
.fundraiser-progress-module .progress-bar .filler-overflow {
  background: #edb414;
  background: linear-gradient(180deg, rgb(237, 180, 20) 0%, rgb(237, 89, 20) 100%);
  z-index: 1;
}
.fundraiser-progress-module .labels {
  display: flex;
  margin-top: 20px;
}
.fundraiser-progress-module .sales {
  padding-left: 10px;
  width: 50%;
}
.fundraiser-progress-module .goal {
  padding-right: 10px;
  text-align: right;
  width: 50%;
}

.fundraiser-summary-box {
  overflow: hidden;
}
.fundraiser-summary-box h3 {
  font-size: 20px;
}
.fundraiser-summary-box .summary-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.fundraiser-summary-box .summary-row .summary-label, .fundraiser-summary-box .summary-row .summary-item {
  font-size: 12px;
  padding: 4px 0;
}
.fundraiser-summary-box .summary-row .summary-item {
  font-size: 16px;
}
.fundraiser-summary-box .summary-row.summary-total {
  border-top: 1px solid rgba(80, 40, 16, 0.1);
  font-weight: bold;
}
.fundraiser-summary-box .summary-row.summary-total .summary-label, .fundraiser-summary-box .summary-row.summary-total .summary-item {
  padding-top: 10px;
}

.active-countdown {
  width: 100%;
}
.active-countdown .countdown-label {
  color: rgba(80, 40, 16, 0.4);
  font-size: 12px;
  text-transform: uppercase;
}
.active-countdown .countdown-value {
  white-space: nowrap;
}

.registration-progress-module {
  padding: 30px 10px 20px;
  position: relative;
}
.registration-progress-module .progress-bar, .registration-progress-module .filler {
  height: 4px;
  position: absolute;
}
.registration-progress-module .progress-bar {
  background: #ddd;
  left: 10px;
  right: 10px;
  top: 20px;
}
.registration-progress-module .sweet-spot {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  bottom: -5px;
  font-size: 9px;
  position: absolute;
  top: -5px;
}
.registration-progress-module .sweet-spot::before {
  bottom: -12px;
  color: #502810;
  content: "SWEET SPOT";
  font-weight: bold;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}
.registration-progress-module .sweet-spot.participant {
  left: 45%;
  right: 20%;
}
.registration-progress-module .sweet-spot.group-leader {
  left: 60%;
  right: 5%;
}
.registration-progress-module .filler {
  background: #888;
  left: 0;
  right: 0;
  top: 0;
}
.registration-progress-module .labels {
  display: flex;
  font-size: 14px;
}
.registration-progress-module .progress {
  color: #888;
  width: 50%;
}
.registration-progress-module .percent {
  color: #888;
  text-align: right;
  width: 50%;
}

.uploader {
  display: flex;
}
.uploader form {
  width: 100%;
}
.uploader .uploaded-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 5px;
  font-size: 12px;
  padding: 10px;
  text-align: center;
}
.uploader .remove-link {
  background: rgba(255, 255, 255, 0.9);
  display: inline-block;
  padding: 3px 5px;
}

.dropzone {
  background: #f9f9f9 !important;
  border: 1px dashed rgba(80, 40, 16, 0.1) !important;
  border-radius: 5px;
}
.dropzone .dz-message {
  margin: 0 !important;
  padding: 45px 0 !important;
}
.dropzone .dz-preview {
  margin: 0 !important;
  width: 100%;
}
.dropzone .dz-preview.dz-image-preview {
  background: transparent !important;
}
.dropzone .dz-preview .dz-image {
  margin: 0 auto;
}

.shadow-box {
  background: white;
  border-radius: 20px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  margin: 7px;
  padding: 20px;
  position: relative;
}
.shadow-box.with-icon {
  margin: 30px 0 50px;
  padding-top: 60px;
}
.shadow-box p:last-child {
  margin-bottom: 0;
}
.shadow-box .icon-bar {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: -30px;
}
.shadow-box .icon {
  background-color: #c06f3d;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 75px;
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  display: inline-block;
  height: 70px;
  width: 70px;
}
.shadow-box .participants {
  background-image: url(/images/icons/participants.svg);
}
.shadow-box .group-leaders {
  background-image: url(/images/icons/group-leaders.svg);
}

.callout {
  background: #fff8eb;
  border: 1px solid rgba(80, 40, 16, 0.1);
  border-radius: 10px;
  font-style: italic;
  padding: 10px 15px;
  position: relative;
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout.filled {
  background: white;
}
.callout.alert {
  background: #900;
  color: white;
}
.callout .remove-link {
  position: absolute;
  right: 5px;
  top: 5px;
}
.callout .remove-link img {
  width: 24px;
}

.callout-link:link, .callout-link:hover, .callout-link:active, .callout-link:visited {
  background: #fff8eb;
  border: 1px solid rgba(80, 40, 16, 0.1);
  border-radius: 10px;
  color: #c06f3d;
  display: block;
  padding: 10px;
  text-align: center;
  width: 100%;
}

.callout-link:hover {
  background: rgb(255, 244.43, 224.8);
}

.no-records {
  background: rgba(252.3, 245.55, 241.5, 0.4);
  border: 1px solid rgba(80, 40, 16, 0.1);
  border-radius: 10px;
  color: rgba(80, 40, 16, 0.4);
  font-style: italic;
  padding: 10px;
  text-align: center;
}

.status-selection-bar {
  margin-bottom: 20px;
}
.status-selection-bar .status-links {
  display: flex;
}
.status-selection-bar .status-links form {
  display: flex;
}
.status-selection-bar .status-links form:first-child .button {
  border-radius: 5px 0 0 5px;
}
.status-selection-bar .status-links form:last-child .button {
  border-radius: 0 5px 5px 0;
}
.status-selection-bar .status-links form .button, .status-selection-bar .status-links form .button:link, .status-selection-bar .status-links form .button:hover, .status-selection-bar .status-links form .button:active, .status-selection-bar .status-links form .button:visited {
  background: white;
  border: 1px solid rgba(80, 40, 16, 0.1);
  border-radius: 0;
  color: #502810;
  font-size: 14px;
  padding: 10px 8px !important;
  text-align: center;
}
.status-selection-bar .status-links form .button.selected, .status-selection-bar .status-links form .button:link.selected, .status-selection-bar .status-links form .button:hover.selected, .status-selection-bar .status-links form .button:active.selected, .status-selection-bar .status-links form .button:visited.selected {
  background: #eee;
}

.organization-logo, .product-image, .profile-image, .fundraiser-image {
  background-color: rgba(255, 255, 255, 0.5);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain !important;
  border-radius: 10px;
  width: 100%;
}

.organization-logo, .fundraiser-image {
  height: 150px;
}

.product-image, .profile-image {
  height: 200px;
  margin: 0 auto;
  width: 200px;
}

.user-profile-image, .user-icon {
  align-items: center;
  background-color: white;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}
.user-profile-image.no-image, .user-icon.no-image {
  background: url(/images/no-user.png) center center no-repeat white;
  background-size: contain;
}

.user-profile-image {
  border: 1px solid rgba(80, 40, 16, 0.3);
  font-size: 30px;
  height: 150px;
  letter-spacing: -4px;
  padding-top: 100px;
  width: 150px;
}

.user-icon {
  border: 1px solid rgba(80, 40, 16, 0.1);
  height: 50px;
  letter-spacing: -1px;
  width: 50px;
}

.user-icon-and-name {
  align-items: center;
  display: flex;
  gap: 10px;
}

.icon-value-list {
  overflow: hidden;
}

.icon-value {
  align-items: center;
  display: flex;
  gap: 10px;
}
.icon-value .icon-image {
  background-color: #c06f3d;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 50px;
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  height: 50px;
  width: 50px;
}
.icon-value .icon-image.cash {
  background-image: url(/images/icons/cash.svg);
}
.icon-value .icon-image.honey {
  background-image: url(/images/icons/honey-white.svg);
}
.icon-value .icon-image.dollar {
  background-image: url(/images/icons/dollar.svg);
}
.icon-value .icon-image.contacts {
  background-image: url(/images/icons/email.svg);
}
.icon-value .text {
  line-height: 1;
}
.icon-value .value {
  font-size: 22px;
}
.icon-value .label {
  color: rgba(80, 40, 16, 0.4);
  font-size: 14px;
}

.registered-badge, .unregistered-badge, .contact-purchase-badge {
  border-radius: 9999px;
  color: white;
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  padding: 2px 4px 1px;
  text-transform: uppercase;
}

.registered-badge {
  background: #502810;
}

.unregistered-badge {
  background: #888;
}

.contact-purchase-badge {
  background: #c06f3d;
}

.button-box {
  align-items: baseline;
  display: flex;
}
.button-box .count {
  background: rgb(122.5, 61.25, 24.5);
  border-radius: 5px 0 0 5px;
  color: white;
  line-height: 1;
  padding: 15px 20px;
}
.button-box .button {
  border-radius: 0 5px 5px 0;
}

.secure-message {
  background: url(/images/icons/lock.svg) left center no-repeat;
  background-size: 24px;
  color: #249300;
  font-size: 14px;
  margin-bottom: 10px;
  padding: 8px 5px 5px 28px;
}

.ui-blocker {
  background: rgba(255, 255, 255, 0.8);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000;
}

.demo-bar-menu-button {
  display: none;
}

.demo-bar {
  background: white;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 100;
}
.demo-bar .buttons {
  border: 1px solid rgba(80, 40, 16, 0.1);
  display: flex;
  justify-content: space-between;
}
.demo-bar .buttons .button {
  align-content: center;
  background-color: white !important;
  border-radius: 0 !important;
  color: #502810 !important;
  padding: 20px 10px !important;
}
.demo-bar .buttons .button:hover {
  background-color: #f2f2f2 !important;
}
.demo-bar .buttons .button.disabled {
  color: rgba(80, 40, 16, 0.25) !important;
  opacity: 1 !important;
}
.demo-bar .buttons .button .sub-title {
  display: block;
  font-size: 12px;
}
.demo-bar .progress-buttons, .demo-bar .auth-buttons {
  display: flex;
}
.demo-bar .progress-buttons .button {
  border-right: 1px solid rgba(80, 40, 16, 0.1) !important;
}
.demo-bar .auth-buttons .button {
  border-left: 1px solid rgba(80, 40, 16, 0.1) !important;
}
.demo-bar .identifier {
  color: rgba(80, 40, 16, 0.4);
  padding: 10px;
  text-align: center;
}

.home-link a:link, .home-link a:hover, .home-link a:active, .home-link a:visited {
  background: white;
  border: 1px solid rgba(80, 40, 16, 0.1);
  bottom: 75px;
  display: block;
  font-size: 12px;
  left: 5px;
  padding: 10px;
  position: fixed;
  text-transform: uppercase;
  z-index: 100;
}

.email-graph {
  display: flex;
  height: 430px;
  margin-bottom: 20px;
}
.email-graph .email-graph-day {
  font-size: 10px;
  margin-right: 1px;
  text-align: center;
  width: 3.3333333333%;
}
.email-graph .email-graph-day .email-graph-filler, .email-graph .email-graph-day .email-graph-external, .email-graph .email-graph-day .email-graph-internal {
  border-radius: 5px;
}
.email-graph .email-graph-day .email-graph-filler {
  background: rgba(0, 0, 0, 0.1);
}
.email-graph .email-graph-day .email-graph-internal {
  background: #c06f3d;
}
.email-graph .email-graph-day .email-graph-external {
  background: #502810;
  color: white;
}
.email-graph .email-graph-day .email-graph-date {
  align-items: center;
  display: flex;
  height: 30px;
  justify-content: center;
  padding: 5px;
}

.email-graph-legend {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  padding: 10px;
}
.email-graph-legend .internal-swatch, .email-graph-legend .external-swatch {
  display: block;
  height: 20px;
  margin: 0 10px;
  width: 20px;
}
.email-graph-legend .internal-swatch {
  background: #c06f3d;
}
.email-graph-legend .external-swatch {
  background: #502810;
}

#sortable-images {
  display: flex;
  flex-wrap: wrap;
}

.sortable-image-placeholder {
  background: white;
  border: 1px dashed rgba(80, 40, 16, 0.1);
  height: 200px;
  width: 200px;
}

.pager {
  padding: 10px;
  text-align: center;
}
.pager a.page-button:link, .pager a.page-button:hover, .pager a.page-button:active, .pager a.page-button:visited {
  background: #c06f3d;
  border: 3px solid #c06f3d;
  border-radius: 5px;
  color: white;
  display: inline-block;
  line-height: 1;
  min-width: 40px;
  padding: 8px;
}
.pager a.page-button:link.current, .pager a.page-button:hover.current, .pager a.page-button:active.current, .pager a.page-button:visited.current {
  border-color: #502810;
}

.table-list .table-list-item, .table-list .table-list-item:link, .table-list .table-list-item:hover, .table-list .table-list-item:active, .table-list .table-list-item:visited {
  align-items: center;
  border: 1px solid rgba(80, 40, 16, 0.1);
  border-radius: 10px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 10px;
  text-decoration: none;
}
.table-list .table-list-item div, .table-list .table-list-item:link div, .table-list .table-list-item:hover div, .table-list .table-list-item:active div, .table-list .table-list-item:visited div {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table-list .table-list-item div.buttons, .table-list .table-list-item:link div.buttons, .table-list .table-list-item:hover div.buttons, .table-list .table-list-item:active div.buttons, .table-list .table-list-item:visited div.buttons {
  text-align: right;
  text-overflow: initial;
}
.table-list .table-list-item div .button, .table-list .table-list-item div .button:link, .table-list .table-list-item div .button:hover, .table-list .table-list-item div .button:active, .table-list .table-list-item div .button:visited, .table-list .table-list-item:link div .button, .table-list .table-list-item:link div .button:link, .table-list .table-list-item:link div .button:hover, .table-list .table-list-item:link div .button:active, .table-list .table-list-item:link div .button:visited, .table-list .table-list-item:hover div .button, .table-list .table-list-item:hover div .button:link, .table-list .table-list-item:hover div .button:hover, .table-list .table-list-item:hover div .button:active, .table-list .table-list-item:hover div .button:visited, .table-list .table-list-item:active div .button, .table-list .table-list-item:active div .button:link, .table-list .table-list-item:active div .button:hover, .table-list .table-list-item:active div .button:active, .table-list .table-list-item:active div .button:visited, .table-list .table-list-item:visited div .button, .table-list .table-list-item:visited div .button:link, .table-list .table-list-item:visited div .button:hover, .table-list .table-list-item:visited div .button:active, .table-list .table-list-item:visited div .button:visited {
  font-size: 14px;
  padding: 10px 15px;
}
.table-list .table-list-item.faded div, .table-list .table-list-item.faded span, .table-list .table-list-item:link.faded div, .table-list .table-list-item:link.faded span, .table-list .table-list-item:hover.faded div, .table-list .table-list-item:hover.faded span, .table-list .table-list-item:active.faded div, .table-list .table-list-item:active.faded span, .table-list .table-list-item:visited.faded div, .table-list .table-list-item:visited.faded span {
  color: rgb(178.5, 178.5, 178.5) !important;
}
.table-list a.table-list-item:hover {
  border-color: #502810;
}

.participants .participant-item:link, .participants .participant-item:hover, .participants .participant-item:active, .participants .participant-item:visited {
  align-items: center;
  background: white;
  border: 1px solid rgba(80, 40, 16, 0.1);
  border-radius: 10px;
  display: flex;
  margin-top: 10px;
}
.participants .participant-item:link:first-child, .participants .participant-item:hover:first-child, .participants .participant-item:active:first-child, .participants .participant-item:visited:first-child {
  margin-top: 0;
}
.participants .participant-item:hover {
  background: #f2f2f2;
  color: #502810;
}
.participants .participant-item .name, .participants .participant-item .email, .participants .participant-item .details {
  padding: 10px;
}
.participants .participant-item .name {
  width: 30%;
}
.participants .participant-item .email {
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 40%;
}
.participants .participant-item .details {
  width: 30%;
}

.contacts .contact-item:link, .contacts .contact-item:hover, .contacts .contact-item:active, .contacts .contact-item:visited {
  align-items: center;
  background: white;
  border: 1px solid rgba(80, 40, 16, 0.1);
  border-radius: 10px;
  display: flex;
  margin-top: 10px;
}
.contacts .contact-item:link:first-child, .contacts .contact-item:hover:first-child, .contacts .contact-item:active:first-child, .contacts .contact-item:visited:first-child {
  margin-top: 0;
}
.contacts .contact-item:hover {
  background: #f2f2f2;
  color: #502810;
}
.contacts .contact-item .name, .contacts .contact-item .details, .contacts .contact-item .address {
  padding: 10px;
}
.contacts .contact-item .name {
  width: 30%;
}
.contacts .contact-item .details {
  font-size: 12px;
  width: 30%;
}
.contacts .contact-item .address {
  font-size: 12px;
}

.orders .order-item:link, .orders .order-item:hover, .orders .order-item:active, .orders .order-item:visited {
  align-items: center;
  background: white;
  border: 1px solid rgba(80, 40, 16, 0.1);
  border-radius: 10px;
  display: flex;
  margin-top: 10px;
}
.orders .order-item:hover {
  background: #f2f2f2;
  color: #502810;
}
.orders .order-item .date, .orders .order-item .customer, .orders .order-item .details, .orders .order-item .delivery {
  padding: 10px;
}
.orders .order-item .date {
  width: 200px;
}
.orders .order-item .customer {
  flex-grow: 10;
}
.orders .order-item .details {
  width: 200px;
  text-align: center;
}
.orders .order-item .delivery {
  width: 200px;
  text-align: center;
}

.rankings .rank-item {
  background: white;
  border: 1px solid rgba(80, 40, 16, 0.1);
  border-radius: 10px;
  display: flex;
  margin-bottom: 10px;
  overflow: hidden;
}
.rankings .rank-item .place, .rankings .rank-item .items {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 25px;
  justify-content: center;
  padding: 20px;
  width: 80px;
}
.rankings .rank-item .place {
  background: #f9f9f9;
  border-radius: 10px 0 0 10px;
  border-right: 1px solid rgba(80, 40, 16, 0.1);
}
.rankings .rank-item .details {
  align-items: center;
  display: flex;
  flex-grow: 10;
  gap: 10px;
  padding: 10px;
}
.rankings .rank-item .label {
  color: rgba(80, 40, 16, 0.4);
  display: block;
  font-size: 10px;
  text-transform: uppercase;
}

.mega-text {
  font-size: 40px;
}

.giant-text {
  font-size: 22px;
}

.big-text {
  font-size: 18px;
}

.standard-text {
  font-size: 16px;
}

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

.micro-text {
  font-size: 10px;
}

.bold {
  font-weight: bold;
}

.padding-5 {
  padding: 5px !important;
}

.padding-10 {
  padding: 10px !important;
}

.padding-20 {
  padding: 20px !important;
}

.padding-50 {
  padding: 50px !important;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clear-both {
  clear: both;
}

.width-10 {
  width: 10%;
}

.width-15 {
  width: 15%;
}

.width-20 {
  width: 20%;
}

.width-25 {
  width: 25%;
}

.width-30 {
  width: 30%;
}

.width-33 {
  width: 33.3333333333%;
}

.width-35 {
  width: 35%;
}

.width-40 {
  width: 40%;
}

.width-45 {
  width: 45%;
}

.width-50 {
  width: 50%;
}

.width-55 {
  width: 55%;
}

.width-60 {
  width: 60%;
}

.width-65 {
  width: 65%;
}

.width-66 {
  width: 66.6666666667%;
}

.width-70 {
  width: 70%;
}

.width-75 {
  width: 75%;
}

.width-80 {
  width: 80%;
}

.width-85 {
  width: 85%;
}

.width-90 {
  width: 90%;
}

.width-100 {
  width: 100%;
}

.width-auto {
  width: auto !important;
}

.red {
  color: #900;
}

.green {
  color: #099449;
}

.gray {
  color: #888;
}

.light-text {
  color: #c06f3d;
}

.ultra-light-text {
  color: rgba(80, 40, 16, 0.4);
}

.uppercase {
  text-transform: uppercase;
}

.sub-header {
  color: #c06f3d;
}

.text-label {
  color: #c06f3d;
  font-size: 14px;
}

.line-height-1 {
  line-height: 1;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.border-l, .desktop-border-l {
  border-left: 1px solid rgba(80, 40, 16, 0.1);
}

.border-r {
  border-right: 1px solid rgba(80, 40, 16, 0.1);
}

.border-b {
  border-bottom: 1px solid rgba(80, 40, 16, 0.1);
}

.border-t {
  border-top: 1px solid rgba(80, 40, 16, 0.1);
}

.no-border {
  border: 0 !important;
}

.hand {
  cursor: pointer;
}

.lh1 {
  line-height: 1 !important;
}

.ellipsify {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-0 {
  gap: 0 !important;
}

.gap-5 {
  gap: 5px !important;
}

.gap-10 {
  gap: 10px !important;
}

.gap-20 {
  gap: 20px !important;
}

.cols {
  display: flex;
  gap: 20px;
  width: 100%;
}
.cols.row-reverse {
  flex-direction: row-reverse;
}
.cols.centered {
  align-items: center;
}
.cols .cols-10.padded, .cols .cols-15.padded, .cols .cols-20.padded, .cols .cols-25.padded, .cols .cols-30.padded, .cols .cols-35.padded, .cols .cols-33.padded, .cols .cols-40.padded, .cols .cols-45.padded, .cols .cols-50.padded, .cols .cols-55.padded, .cols .cols-60.padded, .cols .cols-65.padded, .cols .cols-66.padded, .cols .cols-70.padded, .cols .cols-75.padded, .cols .cols-80.padded, .cols .cols-85.padded, .cols .cols-90.padded, .cols .cols-100.padded {
  padding: 10px 20px;
}
.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-35 p:last-child, .cols .cols-33 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%;
}

.margin-l-0 {
  margin-left: 0 !important;
}

.margin-l-10 {
  margin-left: 10px !important;
}

.margin-l-20 {
  margin-left: 20px !important;
}

.margin-t-0 {
  margin-top: 0 !important;
}

.margin-t-10 {
  margin-top: 10px !important;
}

.margin-t-20 {
  margin-top: 20px !important;
}

.margin-r-0 {
  margin-right: 0 !important;
}

.margin-r-10 {
  margin-right: 10px !important;
}

.margin-r-20 {
  margin-right: 20px !important;
}

.margin-b-0 {
  margin-bottom: 0 !important;
}

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

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

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

.padding-l-5 {
  padding-left: 5px !important;
}

.padding-l-10 {
  padding-left: 10px !important;
}

.padding-l-20, .desktop-padding-l-20 {
  padding-left: 20px !important;
}

.padding-t-5 {
  padding-top: 5px !important;
}

.padding-t-10 {
  padding-top: 10px !important;
}

.padding-t-20 {
  padding-top: 20px !important;
}

.padding-r-5 {
  padding-right: 5px !important;
}

.padding-r-10 {
  padding-right: 10px !important;
}

.padding-r-20 {
  padding-right: 20px !important;
}

.padding-b-5 {
  padding-bottom: 5px !important;
}

.padding-b-10 {
  padding-bottom: 10px !important;
}

.padding-b-20 {
  padding-bottom: 20px !important;
}

.padding-b-30 {
  padding-bottom: 30px !important;
}

.desktop-padding-10 {
  padding: 10px;
}

.desktop-padding-20 {
  padding: 20px;
}

.shaded {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
}

.boxed {
  background: #502810;
  border-radius: 5px;
  color: white;
  display: inline-block;
  padding: 10px;
}

.big-link:link, .big-link:hover, .big-link:active, .big-link:visited {
  border: 1px solid transparent;
  border-radius: 10px;
  color: #c06f3d;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  padding: 10px 10px 8px;
  text-decoration: none;
  transition: border-color 300ms;
}

.big-link:hover {
  border-color: #eee;
  color: #502810;
}

.item-label {
  color: rgba(80, 40, 16, 0.4);
  display: block;
  font-size: 10px;
  text-transform: uppercase;
}

.mobile-only-inline, .mobile-only-inline-block, .mobile-only-block, .mobile-only-flex {
  display: none;
}

@media (max-width: 768px) {
  .pop-alert {
    bottom: 10px;
    left: 10px;
    max-width: none;
    right: 10px;
    top: auto;
  }
}
@media (max-width: 768px) {
  .full {
    padding: 10px;
  }
  .full .hamburger {
    display: block;
    height: 48px;
    position: fixed;
    right: 10px;
    top: 10px;
    width: 50px;
    z-index: 10000;
  }
  .full .hamburger span, .full .hamburger:before, .full .hamburger:after {
    background-color: #502810;
    content: "";
    display: block;
    height: 7px;
    left: 9px;
    position: absolute;
    transition: none 0.5s ease 0s;
    transition-property: transform, top, bottom, right, opacity;
    width: 30px;
  }
  .full .hamburger:before {
    top: 10px;
  }
  .full .hamburger span {
    pointer-events: none;
    top: 20px;
  }
  .full .hamburger:after {
    top: 30px;
  }
  .full .hamburger.opening::before, .full .hamburger.opening::after {
    top: 20px;
  }
  .full .hamburger.opening::before {
    transform: rotate(45deg);
  }
  .full .hamburger.opening span {
    opacity: 0;
    right: -50px;
  }
  .full .hamburger.opening::after {
    transform: rotate(-45deg);
  }
  .full .sidebar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: none;
    display: none;
    right: 0;
    width: auto;
    z-index: 1000;
  }
  .full .sidebar .logo {
    height: 70px;
  }
  .full .titlebar {
    padding-bottom: 10px;
  }
  .full .titlebar .title {
    padding: 0;
  }
  .full .titlebar .profile-box {
    display: none;
  }
  .full .main {
    padding: 0 0 80px;
  }
  .full .content-padding {
    padding: 10px;
  }
  .image-bar .shadow-box {
    width: 100%;
  }
  .wizard h2 {
    font-size: 28px;
  }
  .wizard h3 {
    font-size: 24px;
  }
  .wizard p, .wizard div {
    font-size: 16px;
  }
  .wizard ul li {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .purchase-process {
    padding-top: 50px;
  }
  .purchase-process .mobile-sticky-sales-links {
    align-items: center;
    display: flex;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 100;
  }
  .purchase-process .mobile-sticky-sales-links a:link, .purchase-process .mobile-sticky-sales-links a:hover, .purchase-process .mobile-sticky-sales-links a:active, .purchase-process .mobile-sticky-sales-links a:visited {
    background: #502810;
    color: white;
    display: block;
    padding: 10px;
    text-align: center;
    width: 50%;
  }
  .purchase-process .mobile-sticky-sales-links a:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .purchase-process .return-link {
    float: none;
    padding: 0;
    text-align: center;
  }
  .purchase-process .mobile-sales-page-header {
    align-items: center;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  .purchase-process .mobile-sales-page-header .thank-you-message {
    font-size: 24px;
  }
  .purchase-process .title-bar {
    display: block;
  }
  .purchase-process .title-bar .logo {
    height: 100px;
    width: auto;
  }
  .purchase-process .title-bar .title {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .profile-image-area {
    display: flex;
    gap: 10px;
    padding: 10px;
  }
  .profile-image-area p {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .shadow-box {
    padding: 10px;
  }
  .icon-value {
    margin-bottom: 10px;
  }
  .button-box {
    width: 100%;
  }
  .button-box .count, .button-box .button {
    width: 100%;
  }
  .mobile-sticky-buttons {
    background: white;
    border-top: 1px solid rgba(80, 40, 16, 0.1);
    bottom: 0;
    left: 0;
    padding: 10px 5px 5px;
    position: fixed;
    right: 0;
    z-index: 10;
  }
  .status-selection-bar .status-links {
    flex-wrap: wrap;
  }
  .status-selection-bar .status-links form {
    width: 100%;
  }
  .status-selection-bar .status-links form:first-child .button {
    border-radius: 5px 5px 0 0;
  }
  .status-selection-bar .status-links form:last-child .button {
    border-radius: 0 0 5px 5px;
  }
  .status-selection-bar .status-links form .button, .status-selection-bar .status-links form .button:link, .status-selection-bar .status-links form .button:hover, .status-selection-bar .status-links form .button:active, .status-selection-bar .status-links form .button:visited {
    margin: 0;
    width: 100%;
  }
  .demo-bar-menu-button:link, .demo-bar-menu-button:hover, .demo-bar-menu-button:active, .demo-bar-menu-button:visited {
    background: white;
    border: 1px solid rgba(80, 40, 16, 0.1);
    bottom: 5px;
    display: block;
    font-size: 12px;
    padding: 10px;
    position: fixed;
    right: 5px;
    text-transform: uppercase;
    z-index: 100;
  }
  .demo-bar {
    background: transparent;
    bottom: 45px;
    left: auto;
    right: 5px;
  }
  .demo-bar.mobile-hidden {
    display: none;
  }
  .demo-bar .buttons {
    flex-direction: column;
    width: 125px;
  }
  .demo-bar .buttons .button {
    border-bottom: 1px solid rgba(80, 40, 16, 0.1);
    font-size: 12px !important;
    margin: 0;
    padding: 10px !important;
  }
  .demo-bar .progress-buttons, .demo-bar .auth-buttons {
    flex-direction: column;
  }
  .home-link a:link, .home-link a:hover, .home-link a:active, .home-link a:visited {
    bottom: 5px;
  }
  .email-graph-mobile-scroll {
    overflow-x: scroll;
  }
  .email-graph-mobile-scroll .email-graph {
    min-width: 800px;
  }
  .pager {
    padding: 5px;
  }
  .pager a.page-button:link, .pager a.page-button:hover, .pager a.page-button:active, .pager a.page-button:visited {
    border-width: 2px;
    margin-bottom: 4px;
    min-width: 0px;
    padding: 2px;
  }
}
@media (max-width: 768px) {
  .table-list .table-list-item, .table-list .table-list-item:link, .table-list .table-list-item:hover, .table-list .table-list-item:active, .table-list .table-list-item:visited {
    flex-wrap: wrap;
    gap: 5px;
  }
  .table-list .table-list-item div, .table-list .table-list-item:link div, .table-list .table-list-item:hover div, .table-list .table-list-item:active div, .table-list .table-list-item:visited div {
    width: 100%;
  }
  .table-list .table-list-item div .button, .table-list .table-list-item div .button:link, .table-list .table-list-item div .button:hover, .table-list .table-list-item div .button:active, .table-list .table-list-item div .button:visited, .table-list .table-list-item:link div .button, .table-list .table-list-item:link div .button:link, .table-list .table-list-item:link div .button:hover, .table-list .table-list-item:link div .button:active, .table-list .table-list-item:link div .button:visited, .table-list .table-list-item:hover div .button, .table-list .table-list-item:hover div .button:link, .table-list .table-list-item:hover div .button:hover, .table-list .table-list-item:hover div .button:active, .table-list .table-list-item:hover div .button:visited, .table-list .table-list-item:active div .button, .table-list .table-list-item:active div .button:link, .table-list .table-list-item:active div .button:hover, .table-list .table-list-item:active div .button:active, .table-list .table-list-item:active div .button:visited, .table-list .table-list-item:visited div .button, .table-list .table-list-item:visited div .button:link, .table-list .table-list-item:visited div .button:hover, .table-list .table-list-item:visited div .button:active, .table-list .table-list-item:visited div .button:visited {
    display: block;
    width: 100%;
  }
  .participants .participant-item:link, .participants .participant-item:hover, .participants .participant-item:active, .participants .participant-item:visited {
    display: block;
  }
  .participants .participant-item .name, .participants .participant-item .email, .participants .participant-item .details {
    display: block;
    padding: 4px 8px;
    width: 100%;
  }
  .contacts .contact-item .name, .contacts .contact-item .details {
    padding: 8px;
  }
  .contacts .contact-item .name {
    width: 40%;
  }
  .contacts .contact-item .details {
    width: 60%;
  }
  .contacts .contact-item .address {
    display: none;
  }
  .orders .order-item .customer, .orders .order-item .details {
    padding: 8px;
  }
  .orders .order-item .date {
    display: none;
  }
  .orders .order-item .customer {
    width: 60%;
  }
  .orders .order-item .details {
    width: 40%;
  }
  .orders .order-item .delivery {
    display: none;
  }
  .rankings .rank-item {
    flex-direction: column;
    position: relative;
  }
  .rankings .rank-item .place, .rankings .rank-item .items {
    font-size: 20px;
    padding: 5px;
    width: 100%;
  }
  .rankings .rank-item .place {
    border-bottom: 1px solid rgba(80, 40, 16, 0.1);
    border-radius: 0;
    border-right: 0;
  }
  .rankings .rank-item .details {
    padding: 10px;
  }
  .rankings .rank-item .items {
    background: white;
    bottom: 0;
    display: block;
    height: 60px;
    position: absolute;
    right: 0;
    text-align: center;
    width: 60px;
  }
}
@media (max-width: 768px) {
  .cols {
    display: block;
  }
  .cols .cols-10, .cols .cols-15, .cols .cols-20, .cols .cols-25, .cols .cols-30, .cols .cols-35, .cols .cols-33, .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 {
    width: 100%;
  }
  .cols .cols-10.padded, .cols .cols-15.padded, .cols .cols-20.padded, .cols .cols-25.padded, .cols .cols-30.padded, .cols .cols-35.padded, .cols .cols-33.padded, .cols .cols-40.padded, .cols .cols-45.padded, .cols .cols-50.padded, .cols .cols-55.padded, .cols .cols-60.padded, .cols .cols-65.padded, .cols .cols-66.padded, .cols .cols-70.padded, .cols .cols-75.padded, .cols .cols-80.padded, .cols .cols-85.padded, .cols .cols-90.padded, .cols .cols-100.padded {
    padding: 10px;
  }
  .mobile-flex-wrap {
    flex-wrap: wrap;
  }
  .desktop-border-l {
    border: 0;
  }
  .desktop-padding-l-20 {
    padding-left: 0 !important;
  }
  .desktop-padding-10, .desktop-padding-20 {
    padding: 0;
  }
  .mobile-center {
    text-align: center;
  }
  .mobile-width-100 {
    width: 100%;
  }
  .mobile-only-inline {
    display: inline;
  }
  .mobile-only-inline-block {
    display: inline-block;
  }
  .mobile-only-block {
    display: block;
  }
  .mobile-only-flex {
    display: flex;
  }
  .desktop-only {
    display: none !important;
  }
}/*# sourceMappingURL=site.css.map */