@import url("https://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed|Roboto+Slab&display=swap");
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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border: 0;
  padding: 0;
  margin: 0;
}

label, button, input, select, textarea {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

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

.clearfix:after, .form-block:after {
  content: "";
  display: table;
  clear: both;
}
@keyframes $animation {
  0% {
    right: -25rem;
  }
  90% {
    right: 3.125rem;
  }
  100% {
    right: 1.25rem;
  }
}
@keyframes $animation {
  0% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes (slideIn) {
  0% {
    right: -25rem;
  }
  90% {
    right: 3.125rem;
  }
  100% {
    right: 1.25rem;
  }
}
@keyframes (fadeOut) {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.icon {
  width: 1.875rem;
  height: 1.875rem;
  transition: ease-out all 250ms;
}
.icon--bounds {
  fill: none;
}
.icon--line {
  fill: none;
  stroke: #8b8885;
  stroke-linecap: square;
  stroke-width: 2px;
  transition: ease-out all 250ms;
}
a.icon {
  display: block;
}
a.icon:hover .icon--line {
  stroke: #faa010;
}
a.icon:active .icon--line {
  stroke: #20f080;
}

i.icon {
  display: inline-block;
}

html {
  font-size: 16px;
}

body {
  color: #f2f3f4;
  font-family: "Roboto", "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  line-height: 1.375;
  width: 100%;
  background-color: #363432;
  padding: 0;
  margin: 0 auto;
}
body ::-moz-selection {
  color: #151514;
  background-color: #f06e21;
}
body ::selection {
  color: #151514;
  background-color: #f06e21;
}
body ::-moz-selection {
  color: #151514;
  background-color: #f06e21;
}

#top,
#bottom {
  width: 100%;
  min-width: 15rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media (min-width: 80rem) {
  #top,
  #bottom {
    padding-left: calc((100vw - (80rem - 2.5rem)) / 2);
    padding-right: calc((100vw - (80rem - 2.5rem)) / 2);
  }
}

#top {
  z-index: 750;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #363432;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  transition: ease-out all 250ms;
}
.page--home #top {
  justify-content: center;
}
html:not([data-scroll="0"]) #top {
  position: fixed;
  box-shadow: 0 0.625rem 0.625rem rgba(21, 21, 20, 0.2);
  border-bottom-color: transparent;
}

#content {
  width: 100%;
  max-width: 80rem;
  min-height: calc(100vh - 25rem);
  padding: 3.125rem 1.25rem;
  margin: 6.25rem auto;
}
.page--auth #content {
  max-width: 20rem;
}

#bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  background-color: #151514;
  background-image: url("/assets/images/logo-mono.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  margin: 3.125rem 0 -3.125rem;
}
@media (min-width: 48rem) {
  #bottom {
    flex-direction: row;
  }
}

#debug {
  z-index: 1000;
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  color: #faa010;
  font-family: monospace;
  font-size: 0.875rem;
  height: auto;
  background-color: rgba(21, 21, 20, 0.8);
  padding: 0.3125rem 0.625rem;
}

.flash {
  z-index: 950;
  display: none;
  position: fixed;
  top: 5rem;
  right: 1.25rem;
  vertical-align: middle;
  min-width: 10rem;
  max-width: 20rem;
  min-height: 3.125rem;
  border-radius: 1.25rem;
  padding: 0.625rem 1.25rem;
  box-shadow: 0 0.625rem 1.25rem rgba(21, 21, 20, 0.8);
  animation: 250ms slideIn 0 ease-out, 250ms fadeOut 5s ease-in;
  -webkit-animation-delay: 0;
  -webkit-animation-duration: 250ms;
  -webkit-animation-name: slideIn;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-direction: forward;
  -moz-animation-delay: 0;
  -moz-animation-duration: 250ms;
  -moz-animation-name: slideIn;
  -moz-animation-timing-function: ease-out;
  -moz-animation-direction: forward;
  animation-delay: 0;
  animation-duration: 250ms;
  animation-name: slideIn;
  animation-timing-function: ease-out;
  animation-direction: forward;
}
.flash--open {
  display: block;
}
.flash--success {
  color: #151514;
  background-color: #20f080;
}
.flash--error {
  color: #fbfbf6;
  background-color: #f03050;
}
.flash--collapse {
  display: none;
}

