/*
 * This is a manifest file that'll automatically include all the stylesheets available in this directory
 * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
 * the top of the compiled file, but it's generally better to create a new file per style scope.
 *


*/
@font-face {
  font-family: 'Inter Regular';
  src: url(/assets/fonts/inter/inter-v18-latin-regular-4257feae4ab4d639ab5c04aa4e3be1e51a632cc3189abf481212a464607cba55.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Medium';
  src: url(/assets/fonts/inter/inter-v18-latin-500-4e948e63c678c58bab6bb0dc9fa0af063a33028841e5fd018908530494c6eb71.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Semibold';
  src: url(/assets/fonts/inter/inter-v18-latin-600-eff1df42f259b7bea6b036e8d66414f539f58459a1cf1977083aae4731df0127.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Serif';
  src: url(/assets/fonts/source-serif/source-serif-4-v8-latin-regular-cd8f56d0633e0c07bdfa779dbd7324e56848e327f845156dbd7a9e5921ec2053.woff2) format("woff2");
  font-display: swap;
}

@font-face {
  font-family: 'Source Serif Medium';
  src: url(/assets/fonts/source-serif/source-serif-4-v8-latin-500-24b592e26d85c7e4440f370ec846b156b0fc8c98ae62d31a0957b8d7a0c0caa2.woff2) format("woff2");
  font-display: swap;
}

@font-face {
  font-family: 'Neutraface Text';
  src: url(/assets/fonts/neutra/neutraface-text-book-6664f4bfc87d7a7d615580a23fa0dd304de82b1254793fd1572c31fd07471316.otf) format("otf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neutraface Text';
  src: url(/assets/fonts/neutra/neutraface-text-bold-9bc9f19bbc7bce00823be1e8daa1d69535acfcdaddf6d0a31f663c527e25fe41.otf) format("otf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 * OFF require_tree .
 *= require_self
 */
/* line 17, app/assets/stylesheets/application.css */
:root {
  --my-min-height: calc(100vh - 130px);
}

/* Modal styles */
/* line 23, app/assets/stylesheets/application.css */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black with opacity */
  padding-top: 60px;
}

/* line 45, app/assets/stylesheets/application.css */
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 300px;
  text-align: center;
}

/* line 54, app/assets/stylesheets/application.css */
button {
  padding: 10px;
  /* margin-top: 10px; */
}

/* line 59, app/assets/stylesheets/application.css */
body {
  background-color: black;
  border-radius: 20px;
}

/* line 64, app/assets/stylesheets/application.css */
#content {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 130px);
}

/* line 70, app/assets/stylesheets/application.css */
#content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/assets/line.svg);
  background-repeat: repeat-x;
  background-position: center;
  background-size: 300px 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* line 83, app/assets/stylesheets/application.css */
#content > * {
  position: relative;
  z-index: 2;
}

/* line 88, app/assets/stylesheets/application.css */
.gradient-text {
  background: radial-gradient(50% 50% at 50% 50%, #C7A37F 0%, #493928 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* line 96, app/assets/stylesheets/application.css */
.gradient-border {
  padding: 1px;
  background: linear-gradient(86.31deg, #302D29 -1.16%, #B79676 51.9%, #302D29 97.46%);
}

/* line 101, app/assets/stylesheets/application.css */
.gradient-border .bg-black {
  border-radius: 1000px;
  background-color: #000;
}

/* line 106, app/assets/stylesheets/application.css */
.inverted-rounded:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -70px;
  height: 70px;
  width: 70px;
  background: transparent;
  /* border-radius of pseudo element */
  border-bottom-right-radius: 50%;
  /* box shadow to give the shadow of the pseudo-element the same color as the background */
  box-shadow: 0 40px 0 0 #222222;
}

/* line 122, app/assets/stylesheets/application.css */
.inverted-rounded:after {
  content: "";
  position: absolute;
  top: -70px;
  right: 0;
  height: 70px;
  width: 70px;
  background: transparent;
  border-bottom-right-radius: 50%;
  box-shadow: 0 40px 0 0 #222222;
}

/* line 134, app/assets/stylesheets/application.css */
.notify_subscribe {
  height: 0;
  width: 0;
  display: none;
}

/* line 140, app/assets/stylesheets/application.css */
#notify-me:checked + .inverted-rounded {
  width: 100%;
}

/* line 144, app/assets/stylesheets/application.css */
#notify-me:checked + .inverted-rounded > div {
  width: 100%;
}

/* line 148, app/assets/stylesheets/application.css */
#notify-me:checked + .inverted-rounded .notify_subscribe {
  height: min-content;
  width: 100%;
  display: flex;
}

/* line 154, app/assets/stylesheets/application.css */
#notify-me:checked + .inverted-rounded > div > label {
  display: none;
}

/* line 158, app/assets/stylesheets/application.css */
#notify-me:checked + .inverted-rounded:before {
  display: none;
}

/* line 162, app/assets/stylesheets/application.css */
#notify-me:checked + .inverted-rounded:after {
  display: none;
}

/* line 166, app/assets/stylesheets/application.css */
.outline-button {
  display: flex;
  justify-items: center;
  align-items: center;
  border: 1px solid #C7A37F;
  border-radius: 50px;
  padding: 10px 24px;
  width: fit-content;
  margin: 0 auto;
  font-size: 14px;
  color: white;
}

/* line 180, app/assets/stylesheets/application.css */
.gradient-text {
  background: radial-gradient(circle at center, #C7A37F 0%, #493928 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* line 188, app/assets/stylesheets/application.css */
.justify-between {
  justify-content: space-between;
}

/* line 192, app/assets/stylesheets/application.css */
.justify-around {
  justify-content: space-around;
}

/* line 196, app/assets/stylesheets/application.css */
.justify-evenly {
  justify-content: space-evenly;
}

/* line 200, app/assets/stylesheets/application.css */
.justify-start {
  justify-content: flex-start;
}

/* line 204, app/assets/stylesheets/application.css */
.text-balance {
  text-wrap: balance;
}

/* line 208, app/assets/stylesheets/application.css */
.hero-img {
  display: block;
  width: 100%;
  max-height: 885px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  /* line 216, app/assets/stylesheets/application.css */
  .hero-img {
    max-width: 70%;
  }
}
/*
Placeholder manifest file.
the installer will append this file to the app vendored assets here: 'vendor/assets/stylesheets/spree/frontend/all.css'
*/

.solidus-stripe-payment {
  padding: 1em 0;
}

[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/*
 * This is a manifest file that'll automatically include all the stylesheets available in this directory
 * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
 * the top of the compiled file, but it's generally better to create a new file per style scope.
 *
 * spree/frontend/all points to the
 * `vendor/assets/stylesheets/spree/frontend/all.css` file generated by
 * `solidus:install`. See `setup_assets` at
 * https://github.com/solidusio/solidus/blob/main/core/lib/generators/solidus/install/install_generator.rb

 *


*/