#overlay {
  z-index: 800;
  display: none;
  justify-content: center;
  align-items: center;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(54, 52, 50, 0.8);
}
#overlay.toggled-on {
  display: flex;
}

.modal {
  display: none;
  min-width: 15rem;
  width: calc(100vh - 1.25rem * 2);
  max-width: 30rem;
  background-color: #363432;
  border-radius: 1.25rem;
  box-shadow: 0 0.125rem 0.125rem rgba(21, 21, 20, 0.8), 0 0.625rem 3.125rem rgba(21, 21, 20, 0.5);
  padding: 1.25rem;
}
.modal.toggled-on {
  display: block;
}
.modal__description {
  margin-bottom: 1.25rem;
}

#paypal-button {
  width: calc(100% + 0.625rem * 2);
  background-color: #fbfbf6;
  border-radius: 0.625rem;
  padding: 0.625rem;
  margin: 0 calc(0.625rem * -1) calc(0.625rem * -1);
}

#fee-note {
  display: none;
}

.listing__pub--false {
  color: #f03050;
}

.branding--top {
  display: block;
  padding: 0;
  margin: 0.625rem 0 !important;
}
html:not([data-scroll="0"]) .branding--top {
  margin: 0.3125rem 0 !important;
}
.branding--top .logo {
  max-height: 3.125rem;
  transition: ease-out all 250ms;
}
html:not([data-scroll="0"]) .branding--top .logo {
  max-height: 1.875rem;
}
.branding--bottom {
  display: inline-block;
  text-align: center;
}
.branding--bottom .logo {
  height: 10vw;
  min-height: 3.125rem;
  max-height: 6.25rem;
}

.hero {
  position: relative;
  text-shadow: 0 0.125rem 0.125rem rgba(21, 21, 20, 0.8), 0 0.3125rem 1.25rem rgba(21, 21, 20, 0.2);
  background-size: cover;
  border-radius: 3.125rem;
  padding: 3.125rem 3.125rem;
}
.hero__header {
  color: #fbfbf6;
  font-weight: 200;
  text-align: center;
}
.hero__tagline {
  font-size: 1.5rem;
  font-family: "Roboto Condensed", "Helvetica Neue Condensed", "Arial Condensed", Impact, sans-serif;
  line-height: 1.725;
  font-weight: 600;
  text-align: center;
  margin-top: 0;
}
.hero__credit {
  position: absolute;
  bottom: 0.3125rem;
  right: 2.5rem;
  color: #f2f3f4;
  font-size: 0.875rem;
}
.hero--home {
  background-image: url("/assets/images/hero-home.jpg");
  background-position: center 90%;
}
.hero--404 {
  background-image: url("/assets/images/hero-404.jpg");
  background-position: center 90%;
}

.cta {
  margin: 3.125rem auto;
}
@media (max-width: 48rem) {
  .cta {
    max-width: 40rem;
  }
}
@media (min-width: 48rem) {
  .cta {
    display: flex;
    flex-wrap: nowrap;
    flex-flow: row;
    justify-content: center;
  }
}
.cta__action {
  display: flex;
  flex-flow: column;
  align-self: center;
}
@media (max-width: 48rem) {
  .cta__action {
    padding: 1.25rem 0;
  }
}
@media (min-width: 48rem) {
  .cta__action {
    width: 50%;
    padding: 3.125rem;
  }
}
@media (max-width: 48rem) {
  .cta__action + .cta__action {
    border-top: #555453 solid 0.125rem;
  }
}
@media (min-width: 48rem) {
  .cta__action + .cta__action {
    border-left: #555453 solid 0.125rem;
  }
}
.cta__header {
  color: #8b8885;
  font-size: 2.5rem;
  font-family: "Roboto Condensed", "Helvetica Neue Condensed", "Arial Condensed", Impact, sans-serif;
  font-weight: 700;
  text-align: center;
  font-style: italic;
  margin: 0;
}

.categories__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  font-size: 1.5rem;
}
.categories__item {
  line-height: 1.725;
  margin: 0.625rem 1.25rem;
}
@media (max-width: 48rem) {
  .categories__item {
    width: 100%;
  }
}
.categories__item a {
  display: block;
  text-align: center;
  text-decoration: none;
  line-height: inherit;
  border-radius: 3.125rem;
  padding: 0.625rem 1.25rem;
}
.categories__item a:hover {
  color: #151514;
  background-color: #faa010;
}
.categories__item a:active {
  color: #151514;
  background-color: #20f080;
}

.listing {
  max-width: 60rem;
  border-top: #555453 solid 0.125rem;
  padding: 1.25rem 0;
  margin: 1.25rem auto;
}
.listing:first-of-type {
  border-top: 0;
  margin-top: 0;
}
.listing__title {
  font-size: 2.5rem;
  text-align: left;
  padding: 0;
  margin-bottom: 1.25rem;
}
.listings .listing__title {
  font-size: 1.5rem;
}
.listing__meta, .listing__content {
  width: 100%;
  margin-bottom: 1.25rem;
}
.listing .meta {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.725;
  margin: 0 0.625rem 0.625rem 0;
}
.listing .meta .icon {
  vertical-align: middle;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.3125rem;
}
.listing .meta a {
  text-decoration: none;
  line-height: inherit;
  border-radius: 1.25rem;
  padding: 0.125rem 0.625rem;
}
.listing .meta a:hover {
  color: #151514;
  background-color: #faa010;
}
.listing .meta a:active {
  color: #151514;
  background-color: #20f080;
}
.listing__type a {
  border: #555453 solid 0.125rem;
}
.listing__type a:hover {
  border: #faa010 solid 0.125rem;
}
.listing__type a:active {
  border: #20f080 solid 0.125rem;
}
.listing__date {
  float: right;
}
.listing__content {
  max-width: 40rem;
}

.listings {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}
.listings--latest {
  margin-top: 3.125rem;
}
.listings__header {
  color: #8b8885;
  font-size: 2.5rem;
  font-family: "Roboto Condensed", "Helvetica Neue Condensed", "Arial Condensed", Impact, sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.form-block {
  min-width: 10rem;
  width: 100%;
  max-width: 40rem;
  margin: 1.25rem auto;
}
.form-block--column {
  padding: 0;
}
@media (min-width: 48rem) {
  .form-block--column {
    float: left;
    width: calc(50% - 1.25rem / 2);
    margin: 0;
  }
  .form-block--column + .form-block--column {
    margin-left: 1.25rem;
  }
}
.form-block--right {
  text-align: right;
}

.form-step {
  min-width: 10rem;
  max-width: 40rem;
  margin: 1.25rem auto;
}
.form-step__title {
  font-size: 1.75rem;
  text-align: center;
}
.form-step__options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  font-size: 1.5rem;
}
.form-step__option {
  cursor: pointer;
  color: #faa010;
  text-align: center;
  width: 100%;
  border-radius: 3.125rem;
  border: #faa010 solid 0.125rem;
  padding: 0.625rem 1.25rem;
  margin: 0.625rem 1.25rem;
  transition: ease-out all 250ms;
  flex-grow: 1;
}
@media (min-width: 48rem) {
  .form-step__option {
    width: auto;
  }
}
.form-step__option:hover {
  color: #151514;
  background-color: #faa010;
}
.form-step__option:active {
  color: #151514;
  background-color: #20f080;
  border: #20f080 solid 0.125rem;
}

.option-bounds {
  border: #555453 solid 0.125rem;
  border-radius: 1.25rem;
  padding: 0.625rem;
}
.option-bounds + .option-bounds {
  margin-top: 1.25rem;
}
.option-bounds__title {
  font-size: 1.5rem;
  color: #8b8885;
}

.pagination {
  display: flex;
  flex-direction: row;
  border-top: #555453 solid 0.125rem;
  border-bottom: #555453 solid 0.125rem;
  padding: 0.625rem;
}
.pagination__back, .pagination__forth {
  display: flex;
  flex-direction: row;
  flex: 1 0 0;
}
.pagination__forth {
  justify-content: flex-end;
}
.pagination__stats {
  flex: 2 0 auto;
  font-size: 0.875rem;
  line-height: 1.725;
  text-align: center;
  padding: 0.3125rem;
}
.pagination__page,
.pagination a {
  color: #faa010;
  font-size: 0.875rem;
  line-height: 1.725;
  text-decoration: none;
  border-radius: 0.3125rem;
  padding: 0.3125rem;
}
.pagination__page:hover,
.pagination a:hover {
  color: #20f080;
  text-decoration: underline;
}
.pagination__page--current,
.pagination a--current {
  color: #151514;
  background-color: #faa010;
}
.pagination__first, .pagination__prev {
  margin-right: 0.9375rem;
}
.pagination__next, .pagination__last {
  margin-left: 0.9375rem;
}

.text-box, .scams__example, .info {
  max-width: 40rem;
  border-radius: 0.625rem;
  padding: 0.625rem 1.25rem;
  margin: 0 auto 3.125rem;
}

.info {
  background-color: #151514;
}

.scams__example {
  border: #555453 solid 0.125rem;
}

.checkout__controls {
  min-width: 20rem;
  width: 100%;
  max-width: 30rem;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .checkout {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 1.25rem;
    margin: 3.125rem auto;
  }
  .checkout__preview {
    order: 1;
    width: 100%;
    max-width: 40rem;
  }
  .checkout__controls {
    order: 2;
  }
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.warning {
  color: #f06e21;
}

.redacted {
  color: #8b8885;
  background-color: #151514;
  border-radius: 0.125rem;
}

a {
  color: #faa010;
  text-decoration: underline;
  transition: ease-out all 250ms;
}
a:hover {
  text-decoration: none;
}
a:active {
  color: #20f080;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: "Roboto Condensed", "Helvetica Neue Condensed", "Arial Condensed", Impact, sans-serif;
  padding: 0.625rem 0;
  margin: 1.25rem 0 0;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child {
  padding-top: 0;
  margin-top: 0;
}

h1 {
  color: #dedddb;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.8;
  line-height: 1.25;
}
@media (min-width: 64rem) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.2;
  line-height: 1.25;
}
@media (min-width: 64rem) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.1;
  line-height: 1.25;
}
@media (min-width: 64rem) {
  h3 {
    font-size: 1.125rem;
  }
}

h3 + h4 {
  margin-top: 0;
}

p {
  line-height: 1.5;
}
p + p,
p + ul, ul + p {
  margin-top: 1.25rem;
}

note {
  font-size: 0.75rem;
  font-weight: 200;
}

.title {
  font-family: "Roboto Condensed", "Helvetica Neue Condensed", "Arial Condensed", Impact, sans-serif;
}
.title--page {
  color: #8b8885;
  font-size: 2.5rem;
  text-align: center;
}
.title--results {
  font-size: 1.5rem;
}

.nav {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: auto;
}
.nav--top {
  height: 3.125rem;
}
.page--home .nav--top {
  display: none;
}
.nav--top .button,
.nav--top .icon {
  margin: 0 0.625rem;
}
.nav--bottom {
  display: flex;
  align-items: flex-start;
  min-height: 3.125rem;
}
@media (max-width: 48rem) {
  .nav--bottom {
    margin-top: 3.125rem;
  }
}
.nav--admin {
  max-width: 40rem;
  border-bottom: #555453 solid 0.125rem;
  margin: 0 auto;
}
.nav__list {
  display: flex;
  flex-direction: column;
  width: 10rem;
  margin-right: 2.5rem;
}
.nav__header h4 {
  color: #8b8885;
  border-bottom: #555453 solid 0.125rem;
  padding-bottom: 0.3125rem;
  margin-bottom: 0.625rem;
}
.nav__item a {
  display: block;
  color: #8b8885;
  text-decoration: none;
  padding: 0.3125rem 0;
  margin-bottom: 0.3125rem;
}
.nav__item a:hover {
  color: #faa010;
}
.nav__item a:active {
  color: #20f080;
}

#menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 48rem) {
  #menu {
    display: none;
    background-color: #151514;
    transition: ease-out all 250ms;
  }
  #menu.toggled-on {
    display: flex;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    height: 3.125rem;
    box-shadow: 0 0.625rem 0.625rem rgba(21, 21, 20, 0.2);
  }
  html:not([data-scroll="0"]) #menu.toggled-on {
    top: 3.125rem;
  }
}
@media (min-width: 48rem) {
  #menu {
    width: 100%;
  }
}

#menu-toggle {
  cursor: pointer;
}
#menu-toggle:hover .icon--line {
  stroke: #faa010;
}
#menu-toggle:active .icon--line {
  stroke: #20f080;
}
@media (min-width: 48rem) {
  #menu-toggle {
    display: none !important;
  }
}
.form--steps[data-step="1"] #submit-step-2,
.form--steps[data-step="1"] #submit-step-3 {
  display: none;
}
.form--steps[data-step="2"] #submit-step-1,
.form--steps[data-step="2"] #submit-step-3 {
  display: none;
}
.form--steps[data-step="3"] #submit-step-1,
.form--steps[data-step="3"] #submit-step-2 {
  display: none;
}

.label {
  display: block;
  font-weight: 200;
  margin: 1.25rem 0 0.3125rem;
}
.form-block .label {
  margin-top: 0;
}

.input,
.button {
  box-sizing: border-box;
  text-decoration: none;
  margin: 1.25rem 0;
  transition: ease-out all 250ms;
}
.input:last-child,
.button:last-child {
  margin-bottom: 0;
}

.input {
  cursor: text;
  display: block;
  color: #151514;
  font-size: 16px;
  text-align: left;
  min-width: 10rem;
  width: 100%;
  max-width: 40rem;
  border: #555453 solid 0.125rem;
  border-radius: 0.3125rem;
  padding: 0.3125rem 0.625rem;
}
.input:hover, .input:active {
  border-color: #20f080;
}
.input:focus {
  border-color: #60a6ff;
  box-shadow: 0 0 0.3125rem #60a6ff;
  outline: none;
}
.input::-moz-placeholder {
  color: #8b8885;
}
.input::placeholder {
  color: #8b8885;
}
.input--cta {
  color: #151514;
  background-color: #faa010;
}
.input--inline {
  display: inline-block;
}
.input--large {
  font-size: 1.75rem;
  font-family: "Roboto Slab", Georgia, "Times New Roman", Times, sans-serif;
  min-width: 15.625rem;
  border-radius: 1.25rem;
  padding: 1.25rem;
}
.input--textarea {
  min-height: 15.625rem;
  max-height: 40rem;
  resize: vertical;
}
.input--limit {
  border: #f03050 solid 0.125rem;
}
.label + .input {
  margin: 0.3125rem 0 0;
}

.button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-block;
  color: #faa010;
  font-size: 1.125rem;
  text-align: center;
  background-color: transparent;
  border: #faa010 solid 0.125rem;
  border-radius: 0.625rem;
  padding: 0.3125rem 1.25rem;
  transition: all 125ms ease-out;
}
.button:hover {
  color: #151514;
  background-color: #faa010;
  border-color: #faa010;
}
.button:active {
  color: #151514;
  background-color: #20f080;
  border-color: #20f080;
}
.button:focus {
  border-color: #60a6ff;
  box-shadow: 0 0 0.3125rem #60a6ff;
  outline: none;
}
.button--cta {
  color: #151514;
  background-color: #faa010;
  border: #faa010 solid 0.125rem;
}
.button--cta:hover {
  background-color: #20f080;
  border: #20f080 solid 0.125rem;
}
.button--destructive {
  color: #151514;
  background-color: #f03050;
  border-color: #f03050;
}
.button--destructive:hover {
  color: #f03050;
  background-color: #151514;
  border-color: #f03050;
}
.button--warning {
  color: #151514;
  background-color: #f06e21;
  border-color: #f06e21;
}
.button--warning:hover {
  background-color: #f03050;
  border-color: #f03050;
}
.button--large {
  font-size: 1.75rem;
  font-family: "Roboto Slab", Georgia, "Times New Roman", Times, sans-serif;
  min-width: 15.625rem;
  border-radius: 1.25rem;
  padding: 1.25rem 3.125rem;
}
.button--embedded {
  background-color: transparent;
  border: none;
}
input:focus + .button--embedded {
  left: auto !important;
  right: 0.3125rem !important;
  color: #151514;
  background-color: #faa010;
}
.form-block .button {
  margin-top: 0;
  margin-bottom: 0;
}
.actionbar .button {
  margin-right: 1.25rem;
}

.option-list {
  color: #363432;
  font-size: 16px;
  min-width: 10rem;
  width: 100%;
  max-width: 40rem;
}

.search--embedded {
  position: relative;
}
.search--embedded .input {
  z-index: 149;
  position: relative;
  width: 100%;
  padding-left: 3.125rem;
}
.search--embedded .input:focus {
  padding-left: 0.625rem;
}
.search--embedded .button {
  z-index: 150;
  position: absolute;
  top: 1.25rem;
  left: 0.3125rem;
  right: auto;
}