@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,700;1,400;1,700&display=swap);

.geist-geist-font {
  font-family: "Geist", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

body {
  font-family: 'Lato', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100vw;
  height: 100vh;
  position: relative;
}


/* Code Styling */
code {
  font-family: 'Roboto Mono', Menlo, Monaco, Consolas, 'Courier New', monospace;
}

/* Header */
h1 {
  font-family: 'Poppins', sans-serif;
  color: #000000;
  font-size: 2.5em;
  margin: 0.67em 0;
  text-align: center;
}

/* Button Styles */
.button {
  background-color: #00FFA3;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s ease-in-out;
}

.button:hover {
  background-color: #DC1FFF;
  /* Purple Dino on hover */
  transform: scale(1.05);
  /* Slight hover effect */
}

.button:active {
  transform: scale(1);
  /* Ensure the button doesn't keep scaling when clicked */
}

/* Container for button and token list */
.container {
  display: flex;
  flex-direction: column;
  /* Stack items vertically */
  align-items: flex-end;
  /* Align items to the end */
}

/* Token List Styling */
.token-list {
  margin: 20px;
  background-color: rgb(0, 0, 0);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-height: 49vh;
  overflow-y: scroll;
}

.token-item {
  border-bottom: 1px solid #ddd;
  /* Divider between tokens */
  padding: 10px 0;
  min-height: 8vh;
}

.token-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}

.token-container div {
  width: 33%;
}

.token-container div:nth-child(1) {
  text-align: left;
}

.token-container div:nth-child(2) {
  text-align: center;
}

.token-container div:nth-child(3) {
  text-align: end;
}

.token-item:last-child {
  border-bottom: none;
  /* Remove divider for the last item */
}

.token-item:hover {
  transform: scale(1.05);
  /* Slight hover effect */
}

/* Token Details */
.token-item span {
  display: block;
  color: #ffffff;
  /* Darker text color for token details */
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /* Add ellipsis for overflow text */
}

.token-item img {
  border-radius: 50%;
  width: 120%;
  height: 9vh;
}

/* Items Container */
.items-container {
  padding: 20px;
  font-family: 'Inter', sans-serif;
}

.items-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 10%;
}

.item {
  background-color: #f4f4f4;
  padding: 15px;
  margin: 8px;
  border-radius: 8px;
  width: 200px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s, transform 0.3s ease-in-out;
}

.selected-item {
  background-color: #ddd7d72b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-family: 'Arial', sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

@keyframes scaleAnimation {
  0% {
    transform: scale(1);
    background: linear-gradient(0deg, #00ffa3eb, #a100ffad, #4A90E2);
  }

  10% {

    background: linear-gradient(1deg, #00ffa3eb, #a100ffad, #4A90E2);
  }

  20% {

    background: linear-gradient(2deg, #00ffa3eb, #a100ffad, #4A90E2);
  }

  30% {

    background: linear-gradient(3deg, #00ffa3eb, #a100ffad, #4A90E2);
  }

  40% {

    background: linear-gradient(4deg, #00ffa3eb, #a100ffad, #4A90E2);
  }

  50% {
    transform: scale(1.2);
    background: linear-gradient(5deg, #00ffa3eb, #a100ffad, #4A90E2);
  }

  60% {

    background: linear-gradient(4deg, #00ffa3eb, #a100ffad, #4A90E2);
  }

  70% {

    background: linear-gradient(3deg, #00ffa3eb, #a100ffad, #4A90E2);
  }

  80% {

    background: linear-gradient(2deg, #00ffa3eb, #a100ffad, #4A90E2);
  }

  90% {

    background: linear-gradient(1deg, #00ffa3eb, #a100ffad, #4A90E2);
  }

  100% {
    transform: scale(1);
    background: linear-gradient(0deg, #00ffa3eb, #a100ffad, #4A90E2);
  }
}

@keyframes textAnimation {
  0% {
    color: #beb7b7;
  }

  50% {
    color: white;
  }

  100% {
    color: #beb7b7;
  }
}

.selected-item h3,
.selected-item p {
  color: #ffffff;
  animation: textAnimation 5s infinite;
  text-shadow: 2px 2px black;
}

.selected-item-wrapper {
  padding: 1px;
  border-radius: 15px;
  border-color: #49494945;
  background: linear-gradient(to top, #00ffa3eb, #a100ffad, #4A90E2);
  box-shadow: black 5px 3px 10px 1px;
  margin-top: 7cqmax;
  animation: scaleAnimation 5s infinite;
}

/* Banner Styling */
.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(to top, #4A90E2, rgba(74, 144, 226, .75) 70%);
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom-style: ridge;
  border-bottom-color: #2d4e858a;
  border-bottom-width: medium;
  box-shadow: #972ad2e0 -20px -6px 20px 4px;
}

.site-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  /* Secondary font for banner title */
  font-size: 24px;
}

.connect-button {
  background-color: #ab9ff2;
  border: none;
  padding: 10px 15px;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  max-width: 12em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  min-width: 11em;
}

.connect-button-wrapper {
  border-radius: 7.5px;
  border-color: #7fffd412;
  box-shadow: rgb(0, 0, 0) -6px 5px 20px 2px;
}

.connect-button:hover {
  background-color: #03E1FF;
  /* Ocean Blue on hover */
}

.transaction-confirmed {
  display: flex;
  padding: 15px;
  flex-direction: column;
  align-content: center;
  align-items: center;
  margin: 2.5%;
  margin-inline: 25%;
  border: #a100ff;
  border-style: solid;
  border-radius: 15px;
  text-align: center;
  background: linear-gradient(45deg, #03e1ff, #00ffa3);
}

/* Wallet Adapter Hidden Styles */
.wallet-adapter-dropdown-list,
.wallet-adapter-modal-title,
.wallet-adapter-modal-wrapper,
.wallet-adapter-button-trigger {
  display: none;
}

.loading-dialog {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.spinner {
  margin-left: 0% !important;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #272727;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Form Inputs - Buttons and Textareas */
button,
input,
select,
textarea {
  font-family: inherit;
  /* Inherit font */
  font-size: inherit;
  /* Inherit font size */
  margin: 0;
  /* Remove margin */
  padding: 0;
  /* Reset padding */
}

button,
html input[type="button"],
input[type="reset"] {
  -webkit-appearance: button;
  /* Ensure consistent button appearance */
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
  /* Remove pointer cursor for disabled elements */
}

input[type='checkbox'],
input[type='radio'] {
  box-sizing: border-box;
  padding: 0;
  /* Remove default padding */
}

/* Reset Input Field Box Sizing */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  height: auto;
}

input[type='search'] {
  -webkit-appearance: none;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

/* Table Adjustments */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.connection-status {
  text-wrap-mode: wrap;
  max-width: 100px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent dark background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* Ensure it sits above other content */
}

/* Modal Style */
.modal {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.payment-method-wrapper {
  background: linear-gradient(229deg, #270157, #270157, #270157, #181717, #000000, #181616, #ab9ff2, #ab9ff2);
  padding: 15px 40px;
  border-radius: 10px;
  max-width: 400px;
  margin: 20px auto;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Styling for the <h3> element */
.payment-method-wrapper h3 {
  font-family: 'Arial', sans-serif;
  font-size: 24px;
  color: white;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect for <h3> */
.payment-method-wrapper:hover h3 {
  color: #fff;
  transform: scale(1.05);
  /* Slight scale effect */
}

/* Additional styles for the div */
.payment-method-wrapper::before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background-color: #fff;
  margin: 10px auto;
  border-radius: 2px;
}

.copy-btn {
  background-color: #4caf4f00;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  float: right;
}

.copy-btn:hover {
  background-color: #000000;
}

/* SVG icon styling */
.copy-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.copy-wrapper {
  position: absolute;
  top: 14vh;
  right: 0;
  max-width: 15%;
}

.copy-wrapper div {
  color: white;
  background: black;
  box-shadow: #454545 2px 2px 2px;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
}

.token-list-wrapper {
  display: flex;
  justify-content: space-evenly;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 2000 1500%27%3E%3Cdefs%3E%3Crect stroke=%27%23ffffff%27 stroke-width=%27.5%27 width=%271%27 height=%271%27 id=%27s%27/%3E%3Cpattern id=%27a%27 width=%273%27 height=%273%27 patternUnits=%27userSpaceOnUse%27 patternTransform=%27scale%2850%29 translate%28-980 -735%29%27%3E%3Cuse fill=%27%23fcfcfc%27 href=%27%23s%27 y=%272%27/%3E%3Cuse fill=%27%23fcfcfc%27 href=%27%23s%27 x=%271%27 y=%272%27/%3E%3Cuse fill=%27%23fafafa%27 href=%27%23s%27 x=%272%27 y=%272%27/%3E%3Cuse fill=%27%23fafafa%27 href=%27%23s%27/%3E%3Cuse fill=%27%23f7f7f7%27 href=%27%23s%27 x=%272%27/%3E%3Cuse fill=%27%23f7f7f7%27 href=%27%23s%27 x=%271%27 y=%271%27/%3E%3C/pattern%3E%3Cpattern id=%27b%27 width=%277%27 height=%2711%27 patternUnits=%27userSpaceOnUse%27 patternTransform=%27scale%2850%29 translate%28-980 -735%29%27%3E%3Cg fill=%27%23f5f5f5%27%3E%3Cuse href=%27%23s%27/%3E%3Cuse href=%27%23s%27 y=%275%27 /%3E%3Cuse href=%27%23s%27 x=%271%27 y=%2710%27/%3E%3Cuse href=%27%23s%27 x=%272%27 y=%271%27/%3E%3Cuse href=%27%23s%27 x=%272%27 y=%274%27/%3E%3Cuse href=%27%23s%27 x=%273%27 y=%278%27/%3E%3Cuse href=%27%23s%27 x=%274%27 y=%273%27/%3E%3Cuse href=%27%23s%27 x=%274%27 y=%277%27/%3E%3Cuse href=%27%23s%27 x=%275%27 y=%272%27/%3E%3Cuse href=%27%23s%27 x=%275%27 y=%276%27/%3E%3Cuse href=%27%23s%27 x=%276%27 y=%279%27/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id=%27h%27 width=%275%27 height=%2713%27 patternUnits=%27userSpaceOnUse%27 patternTransform=%27scale%2850%29 translate%28-980 -735%29%27%3E%3Cg fill=%27%23f5f5f5%27%3E%3Cuse href=%27%23s%27 y=%275%27/%3E%3Cuse href=%27%23s%27 y=%278%27/%3E%3Cuse href=%27%23s%27 x=%271%27 y=%271%27/%3E%3Cuse href=%27%23s%27 x=%271%27 y=%279%27/%3E%3Cuse href=%27%23s%27 x=%271%27 y=%2712%27/%3E%3Cuse href=%27%23s%27 x=%272%27/%3E%3Cuse href=%27%23s%27 x=%272%27 y=%274%27/%3E%3Cuse href=%27%23s%27 x=%273%27 y=%272%27/%3E%3Cuse href=%27%23s%27 x=%273%27 y=%276%27/%3E%3Cuse href=%27%23s%27 x=%273%27 y=%2711%27/%3E%3Cuse href=%27%23s%27 x=%274%27 y=%273%27/%3E%3Cuse href=%27%23s%27 x=%274%27 y=%277%27/%3E%3Cuse href=%27%23s%27 x=%274%27 y=%2710%27/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id=%27c%27 width=%2717%27 height=%2713%27 patternUnits=%27userSpaceOnUse%27 patternTransform=%27scale%2850%29 translate%28-980 -735%29%27%3E%3Cg fill=%27%23f2f2f2%27%3E%3Cuse href=%27%23s%27 y=%2711%27/%3E%3Cuse href=%27%23s%27 x=%272%27 y=%279%27/%3E%3Cuse href=%27%23s%27 x=%275%27 y=%2712%27/%3E%3Cuse href=%27%23s%27 x=%279%27 y=%274%27/%3E%3Cuse href=%27%23s%27 x=%2712%27 y=%271%27/%3E%3Cuse href=%27%23s%27 x=%2716%27 y=%276%27/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id=%27d%27 width=%2719%27 height=%2717%27 patternUnits=%27userSpaceOnUse%27 patternTransform=%27scale%2850%29 translate%28-980 -735%29%27%3E%3Cg fill=%27%23ffffff%27%3E%3Cuse href=%27%23s%27 y=%279%27/%3E%3Cuse href=%27%23s%27 x=%2716%27 y=%275%27/%3E%3Cuse href=%27%23s%27 x=%2714%27 y=%272%27/%3E%3Cuse href=%27%23s%27 x=%2711%27 y=%2711%27/%3E%3Cuse href=%27%23s%27 x=%276%27 y=%2714%27/%3E%3C/g%3E%3Cg fill=%27%23efefef%27%3E%3Cuse href=%27%23s%27 x=%273%27 y=%2713%27/%3E%3Cuse href=%27%23s%27 x=%279%27 y=%277%27/%3E%3Cuse href=%27%23s%27 x=%2713%27 y=%2710%27/%3E%3Cuse href=%27%23s%27 x=%2715%27 y=%274%27/%3E%3Cuse href=%27%23s%27 x=%2718%27 y=%271%27/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id=%27e%27 width=%2747%27 height=%2753%27 patternUnits=%27userSpaceOnUse%27 patternTransform=%27scale%2850%29 translate%28-980 -735%29%27%3E%3Cg fill=%27%23F60%27%3E%3Cuse href=%27%23s%27 x=%272%27 y=%275%27/%3E%3Cuse href=%27%23s%27 x=%2716%27 y=%2738%27/%3E%3Cuse href=%27%23s%27 x=%2746%27 y=%2742%27/%3E%3Cuse href=%27%23s%27 x=%2729%27 y=%2720%27/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id=%27f%27 width=%2759%27 height=%2771%27 patternUnits=%27userSpaceOnUse%27 patternTransform=%27scale%2850%29 translate%28-980 -735%29%27%3E%3Cg fill=%27%23F60%27%3E%3Cuse href=%27%23s%27 x=%2733%27 y=%2713%27/%3E%3Cuse href=%27%23s%27 x=%2727%27 y=%2754%27/%3E%3Cuse href=%27%23s%27 x=%2755%27 y=%2755%27/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id=%27g%27 width=%27139%27 height=%2797%27 patternUnits=%27userSpaceOnUse%27 patternTransform=%27scale%2850%29 translate%28-980 -735%29%27%3E%3Cg fill=%27%23F60%27%3E%3Cuse href=%27%23s%27 x=%2711%27 y=%278%27/%3E%3Cuse href=%27%23s%27 x=%2751%27 y=%2713%27/%3E%3Cuse href=%27%23s%27 x=%2717%27 y=%2773%27/%3E%3Cuse href=%27%23s%27 x=%2799%27 y=%2757%27/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect fill=%27url%28%23a%29%27 width=%27100%25%27 height=%27100%25%27/%3E%3Crect fill=%27url%28%23b%29%27 width=%27100%25%27 height=%27100%25%27/%3E%3Crect fill=%27url%28%23h%29%27 width=%27100%25%27 height=%27100%25%27/%3E%3Crect fill=%27url%28%23c%29%27 width=%27100%25%27 height=%27100%25%27/%3E%3Crect fill=%27url%28%23d%29%27 width=%27100%25%27 height=%27100%25%27/%3E%3Crect fill=%27url%28%23e%29%27 width=%27100%25%27 height=%27100%25%27/%3E%3Crect fill=%27url%28%23f%29%27 width=%27100%25%27 height=%27100%25%27/%3E%3Crect fill=%27url%28%23g%29%27 width=%27100%25%27 height=%27100%25%27/%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: cover;
}

@media screen and (max-height: 600px) {
  .home-home-center-header.carousel-controls {
    z-index: 100;
  }

  .vendor-title-wrapper {
    height: 0px !important;
    opacity: 0;
  }

  .menu-icon.absolute {
    background: black;
    padding: 2px 10px 10px 10px;
    border-radius: 10%;
    left: 0;
    top: 0;
  }
}

@media screen and (max-width: 768px) {
  body {
  }

  .option-card.selected,
  .option-card:hover {
    color: #10ff38 !important;
    border-color: white !important;
    background: linear-gradient(0deg, rgb(90 47 169), #00000000) !important;
    transform: scale(1) !important;
  }

  .frontend-options-wrapper {
    margin-left: 2% !important;
    width: 50vw !important;
    height: 25vh !important;
  }

  .home-home-bottom-banner .option-card {
    color: white;
  }

  .option-card {
    padding-top: 0px !important;
    border-right: solid #ffffff45 0.5px !important;
    height: 55px !important;
  }

  .option-card.selected,
  .option-card:hover {
    opacity: 75%;
  }

  .home-home-center-content {
    padding: 0px !important;
  }

  .option-card h3 {
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
    display: flex;
    font-size: 8vw !important;
    justify-content: center;
    align-content: center;
    align-items: center;
  }

  .vendor-form-styles {
    padding: 20px;
    max-width: 100%;
    margin: 10px;
    max-height: 70vh;
    overflow: auto;
  }

  .custom-checkbox {
    width: 45px !important;
  }

  .vendor-password-container-styles {
    width: 100% !important;
  }

  .vendor-input-group-styles {
    padding: 8px;
    margin-block: 8px;
  }

  .vendor-input-field-styles {
    width: 75%;
    margin-top: 10px;
  }

  .vendor-button-styles,
  .vendor-submit-button-styles {
    width: 100%;
    padding: 12px;
    font-size: 18px;
  }

  .vendor-heading-styles {
    font-size: 24px;
  }

  .vendor-img-styles {
    width: 12vw;
    height: auto;
    margin-right: 8px;
  }

  .vendor-radio-button-input-styles {
    max-width: 40vw;
  }

  .vendor-social-media-inputs-styles {
    align-items: flex-start;
  }

  .custom-dropdown-input-styles {
    width: 80%;
  }

  .vendor-add-button-styles,
  .vendor-remove-button-styles {
    width: 100%;
  }

  .vendor-show-hide-styles {
    flex-direction: column;
    justify-content: flex-start;
  }

  .custom-checkbox-wrapper {
    width: 100%;
    justify-content: flex-start;
  }

  .time-selection {
    width: 100%;
  }

  .time-selection select {
    width: 100%;
  }

  .custom-date-time-time-picker-container {
    width: 90%;
  }

  .clock-face-consistent-hours {
    font-size: 10px;
  }

  .clock-face-modal-open-close-wrapper.clock-face-modal-show {
    width: 70%;
    margin-left: 15%;
  }

  .vendor-form-header-wrapper {
    width: 100%;
  }

  .vendor-form-header-wrapper > p {
    width: 100% !important;
  }
}

.vendor-form-styles {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: auto;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: linear-gradient(45deg, #ffffff, #ffffff0b);
  margin-bottom: 20px;
  margin-top: 20px;
}

.vendor-input-group-styles {
  display: flex;
  flex-direction: column;
  margin-block: 10px;
  padding: 10px;
  border: solid #3af50012 0.25px;
  border-radius: 2px;
  box-shadow: #8080805c 2px 2px 20px;
}

.vendor-combo-group-styles {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.vendor-input-field-styles {
  padding: 10px;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  max-width: 94%;
  margin-bottom: 8px;
}

.vendor-radio-button-input-styles {
  padding-block: 10px;
  border: #f3f3f3;
  border-style: solid;
  border-radius: 20px;
  max-width: 20vw;
  box-shadow: #f0f8ff8f -4px -2px 18px 11px;
  background: linear-gradient(180deg, #f4f4f4, transparent);
  margin-bottom: 10px;
}

.vendor-password-container-styles {
  position: relative;
}

.vendor-password-toggle-button-styles {
  position: absolute;
  right: 0;
  bottom: 0;
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.3s ease;
}

.vendor-password-toggle-button:hover-styles {
  color: #0056b3;
}

.vendor-button-styles {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.vendor-button:hover-styles {
  background-color: #0056b3;
}

.vendor-social-media-inputs-styles {
  display: flex;
  gap: 10px;
  align-items: center;
}

.password-control-visibility-wrapper {
  border: solid #ddd 1px;
  display: flex;
  border-radius: 6px;
}

.password-input-field-styles {
  border: transparent;
  padding: 10px;
  border-radius: 6px;
  font-size: 16px;
  width: 95%;
}

.vendor-add-button-styles,
.payment-info-back-button {
  background-color: #007bff00;
  color: #333;
  border: none;
  padding: 8px;
  font-size: 12px;
  border-radius: 2px;
  cursor: pointer;
  border: solid black 1px;
  transition: background-color 0.3s ease;
  max-width: 100px;
  min-width: 70px;
}

.vendor-employee-info-wrapper {
  display: flex;
  background-color: #007bff00;
  color: #333;
  border: none;
  padding: 8px;
  font-size: 12px;
  border-radius: 2px;
  border: solid black 1px;
  transition: background-color 0.3s ease;
  max-width: 100px;
  min-width: 70px;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.vendor-employee-info-wrapper.complete {
  color: white;
  border-color: white;
  background: linear-gradient(45deg, rgb(76, 84, 91), #000000a3);
  transform: scale(1.0125);
}

.vendor-employee-info-wrapper > span {
  text-align: center;
}

.vendor-add-button-styles:hover {
  color: white;
  border-color: white;
  background: linear-gradient(45deg, rgb(76, 84, 91), #000000a3);
  transform: scale(1.0125);
}

.vendor-remove-button-styles {
  background-color: #007bff00;
  color: #333;
  border: none;
  padding: 8px;
  font-size: 16px;
  border-radius: 2px;
  cursor: pointer;
  border: solid black 1px;
  transition: background-color 0.3s ease;
  max-width: 20vw;
  min-width: 10vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.vendor-remove-button-styles:hover {
  color: white;
  border-color: white;
  background: linear-gradient(45deg, rgb(121, 8, 8), #bd0808a3);
  transform: scale(1.0125);
}

.vendor-submit-button-styles {
  background-color: #007bff00;
  color: #333;
  border: none;
  padding: 8px;
  font-size: 16px;
  border-radius: 2px;
  cursor: pointer;
  border: solid black 1px;
  transition: background-color 0.3s ease;
  min-width: 10vw;
  width: 100%;
  margin-top: 2vh;
}

.vendor-submit-button-styles:hover {
  color: white;
  border-color: white;
  background: linear-gradient(45deg, rgb(76, 84, 91), #000000a3);
  transform: scale(1.0125);
}

.vendor-heading-styles {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: #333;
}

.vendor-img-styles {
  width: 20px;
  /* Adjust size as needed */
  height: 20px;
  /* Adjust size as needed */
  margin-right: 10px;
  vertical-align: middle;
}

.vendor-option-styles {
  display: flex;
  align-items: center;
}

.vendor-show-hide-styles {
  display: flex;
  justify-content: flex-end;
  padding-block: 5px;
  padding-inline: 7.5px;
  border-radius: 2px;
  border: solid black 0.5px;
  font-size: 14px;
  align-content: center;
  align-items: center;
  flex-direction: row-reverse;
  cursor: pointer;
  margin-left: auto;
  text-align: center;
  max-width: -webkit-min-content;
  max-width: min-content;
}

.vendor-show-hide-styles:hover {
  color: white;
  border-color: white;
  background: linear-gradient(45deg, rgb(76, 84, 91), #000000a3);
  transform: scale(1.0125);
}

.vendor-expansion-wrapper-styles {
  border-color: #98989817;
  border-radius: 4px;
  border-style: solid;
  box-shadow: #f2f1f1 5px 1px 19px 6px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  max-height: 0px;
  margin-bottom: 6vh;
  transition: all 0.5s ease-in-out;
}

.vendor-expansion-wrapper-styles .vendor-show-hide-styles span {
  position: absolute;
  top: -2px;
  right: 0px;
  margin-right: 2px;
  text-shadow: 0px 0px 8px black;
}

.vendor-input-group-styles.vendor-expansion-wrapper-styles {
  max-width: 100%;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}

.vendor-form-header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vendor-form-header-wrapper p {
  display: flex;
  width: 50%;
  align-content: center;
  align-items: center;
  justify-content: center;
  margin-top: -0.5em;
  border: solid black 1px;
  border-radius: 2px;
}

.vendor-employee-pin-wrapper {
  display: inline-flex;
  flex-direction: column;
  height: 100%;
  border-left: inset #456eff 5px;
  border-top-left-radius: 45%;
  border-bottom-left-radius: 20%;
  padding-top: 5px;
  padding-bottom: 5px;
}

.vendor-form-header-wrapper svg {
  height: 28px;
}

.custom-dropdown-input-styles {
  padding: 12px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  width: 27vw;
  cursor: pointer;
}

.custom-dropdown-input-styles:hover {
  background: linear-gradient(332deg, rgb(241 240 240), white);
}

.custom-dropdown-input-styles-wrapper {
  width: 29vw;
  position: relative;
  margin-bottom: 10px;
}

.custom-dropdown-input-styles-wrapper::after {
  content: "▼";
  font-size: 18px;
  color: #c9c8c8;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.password-control-visibility-wrapper:focus-visible,
.password-control-visibility-wrapper:focus,
.vendor-password-container-styles:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

.custom-dropdown-input-styles::placeholder {
  max-width: 24vw;
  font-style: italic;
  font-size: 12px;
}

.custom-dropdown-dropdown-styles {
  position: absolute;
  margin-top: -10px;
  top: 100%;
  left: 0;
  width: 29vw;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 4px;
  z-index: 999;
}

.paypal-selected-div-input {
  width: 27vw;
  padding: 10px;
  margin-top: 8px;
  font-size: 16px;
  border: 1px solid rgb(204, 204, 204);
  border-radius: 4px;
  box-sizing: border-box;
}

.custom-dropdown-dropdown-option {
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
}

.custom-dropdown-dropdown-option:hover {
  background: linear-gradient(332deg, rgb(241 240 240), white);
}

.vendor-payment-change-text {
  -webkit-margin-before: 0em;
          margin-block-start: 0em;
  font-style: italic;
  color: darkslategray;
  font-size: 12px;
}

.vendor-wallet-address-paste-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 16px;
  border: 1px solid rgb(204 204 204 / 50%);
  border-radius: 8px;
  box-sizing: border-box;
  gap: 10px;
  padding: 8px;
}

.vendor-wallet-address-paste-button {
  height: -webkit-min-content;
  height: min-content;
  background: linear-gradient(45deg, #4924ce33, transparent);
  border: solid 0.5px #b9b9b9;
  border-radius: 7px;
  padding-inline: 2px;
  box-shadow: #e8e8e8 -1px 2px 3px 1px;
}

.vendor-wallet-address-paste-button:hover {
  background: linear-gradient(45deg, #6947e6fa, transparent);
  transform: scale(110%);
}

.vendor-submit-button-styles:disabled {
  opacity: 20%;
  cursor: not-allowed !important;
}

.payment-info-back-button {
  max-width: 20px;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
}

.frontend-options-wrapper .vendor-input-group-styles input::placeholder {
  font-style: oblique;
  font-size: 14px;
}

.payment-info-back-button:hover {
  background: linear-gradient(45deg, white, whitesmoke);
}

.manual-signup-edits-info {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: lightslategray;
}

.payment-info-form-bottom-banner-warning-wrapper {
  padding: 10px;
  border-radius: 20px;
  border: solid black 1px;
  width: 80%;
  margin: auto;
  background: linear-gradient(45deg, white, whitesmoke);
}

.business-info-form-bottom-banner-warning-wrapper {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.business-info-form-bottom-banner-warning-wrapper.fade-in {
  opacity: 1;
}

.business-info-form-bottom-banner-warning.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.payment-info-form-bottom-banner-warning {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: red;
}

.success-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f7f7f7;
}

.success-message-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 500px;
  width: 100%;
}

.success-heading {
  font-size: 24px;
  font-weight: bold;
  color: #4caf50;
}

.success-message {
  font-size: 16px;
  color: #333;
  margin-top: 15px;
}

.success-footer {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

.vendor-body-background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.vendor-body-background svg {
  position: relative;
  z-index: -1;
  pointer-events: none;
}

.custom-dropdown-option-wrapper {
  position: relative;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  height: 22px;
}

.home-home-center-header.carousel-controls.header-carousel
  .header-carousel-arrow {
}

.custom-dropdown-option-list {
  position: absolute;
  top: 100%;
  left: 0px;
  right: 0px;
  background-color: white;
  border: 1px solid rgb(204, 204, 204);
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  width: -webkit-min-content;
  width: min-content;
}

.custom-dropdown-option-item {
  display: flex;
  align-items: center;
  padding: 8px;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(221, 221, 221);
}

.custom-dropdown-option-item img {
  border-radius: 2px;
  height: 25px;
  margin-right: 10px;
}

.custom-dropdown-option-item:hover img {
  height: 30px;
  border: solid black 0.5px;
}

.custom-dropdown-option-item:hover {
  background: linear-gradient(239deg, #e5e2e21a, #13c73552);
}

.preview-logo-image-wrapper img {
  height: 48px;
  max-width: 220px;
}

.business-name-logo-preview-wrapper {
  display: flex;
  align-items: center;
  gap: 5vw;
}

/* Custom Time Picker Styles */
.custom-date-time-time-picker {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  border: solid black 0.5px;
  width: 100%;
}

.custom-date-time-time-picker-container {
  display: flex;
  gap: 5px;
  flex-direction: column;
  overflow: auto;
  max-height: 15vh;
  width: 15vw;
  background: white;
}

.custom-date-time-time-input {
  width: 100%;
  padding: 8px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.custom-date-time-time-input:focus {
  border-color: #007bff;
  outline: none;
}

.custom-date-time-hour-input,
.custom-date-time-minute-input {
  width: 60px;
}

.custom-date-time-apply-button {
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.custom-date-time-apply-button:hover {
  background-color: #0056b3;
}

/* Custom Weekday Picker Styles */
.custom-date-time-weekday-picker {
  margin: 20px 0;
}

.custom-date-time-weekdays {
  display: flex;
  flex-direction: row;
  justify-content: center;
  cursor: pointer;
}

.custom-date-time-weekday-option:hover {
  color: white;
  border-color: white;
  background: linear-gradient(45deg, rgb(76, 84, 91), #000000a3);
  transform: scale(0.95);
}

.custom-date-time-weekday-option {
  margin: 5px 0;
  display: flex;
  padding: 2px;
  border: solid black 1px;
  width: 10vw;
  justify-content: center;
}

.custom-date-time-weekday-option.date-time-selected {
  color: white;
  border-color: white;
  background: linear-gradient(45deg, rgb(76, 84, 91), #000000a3);
  transform: scale(0.95);
}

.custom-date-time-checkbox {
}

label {
  margin-left: 8px;
}

.custom-date-time-weekday-wrapper {
  width: 100%;
}

.clock-face {
  opacity: 75%;
  transform: scale(0.9);
}

.clock-face-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clock-face:hover {
  opacity: 100%;
  transform: scale(1);
}

/* Time selection container styling */
.time-selection {
  display: flex;
  justify-content: space-evenly;
  /* Space out the selects */
  width: 100%;
  /* Ensure the selects take full width */
  max-width: 400px;
  /* Limit the maximum width */
  margin-top: 10px;
  margin-bottom: 10px;
  opacity: 0;
  /* Initially hidden */
  visibility: hidden;
  /* Hide it off-screen */
  transition: opacity 0.5s ease, visibility 0.5s ease;
  /* Smooth fade-in effect */
}

/* Add class when select is active (chooseTime is true) */
.time-selection.visible {
  opacity: 1;
  /* Fully visible */
  visibility: visible;
  /* Make it visible */
}

/* Styling for each select dropdown */
.time-selection select {
  width: 30%;
  /* Give each select box some room */
  padding: 10px 15px;
  /* Add padding for spacing inside the select box */
  color: #333;
  /* Dark text for contrast */
  background-color: #fff;
  /* White background for modern appearance */
  border-radius: 8px;
  /* Rounded corners */
  border: 1px solid #ccc;
  /* Light border */
  font-weight: bold;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
  cursor: pointer;
  appearance: none;
  /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s ease;
  /* Smooth transition for hover effect */
}

/* Hover effect for select dropdown */
.time-selection select:hover {
  background: linear-gradient(45deg, rgb(76, 84, 91), #000000a3) !important;
  /* Subtle background change */
  color: white;
  border-color: #888;
  /* Slightly darker border */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  /* Highlight on hover */
}

/* Custom arrow styling for the select box */
.time-selection select::after {
  content: "▼";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #888;
}

/* Focus effect for select dropdown */
.time-selection select:focus {
  outline: none;
  border-color: #5c6bc0;
  /* Border color when focused */
  box-shadow: 0 2px 12px rgba(92, 107, 192, 0.2);
  /* Soft focus shadow */
}

/* General hover effect on time selection div */
.time-selection > div:hover,
.time-selection select:hover {
  background: rgba(128, 128, 128, 0.197);
  /* Slight background color on hover */
  box-shadow: inset #ffffff00 0px 0px 0px 0px;
}

/* Optional: Add a placeholder option for better UX */
.time-selection select option {
  color: #888;
  /* Light color for placeholder */
}

.time-selection select option:disabled {
  font-style: italic;
}

.clock-face-consistent-hours {
  max-width: 100px;
}

.clock-face-consistent-hours.clock-face-pressed {
  color: white;
  border-color: white;
  background: linear-gradient(45deg, rgb(76, 84, 91), #000000a3);
  box-shadow: inset 0px 0px 5px 3px rgb(0 0 0 / 91%);
  cursor: pointer;
  transform: scale(0.875);
}

.clock-face-consistent-hours.clock-face-unpressed {
  background: white;
  color: black;
  transform: scale(0.925);
  border: solid black 1px;
}

.clock-face-consistent-hours.clock-face-unpressed:hover {
  color: white;
  border-color: white;
  background: linear-gradient(45deg, rgb(76, 84, 91), #000000a3);
  box-shadow: inset 0px 0px 5px 3px rgb(0 0 0 / 91%);
  cursor: pointer;
  transform: scale(0.875);
}

.clock-face-consistent-hours.clock-face-pressed:hover {
  background: white;
  color: black;
  transform: scale(0.925);
  border: solid black 1px;
}

.clock-face-consistent-hours {
  font-size: 12px;
  text-align: center;
}

.clock-face-modal-open-close-wrapper.clock-face-modal-show {
  position: fixed;
  bottom: 0px;
  margin-left: 35%;
  width: 85px;
  text-align: center;
  padding: 10px;
  background: linear-gradient(45deg, #383636, #000000ab);
  color: white;
  border-radius: 10px 10px 0px 0px;
  box-shadow: #302b2b99 1px 1px 18px 13px;
  border: solid rgba(139, 138, 138, 0.197) 3px;
  opacity: 1;
  /* Ensure it's fully visible */
  visibility: visible;
  /* Make sure the element is visible */
  transform: translateY(0);
  /* Reset to initial position */
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  /* Apply transition */
}

.clock-face-modal-open-close-wrapper.clock-face-modal-hide {
  opacity: 0;
  /* Fade out */
  visibility: hidden;
  /* Hide element from layout */
  transform: translateY(100%);
  /* Slide it out of view */
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  /* Transition the opacity and position */
}

/* Custom Checkbox Styles */
.custom-checkbox-wrapper {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s ease;
  justify-content: space-between;
  width: 95%;
}

.custom-checkbox-wrapper-wrapper {
  display: flex;
  width: 100% !important;
}

.custom-checkbox-wrapper-wrapper > div {
  display: flex;
}

.custom-checkbox-wrapper-paragraph-descriptor {
  color: #383636;
  font-size: 12px;
  font-style: italic;
}

.custom-checkbox-wrapper-paragraph-descriptor p {
  width: 70%;
  margin-left: auto;
}

.custom-checkbox-input {
  display: none;
  /* Hide the default checkbox */
}

.custom-checkbox {
  width: 45px;
  height: 24px;
  background: linear-gradient(45deg, #383636, #000000ab);
  border-radius: 50px;
  position: relative;
  box-shadow: #302b2b99 1px 1px 10px 2px;
  transition: background-color 0.3s ease;
}

.custom-checkbox-inner {
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.custom-checkbox-input:checked + .custom-checkbox {
  background: linear-gradient(45deg, lightgreen, lightblue);
}

.checkbox-label {
  transition: color 0.3s ease;
  padding-right: 10px;
}

.custom-checkbox-input:checked + .custom-checkbox + .checkbox-label {
  color: #a0d1b7;
}

.password-toggle-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.password-toggle-btn svg {
  width: 24px;
  height: 24px;
  fill: #a8acb1cf;
}

.password-toggle-btn:hover svg {
  fill: #0056b3;
}

.password-toggle-container {
  height: 100%;
  display: flex;
  align-items: center;
}

.password-input-field-styles:focus-visible {
  outline: none;
}

.signup-submission-failure-wrapper {
  display: flex;
  color: red;
  text-align: center;
}

.joint-time-selection {
  justify-content: flex-end;
  padding-block: 5px;
  padding-inline: 7.5px;
  border-radius: 2px;
  border: solid black 0.5px;
  font-size: 14px;
  align-content: center;
  align-items: center;
  flex-direction: row-reverse;
  cursor: pointer;
  text-align: center;
  max-height: 40px;
  max-width: 200px;
  margin-left: 5%;
}

.joint-time-selection-wrapper {
  display: flex;
  max-height: 25vh;
  overflow-y: hidden;
  background: white;
  position: relative;
  z-index: 1;
  border: solid black 1px;
  border-radius: 2px;
}

.joint-time-selection-time {
  overflow-y: auto;
  width: 5vw;
  padding-inline: 1vw;
}

.joint-time-selection:hover {
  border-color: white;
  background: linear-gradient(45deg, rgb(76, 84, 91), #000000a3);
}

.joint-time-selection-time p:hover {
  color: white;
  border-color: white;
  background: linear-gradient(45deg, rgb(76, 84, 91), #000000a3);
  transform: scale(1.0125);
}

.clock-selection-selected,
.payment-info-back-button:hover {
  color: white;
  border-color: white;
  background: linear-gradient(45deg, rgb(76, 84, 91), #000000a3);
  transform: scale(1.0125);
}

/* Apply styles to the scrollbar */
div ::-webkit-scrollbar {
  width: 8px;
  /* Thinner scrollbar */
  height: 8px;
  /* For horizontal scrollbar */
}

/* Style the track (the background area of the scrollbar) */
div ::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  /* Light gray background */
  border-radius: 10px;
  /* Rounded corners */
}

/* Style the thumb (the draggable part of the scrollbar) */
div ::-webkit-scrollbar-thumb {
  background-color: #888;
  /* Darker color for thumb */
  border-radius: 10px;
  /* Rounded corners */
  border: 2px solid #f1f1f1;
  /* Optional: gives a little contrast with the track */
}

/* Style the thumb on hover (when user is interacting with it) */
div ::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* Darker thumb color when hovered */
}

.custom-radio-button-inner-span-checked {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(10px);
  height: calc(10px);
  transform: rotateZ(45deg);
  border-radius: 2%;
  background: linear-gradient(45deg, rgb(154 0 182), rgb(92 111 204), #69e0a6);
}

.vendor-input-radio-button-wrapper {
  padding-block: 10px;
  border: solid rgb(197 195 195 / 76%) 0.5px;
  border-radius: 2px;
  box-shadow: rgba(240, 248, 255, 0.56) -4px -2px 18px 11px;
  margin-bottom: 10px;
}

.radio-button-outline-wrapper {
  box-shadow: rgb(45 78 133 / 20%) 0px 0px 10px 2px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.radio-button-inline-wrapper {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid rgb(9, 34, 55);
  background-color: white;
  display: inline-block;
  position: relative;
  transition: background-color 0.3s, border 0.3s;
  cursor: pointer;
  box-shadow: rgb(216 215 215 / 20%) -5px 5px 10px 1px inset;
  border-style: inset;
  bottom: 2px;
}

.tooltip-container {
  position: relative;
}

.tooltip {
  visibility: visible;
  position: absolute;
  background: linear-gradient(135deg, #333, #33333392);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  bottom: 105%;
  left: 100%;
  transform: translateX(-50%);
  z-index: 1;
  width: 120px;
  opacity: 0;
  transition: opacity 0.3s;
  visibility: hidden;
}

.tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.home-screen-container {
  padding: 20px;
  text-align: center;
}

.options-container {
  padding-right: 5px;
  border-right: solid black 3px;
}

.option-card {
  background-color: #007bff00;
  color: #333;
  border: none;
  padding: 8px;
  font-size: 12px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 5vw;
  width: 80%;
}

.option-card:hover,
.option-card.selected {
  color: white;
  border-color: white;
  background: linear-gradient(45deg, rgb(76, 84, 91), #000000a3);
  transform: scale(1.0125);
}

.option-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.option-card p {
  font-size: 1rem;
  color: #555;
}

.user-settings-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  height: 20px;
  max-width: 20px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.user-settings-icon:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.login-create-account-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
}

.home-home-outer-wrapper {
  display: flex;
  flex-direction: column;
}

/* Top Banner */
.home-home-top-banner {
  position: absolute;
  left: 25px;
  top: 0px;
  height: 150px;
  width: 25vw;
}

.home-home-top-banner h1 {
  margin-top: 25px;
  font-size: 2vw;
  text-align: left;
  color: gray;
}

.home-home-top-banner p {
  font-size: 1.5vw;
  word-wrap: break-word;
  color: gray;
}

/* Main content wrapper (left and center) */
.home-home-main {
  display: flex;
  /* Create a horizontal layout for left and center content */
  flex-grow: 1;
  /* Take up the remaining space */
}

/* Left Banner */
.home-home-left-banner {
  width: 200px;
  /* Set width of the left banner */
  padding: 10px;
  box-sizing: border-box;
  margin-left: 1vw;
}

/* Center Content */
.home-home-center-content {
  flex-grow: 1;
  padding: 20px;
  box-sizing: border-box;
}

.home-home-bottom-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  background-color: #191524;
  color: white;
  z-index: 1000;
  bottom: 0;
  transition: transform 0.3s ease-in-out;
  -webkit-transform: translateZ(0);
  height: 6vh !important;
}

.image-deck-image {
  width: 30px;
  padding-left: 5px;
  padding-right: 5px;
}

.home-home-primary-content {
  display: flex;
  overflow-y: auto;
}

#user-settings-dropdown {
  position: relative;
  width: 125px;
  float: right;
  direction: rtl;
  text-align: right;
  background: white;
  z-index: 10000;
}

#user-settings-dropdown > div {
  padding-inline: 15px;
  padding-block: 5px;
  border-bottom: solid gray 0.5px;
}

#user-settings-dropdown > div:hover {
  color: white;
  border-color: white;
  background: linear-gradient(45deg, rgb(76, 84, 91), #000000a3);
  transform: scale(1.0125);
}

.frontend-options-wrapper.vendor-form-styles {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid black 0.5px;
  width: 50%;
  overflow-x: hidden;
}

.frontend-options-wrapper.vendor-form-styles > div {
  width: 100%;
  margin-bottom: 0px;
}

.frontend-designer-label {
  position: relative;
  margin-right: auto;
  display: inline-block;
  padding-bottom: 5px; /* Space for the underline */
  font-family: sans-serif;
  font-size: 1.1rem;
  color: #333;
  text-decoration: none; /* Remove default underline */
  transition: color 0.3s ease; /* Smooth color transition */
}

.frontend-designer-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #007bff; /* A primary color */
  transform: scaleX(0); /* Initially hide the underline */
  transform-origin: bottom left;
  transition: transform 0.3s ease;
}
.frontend-designer-label:hover {
  color: #007bff;
}

.frontend-designer-label:hover::after {
  transform: scaleX(1);
}

.relative.overflow-hidden.w-full {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.home-home-center-header .relative.overflow-hidden {
  width: 100vw !important;
}

.header-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: solid #b0b0b0;
  color: white;
  border-radius: 4px;
  box-shadow: gray 1px 1px 20px 5px;
  background: linear-gradient(90deg, transparent, black, transparent);
  background-color: #032215;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27100%25%27 height=%27100%25%27 viewBox=%270 0 800 400%27%3E%3Cdefs%3E%3CradialGradient id=%27a%27 cx=%27396%27 cy=%27281%27 r=%27514%27 gradientUnits=%27userSpaceOnUse%27%3E%3Cstop offset=%270%27 stop-color=%27%236649B8%27/%3E%3Cstop offset=%271%27 stop-color=%27%23032215%27/%3E%3C/radialGradient%3E%3ClinearGradient id=%27b%27 gradientUnits=%27userSpaceOnUse%27 x1=%27400%27 y1=%27148%27 x2=%27400%27 y2=%27333%27%3E%3Cstop offset=%270%27 stop-color=%27%2314F195%27 stop-opacity=%270%27/%3E%3Cstop offset=%271%27 stop-color=%27%2314F195%27 stop-opacity=%270.5%27/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill=%27url%28%23a%29%27 width=%27800%27 height=%27400%27/%3E%3Cg fill-opacity=%270.5%27%3E%3Ccircle fill=%27url%28%23b%29%27 cx=%27267.5%27 cy=%2761%27 r=%27300%27/%3E%3Ccircle fill=%27url%28%23b%29%27 cx=%27532.5%27 cy=%2761%27 r=%27300%27/%3E%3Ccircle fill=%27url%28%23b%29%27 cx=%27400%27 cy=%2730%27 r=%27300%27/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: contain;
}

.header-carousel:active {
}

.header-carousel-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.header-carousel-arrow {
  background: none;
  border: none;
  cursor: pointer !important;
  padding: 10px;
  color: white;
}

.header-carousel-arrow:focus {
  outline: none;
}

.header-carousel-left-arrow {
  margin-left: -20px;
}

.header-carousel-right-arrow {
  margin-right: -20px;
}

.header-carousel-header h2 {
  font-size: 24px;
  font-weight: bold;
}

.header-carousel-component {
  padding-top: 20px;
}

.carousel-controls {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .header-carousel-content {
    gap: 10px;
  }

  .header-carousel-header h2 {
    font-size: 18px;
  }

  @keyframes subtleShake {
    0% {
      transform: translateX(0);
    }

    25% {
      transform: translateX(-5px);
    }

    50% {
      transform: translateX(5px);
    }

    75% {
      transform: translateX(-5px);
    }

    100% {
      transform: translateX(0);
    }
  }

  .swipable {
    animation: subtleShake 1s ease-in-out 5;
    transition: transform 0.2s ease;
    overflow: hidden;
  }
  .carousel-controls.header-carousel.swipeable {
    animation: subtleShake 1s ease-in-out 5;
    transition: transform 0.2s ease;
    overflow: hidden;
  }
}

.carousel-items-wrapper {
  display: flex;
  height: 100%;
  width: 100%;
}

.carousel-item {
  scroll-snap-align: start;
  /* Snap each item to the start of the container */
  min-width: 100px;
  /* Adjust based on your desired item size */
  flex-shrink: 0;
  padding: 10px;
}

.item-carousel-controls {
  display: flex;
  justify-content: space-between;
  bottom: 10px;
}

.item-carousel-items-wrapper {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.item-carousel-items-wrapper .vendor-input-group-styles {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.wheel-leader-top {
  top: -60px;
  position: absolute;
  perspective: 1000px;
  width: 200px;
  height: 120px;
  border: 3px solid black;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background: radial-gradient(circle, #f5f5f5, #cccccc);
  transform: rotateX(55deg);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 15px 5px;
  opacity: 0%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  -webkit-clip-path: inset(60px 0px 0px 0px);
          clip-path: inset(60px 0px 0px 0px);
  padding-bottom: 10px;
}

.wheel-leader-top.visible {
  opacity: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.item-carousel-items-wrapper.invisible {
  opacity: 90%;
  transform: scale(1.05);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#root > div {
  position: relative;
  height: 100%;
}

.home-home-center-header .text-center.p-2.rounded {
  font-size: 22px;
  text-align: center;
}

.generic-messaging-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10%;
}

.generic-messaging-wrapper.error * {
  color: red;
}

.tutorial-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.tutorial-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    width: 80%;
    max-width: 800px;
    text-align: center;
}

.tutorial-exit-button {
    display: flex;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff0000, white);
    color: white;
    border: none;
    border-radius: 28%;
    padding: 10px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    box-shadow: #9f6771 -2px 2px 5px 1px;
    border: #35394487 solid 0.5px;
}

.tutorial-exit-button:hover{
    background: #995353;
}

.tutorial-image-container {
    margin-bottom: 20px;
}

.tutorial-image-container img {
    width: 30%;
    border-radius: 8px;
}

.tutorial-button-container {
    margin-top: 10px;
}

.tutorial-navigation-button {
    padding: 10px 20px;
    margin: 0 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.tutorial-link-container {
    margin-top: 20px;
}

.tutorial-paypal-link {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.tutorial-open-button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
/* AppHome.css */

@media screen and (max-width: 768px) {
    .app-home {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        background-color: black;
        padding: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        overflow-x: hidden;
    }

    .vendor-portal,
    .vendor-map,
    .buy,
    .store {
        width: 100% !important;
        margin-left: 0% !important;
        box-shadow: #464545 1px 1px 1px 3px !important;
        height: 23vh !important;
    }

    .vendor-portal,
    .vendor-map,
    .buy,
    .store {
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .menu-icon.absolute{
        position: absolute !important;
    }
    /* Top Section Styling */
    .top-section {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100vh;
    }

    .header {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        background-color: black;
        color: white;
        padding: 10px;
        box-sizing: border-box;
    }
}

.app-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    background-color: black;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow-x: hidden;
}

.top-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: 100vh;
}

.header {
    display: flex;
    justify-content: center;
    width: 100vw !important;
    align-items: center;
    background-color: black;
    color: white;
    padding: 10px;
    box-sizing: border-box;
    height: 75px;
    overflow: hidden;
}

.menu-icon:hover {
    cursor: pointer;
    opacity: 100%;
    transform: scale(1);
    transition: opacity ease-in-out transform ease-in-out;
}

.menu-icon {
    font-size: 24px;
    margin-right: 10px;
    cursor: pointer;
    position: absolute !important;
    left: 10px;
    top: 5px;
    transform-origin: 0px;
    transform: scale(0.95);
    transition: opacity ease-in-out transform ease-in-out;
    z-index: 10;
    opacity: 90%;
}

.menu-icon.absolute{
    height:25px !important;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: #3e2583 1px 1px 20px 20px;
}

@keyframes pictureSwell {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        /* Slight movement to the right */
    }

    100% {
        transform: scale(1);
        /* Return to the original position */
    }
}

.vendor-portal,
.vendor-map,
.buy,
.store {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 35%;
    height: 30vh;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: #ffffff 1px 1px 12px 3px;
    animation: pictureSwell 10s ease-in-out infinite;
}



.vendor-portal,
.vendor-map {
    margin-left: 15%;
}

.vendor-portal:hover::before,
.vendor-map:hover::before,
.buy:hover::before,
.store:hover::before {
    opacity: 1;
}

.vendor-portal,
.vendor-map,
.buy,
.store {
    z-index: 1;
}

.vendor-portal::before {
    background-image: url(/static/media/apphome-1.d17e913d77f9c0d24b97.png);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    /* Or contain, etc. */
    background-position: center;
    opacity: 0.75;
    /* Adjust opacity as needed */
    z-index: -1;
    /* Place the pseudo-element behind the content */
}


.vendor-map::before {
    background-image: url(data:image/jpeg;base64,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);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    /* Or contain, etc. */
    background-position: center;
    opacity: 0.75;
    /* Adjust opacity as needed */
    z-index: -1;
    /* Place the pseudo-element behind the content */
}


.buy::before {
    background-image: url(/static/media/apphome-3.4de4381bec6cc54fcd0a.jpg);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    /* Or contain, etc. */
    background-position: center;
    opacity: 0.75;
    /* Adjust opacity as needed */
    z-index: -1;
    /* Place the pseudo-element behind the content */
}


.store::before {
    background-image: url(/static/media/apphome-4.a3e7438b8825332c7c7d.jpg);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    /* Or contain, etc. */
    background-position: center;
    opacity: 0.65;
    /* Adjust opacity as needed */
    z-index: -1;
    /* Place the pseudo-element behind the content */
}


.vendor-portal-text,
.vendor-map-text,
.buy-text,
.store-text {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 5px;
    -webkit-text-stroke: 0.1px #6c6c6c;
}


.vendor-portal-subtext,
.vendor-map-subtext,
.buy-subtext,
.store-subtext {
    font-size: 18px;
    color: white;
    background: linear-gradient(0deg, #0000004a, transparent);
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
    font-style: oblique;
}

.sol-logo {
    position: absolute;
    right: 75px;
    height: 49px;
    width: 30px;
    top: -3px;
}

.sol-logo svg {
    fill: white;
    width: 75px;
    height: 50px;
}

/* About Us Section Styling */
.about-us-section {
    padding: 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}


.about-us-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}


.about-us-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}


.read-more-button {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}


/* Contact Section Styling */
.contact-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns */
    grid-gap: 20px;
    gap: 20px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}


.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.contact-icon {
    font-size: 30px;
    margin-bottom: 10px;
}


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


/* Font Awesome Icons (Ensure Font Awesome is included in your project) */
.fab {
    font-size: 30px;
    /* Adjust size as needed */
}

.menu-active-wrapper {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 15vw;
    height: 100vh;
    background: white;
    z-index: 100000 !important;
    border-right: solid #6c6c6c 2px;
    pointer-events: auto;
    isolation: isolate;
}

.menu-active-container {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 50%;
}

.menu-item {
    cursor: pointer;
    text-align: center;
    padding-bottom: 10%;
    border-bottom: solid #efefef 0.5px;
}

.menu-item:hover {
    background: #ededed;
}

.menu-item:hover svg {
    transform: scale(1.1)
}

.menu-item svg {
    width: 2em;
    height: 2em;
}

.token-ticker-animate {
    animation-name: ticker;
    animation-play-state: running;
    /* Ensure animation plays when visible */
}

@keyframes ticker {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
        /* Or a value that makes it loop seamlessly */
    }
}


.emphasized-text {
    text-align: center;
    margin-top: 10px;
    font-size: 1.2em;
    animation: fadeInOut 10s infinite;
    font-style: italic;
}


@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    30%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    70%{
        opacity:0
    }
    100% {
        opacity: 0;
    }
}
/* SessionExpiredModal.css */

/* Modal backdrop (overlay) */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  /* Modal window */
  .modal {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
  }
  
  /* Close button */
  .close-button {
    margin-top: 10px;
    background-color: #FF6347;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 5px;
  }
  
  /* Link to reload page */
  .link {
    color: #007BFF;
    text-decoration: none;
    cursor: pointer;
  }
  
.react-resizable {
  position: relative;
}
.react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-origin: content-box;
  box-sizing: border-box;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iNnB4Ij48ZyBvcGFjaXR5PSIwLjMwMiI+PHBhdGggZD0iTSA2IDYgTCAwIDYgTCAwIDQuMiBMIDQgNC4yIEwgNC4yIDQuMiBMIDQuMiAwIEwgNiAwIEwgNiA2IEwgNiA2IFoiIGZpbGw9IiMwMDAwMDAiLz48L2c+PC9zdmc+);
  background-position: bottom right;
  padding: 0 3px 3px 0;
}
.react-resizable-handle-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
  transform: rotate(90deg);
}
.react-resizable-handle-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
}
.react-resizable-handle-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
  transform: rotate(180deg);
}
.react-resizable-handle-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
  transform: rotate(270deg);
}
.react-resizable-handle-w,
.react-resizable-handle-e {
  top: 50%;
  margin-top: -10px;
  cursor: ew-resize;
}
.react-resizable-handle-w {
  left: 0;
  transform: rotate(135deg);
}
.react-resizable-handle-e {
  right: 0;
  transform: rotate(315deg);
}
.react-resizable-handle-n,
.react-resizable-handle-s {
  left: 50%;
  margin-left: -10px;
  cursor: ns-resize;
}
.react-resizable-handle-n {
  top: 0;
  transform: rotate(225deg);
}
.react-resizable-handle-s {
  bottom: 0;
  transform: rotate(45deg);
}
@media screen and (max-height: 600px) {
  .frontend-options-wrapper + .mobile-demo-wrapper {
    margin-top: -20% !important;
    overflow: hidden;
  }

  .mobile-demo-wrapper {
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .mobile-demo-wrapper {
    position: relative;
  }

  .phone-menu-contents > div p{
    margin:0px;
  }

  .phone-outline {
    max-height: -webkit-min-content;
    max-height: min-content;
    width: 25em !important;
    margin-bottom: 5em;
    margin-top: 0.5em;
  }

  .frontend-designer-bn {
    font-size: 5vw !important;
  }

  .frontend-designer-slogan {
    font-size: 3vw !important;
  }

  .phone-menu-contents .vendor-add-button-styles {
    font-size: 1.5em !important;
    max-width: -webkit-fit-content !important;
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
  }

  .phone-abs-order-details > div p {
    font-size: 1.5em !important;
  }

  .phone-menu-contents > div > p > strong {
    font-size: 1.0em !important;
  }

  .mobile-tip-option-demo {
    font-size: 3vw !important;
  }

  .frontend-designer-footer {
    font-size: 3.25vw !important;
  }

  @keyframes slideIndicator {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(-5px); /* Slight movement to the right */
    }
    100% {
      transform: translateX(0); /* Return to the original position */
    }
  }

  .append-existing-phone-button.visible.mobile {
    animation: slideIndicator 1s ease-in-out 2;
  }
}

.phone-outline {
  position: relative;
  width: 30vw;
  max-width: 15em;
  min-width: 5em;
  height: 100vh;
  max-height: 27.5em;
  border-radius: 16px;
  border: solid black 4px;
  text-align: center;
  border-top: solid black 6px;
}

.mobile-demo-wrapper {
  display: flex;
  align-items: center;
  margin-left: auto;
  width: 100%;
  justify-content: center;
}

.mobile-demo-wrapper > div {
}

.phone-menu-contents {
  height: 100%;
  background: url(/static/media/phone-background.e7a9290066bd29fe8897.png);
  background-position: center;
  background-size: cover;
  background-blend-mode: lighten;
  border-radius: 10px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phone-abs-order-details{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5%;
    background: white;
    border-radius: 10px;
    margin-inline: 15%;
    border: 1px solid black;
    font-size: x-small;
    height: 100%;
    overflow-y: auto;
    background: linear-gradient(360deg, #525151, #8c8c8ce0) !important;
    overflow-x: hidden;
    box-shadow: 5px 5px 20px 5px #000000;
}

.group-phone-contents {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 2px calc(15%);
  margin-top: 1px;
  overflow: auto;
  height: 100%;
  width: 95%;
  padding-right: 15px;
}

.group-phone-display-button {
  margin-top: 5px;
  position: relative;
  font-size: 10px;
  border: solid #444444 1px;
  padding: 5px;
  border-radius: 6px;
  display: flex;
  align-content: center;
  align-items: center;
  background: linear-gradient(45deg, #00FFA3, #00ffa275);
  overflow: hidden;
  border: solid white 1px;
}

.group-phone-display-button:active, .group-phone-display-button.active{
  transform: scale(1.1);
}

.group-phone-header {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  width: 100%;
  margin-top: 12px;
  padding-bottom: 5px;
  border-bottom: dashed #000000 0.25px;
}

.append-existing-phone-button {
  position: absolute;
  display: flex;
  align-items: center;
  height: 100%;
  right: -10px;
  padding-right: 2.5px;
  padding-left: 2.5px;
  transition: right 0.5s ease-in-out;
  background-color: red;
  color: white;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-left: solid white 1px;
}

.append-existing-phone-button.visible {
  right: 0px;
  opacity: 1;
  visibility: visible;
  left: 60%;
  width: 150%;
}

.mobile-demo-qr img {
  width: 50%;
  border-radius: 1em;
  box-shadow: #ffffff63 -5px 0px 20px 4px;
  border: solid #dc1fffba 2px;
}

.phone-menu-contents p {
    width: -webkit-max-content;
    width: max-content;
    padding: 0.5em;
    border-radius: 10px;
    border: solid rgb(87, 86, 86) 1px;
    background: black;
}

.mobile-tip-option-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
  font-size: 1vw;
}

.mobile-tip-option-demo span {
  padding: 3px;
  border-radius: 35%;
  border: solid black 0.5px;
  display: flex;
  align-content: center;
  align-items: center;
  cursor: pointer;
  background: black;
  color: white;
  border: 0.5px solid white;
  transform: scale(1);
}

.mobile-tip-option-span-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 8px;
}

.speaker-outline {
  position: absolute;
  margin-left: 25%;
  width: 50%;
  height: 15px;
  background: black;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.power-on-button {
  top: 50px;
  right: -6px;
  height: 20px;
  width: 2px;
  background: black;
  position: absolute;
  border-bottom-right-radius: 1px;
  border-top-right-radius: 1px;
}

.volume-up-button {
  top: 40px;
  left: -6px;
  height: 20px;
  width: 2px;
  background: black;
  position: absolute;
  border-bottom-right-radius: 1px;
  border-top-right-radius: 1px;
}

.volume-down-button {
  top: 75px;
  left: -6px;
  height: 20px;
  width: 2px;
  background: black;
  position: absolute;
  border-bottom-right-radius: 1px;
  border-top-right-radius: 1px;
}

.frontend-order-details-wrapper {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  position:relative;
}

.frontend-order-details-wrapper > p{

}


.frontend-order-details-wrapper > div > p, .frontend-order-details-wrapper > p > strong {
    color: white !important;
}

.phone-menu-contents .group-phone-display-button  p:first-child {
  background:none !important;
  border:transparent;
  color: rgb(255, 255, 255);
  font-weight: bold;
}
.screen-outline{
  box-shadow: #000000a1 5px -5px 20px 0px;
  margin-bottom: 1%;
  height: 100%;
  background: white;
  border-radius: 16px;
}

@media screen and (max-width: 768px) {
  .customization-details-modal.modal {
    margin-left: 1.75vw !important;
    top:11% !important;
  }

  .frontend-options-vendor-input-group-styles {
    width: 37.5vw !important;
    height: 20vh !important;
  }

  .frontend-options-wrapper.vendor-form-styles {
    width: 97.5vw !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    padding: 0px !important;
  }

  .frontend-options-wrapper .frontend-options-vendor-input-group-styles {
    width: 37.5vw !important;
  }

  .frontend-options-wrapper .frontend-options-vendor-input-group-styles input {
    width: 35vw !important;
  }

  .custom-checkbox-wrapper.frontend-designer {
    flex-direction: column !important;
  }

  .custom-checkbox-wrapper {
    flex-direction: column !important;
  }
}

.mobile-frontend-options-wrapper {
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 1.5em;
  gap: 0.15em;
}

.mobile-frontend-designer-label-first {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-custom-checkbox-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-custom-checkbox-wrapper
  > .custom-checkbox-wrapper-wrapper
  .custom-checkbox-wrapper {
  align-items: flex-start !important;
}

.mobile-custom-checkbox-wrapper
  > .custom-checkbox-wrapper-wrapper
  .custom-checkbox-wrapper
  .custom-checkbox {
  margin-left: 1.25em;
}

.mobile-custom-checkbox-wrapper
  > div
  > div
  > .custom-checkbox-wrapper
  > .checkbox-label {
  padding: 0.75em;
}

.mobile-custom-checkbox-wrapper
  > .custom-checkbox-wrapper-wrapper
  + .clickable {
  color: #2378d5;
  cursor: pointer;
}

.mobile-frontend-options-vendor-input-group-styles:not(:first-child) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75em;
}

.mobile-frontend-options-vendor-input-group-styles:first-child {
  padding-bottom: 0.75em;
}

.mobile-frontend-options-vendor-input-group-styles {
  border-bottom: solid #292929 0.5px;
}

.frontend-options-vendor-input-group-styles {
  display: flex;
  flex-direction: column;
  margin-block: 10px;
  padding: 10px;
  border: solid #3af50012 0.25px;
  border-radius: 2px;
  box-shadow: #8080805c 2px 2px 20px;
}

.custom-checkbox-wrapper.frontend-designer > p {
  font-size: 0.75em;
  text-align: end;
  cursor: default;
  font-style: oblique;
}

.custom-checkbox-wrapper.frontend-designer > .clickable {
  cursor: pointer;
  color: blue;
}

.frontend-display-phone-price {
  font-size: 1em !important;
}

.frontend-order-details-wrapper .vendor-add-button-styles span:last-child {
  font-size: 0.5em;
  font-style: italic;
}

.mobile-vendor-input-field-styles {
  padding: 0.25em;
  border: solid #0000005e 1px;
  border-radius: 5px;
  box-shadow: #8080805c 2px 2px 20px;
  outline-color: #292929;
}

.frontend-order-details-wrapper > div > .vendor-add-button-styles {
  z-index: 12;
}

.frontend-designer-bn {
  padding-top: 7.5%;
  font-size: 2vw;
  font-weight: bold;
}

.frontend-designer-slogan {
  font-size: 1vw;
}

.frontend-designer-footer {
  display: flex;
  max-height: 85px;
  justify-content: center;
  align-items: flex-end;
  font-size: 1vw;
  font-style: italic;
}

.customization-details-modal.modal {
  width: 80vw !important;
  margin-left: 6vw;
  position: fixed;
  left: 0px;
  top: 15%;
  z-index: 10001;
}

.customization-details-modal-overlay-wrapper {
  position: relative;
  height: 110vh;
  width: 100vh;
  left: 0px;
  top: 0px;
  z-index: 9999;
  overflow-y: hidden;
}

.customization-details-modal-overlay {
  position: fixed;
  width: 100vw;
  height: 110vh;
  overflow-y: hidden;
  left: 0px;
  top: 0px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
  z-index: 10000;
  cursor: default;
}

.customization-details-modal.modal {
  font-family: "Space Mono", monospace;
  padding: 32px;
  border: 1px solid #eee;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.06);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  letter-spacing: -0.25px;
}

.customization-details-modal.modal ol {
  padding-left: 50px;
}
.customization-details-modal.modal li {
  color: #4f4f4f;
  padding-left: 16px;
  margin-top: 24px;
  position: relative;
  font-size: 16px;
  line-height: 20px;
  text-align: start;

  &:before {
    content: "";
    display: block;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    border: 2px solid #ddd;
    position: absolute;
    top: -12px;
    left: -46px;
  }
}

.customization-details-modal.modal ol > li > strong {
  color: black;
}

strong{
  color:white;
}

ol.alternating-colors {
  li:nth-child(odd):before {
    border-color: #0bad02;
  }
  li:nth-child(even):before {
    border-color: #2378d5;
  }
  display: flex;
  flex-direction: column;
}

.frontend-options-wrapper div {
  width: 100%;
}

.frontend-designer-wrapper {
  display: flex;
  flex-direction: row;
  margin-top: 2%;
  max-width: 100vw;
}

.frontend-options-wrapper {
  height: 100%;
  width: 100%;
}

.frontend-options-wrapper div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.frontend-options-wrapper input {
  width: 14vw;
}

.order-details-wrapper {
  position: absolute;
  width: 100%;
  z-index: 10;
  transition: opacity 3s ease-in-out, visibility 0s 3s;
  bottom: calc(0px + 100%);
}

.order-details-wrapper.show{
  opacity: 1;
  visibility: visible;
}

.order-details-wrapper.hide{
  opacity: 0;
  visibility: collapse;
}

.customizable{
  animation: breathe 5s forwards;
  border-radius: 50%;
}

@keyframes breathe {
  0%{
    scale:1;
    background-color: transparent;
  }
  50%{
    scale:1.5;
    background-color: rgba(218, 255, 213, 0.33);
  }
  100%{
    scale:1;
    background-color: transparent;
  }
}
@media screen and (max-width: 768px) {
  .employee-interface-wrapper {
    display: flex;
    width: 100%;
    gap: 10px;
  }

  .employee-interface-wrapper:first-child {
    margin-left: 2.5px;
  }

  .employee-interface-wrapper:last-child {
    margin-right: 2.5px;
  }

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

  .frontend-designer-wrapper {
    flex-direction: column !important;
  }

  .group {
    width: 45vw !important;
  }
}

.employee-interface-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  background-color: black;
  color: white;
  padding: 2.5em 2em 1.5em 3em;
  box-sizing: border-box;
  height: 85px;
  overflow: hidden;
  border-bottom: solid;
}

.employee-interface-header > img {
  width: 100px;
}

.header > h2 {
  padding-left: 5%;
}

.user-interface,
.customer-facing-wrapper {
  position: absolute;
  background-image: url(/static/media/apphome-4.e7a9290066bd29fe8897.png);
  background-size: cover;
  filter: opacity(0.95);
  height: 100% !important;
  width: 60vw;
  margin-left: 10%;
  margin-top: 1%;
}

.item-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-margin-before: 0em;
          margin-block-start: 0em;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
}

.interface-item {
  color: black;
  border: solid black 1px;
  padding: 5px;
  margin: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
}

.interface-item > p {
  font-size: clamp(16px, 5vw, 16px);
}

.interface-item.selected,
.interface-item:active {
  position: relative;
  background: rgb(71, 71, 71);
  border: solid rgb(255, 255, 255) 1px;
  color: white;
  width: 30vw;
  z-index: 100;
  transform: scale(1.0125);
}

.employee-interface-increment-decrement {
  color: white;
}

.employee-interface-increment-decrement.disabled {
  z-index: -1000;
  opacity: 0;
}

.quantity-controls {
  display: flex;
  align-items: center;
}

.quantity-display {
  padding-right: 1em;
  font-size: 0.75em;
}

.quantity-display > p {
  font-size: 2em;
  -webkit-margin-before: 0px;
          margin-block-start: 0px;
  -webkit-margin-after: 0px;
          margin-block-end: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.add-subtract-controls > div {
  padding: 1em;
  border: solid black 1px;
  margin-bottom: 1px;
  border-radius: 3px;
}

.add-subtract-controls > div:focus,
.add-subtract-controls > div:active {
  animation: addSubtractFadeBack 3s 1;
}

@keyframes addSubtractFadeBack {
  0% {
    background: #000000;
  }
  100% {
    background: transparent;
  }
}

.add-subtract-controls > div:hover {
  background: #000000;
}

.add-subtract-controls {
  justify-content: space-between;
  height: 100%;
}

.add-subtract-controls,
.add-subtract-controls > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.order-total-wrapper-container {
  width: 100vw;
  display: flex;
  justify-content: center;
}

.order-total-wrapper {
  background: linear-gradient(90deg, black, rgb(43, 43, 43));
  border: solid white 1px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  width: 35vw;
  gap: 1em;
  box-shadow: white 1px 1px 10px;
  overflow: hidden;
}

.order-total-wrapper > div {
  display: flex;
  width: 100%;
  overflow: hidden;
  justify-content: space-between;
}

.order-total-wrapper > div.space-between {
  transform: translateX(0%);
  transition: transform 1s ease-in-out;
}

.order-total-wrapper > div.center {
  transform: translateX(25%);
  transition: transform 1s ease-in-out;
}

.order-total-wrapper-container > div > div > button {
  font-size: 40px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #00ffa3, rgb(23, 119, 163));
  color: aliceblue;
  padding-inline: 30px;
  border-left: solid white 2px;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  cursor: pointer;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Transition for opacity and transform */
  transform: translateX(100%); /* Initial off-screen position */
}

.order-total-wrapper-container > div > div > button.show-button {
  opacity: 1;
  transform: translateX(0); /* Move the button to its original position */
}

.order-total-wrapper-container > div > div > button.show-button:hover,
.order-total-wrapper-container > div > div > button.show-button:active {
  background: #00ffa3;
  color: black;
}

.order-total-wrapper > div > button > svg {
  box-shadow: 0px 20px 20px 3px #9c22c6;
  border-radius: 25%;
  fill: #ffffff;
  background: linear-gradient(45deg, black, transparent);
}

.order-total-wrapper > div > button > span {
  font-size: 14px;
}

.customer-facing-wrapper-header {
  display: flex;
  justify-content: space-around;
  border-bottom: solid black 1px;
  background: rgb(0 0 0 / 80%);
  height: 150px;
  color: white;
  align-content: center;
  align-items: center;
}

.customer-facing-body-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 150px);
}
.order-total-wrapper > .space-between h2 {
  text-align: center;
}

.customer-facing-qr-header {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid rgb(255, 255, 255); /* This creates the cursor */
  animation: typing 1s steps(11, end) forwards,
    cursor-blink 0.75s step-end infinite;
  width: 0;
  color: white;
}

.customer-facing-qr-header-still {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid rgb(255, 255, 255); /* This creates the cursor */
  animation: cursor-blink 0.75s step-end infinite;
  width: 100%;
  color: white;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes cursor-blink {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: rgb(255, 255, 255);
  }
}

.customer-facing-wrapper-header > img {
  padding: 5px;
  height: 140px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 15px;
}

.customer-facing-wrapper-header > div {
  text-align: center;
}

.customer-facing-wrapper-header > div > h1 {
  color: white;
  margin: 0.67em 0.67em 0em;
}

.customer-facing-wrapper-header > div > p {
  font-style: oblique;
}

.customer-facing-order-details-wrapper {
  padding: 20px;
}

.customer-facing-wrapper-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 2.5%;
}

.customer-facing-order-details-container,
.tip-option-wrapper,
.customer-facing-confirm-total-button {
  background: linear-gradient(20deg, #000000, #292929e8);
  color: #51bfac;
  font-size: 1.25em;
  font-weight: bold;
  border: solid rgb(255, 255, 255) 2px;
  padding: 15px;
  border-radius: 25px;
  cursor: pointer;
}

.customer-facing-price-confirmation-wrapper {
  display: flex;
  justify-content: center;
}

.customer-facing-confirm-total-button {
  background: linear-gradient(120deg, #00ffa3, rgb(26, 26, 26));
  color: rgb(45, 44, 44);
  display: flex;
  justify-content: center;
}

.customer-facing-order-details-container:hover,
.tip-option-wrapper:hover,
.customer-facing-order-details-container:active,
.tip-option-wrapper:active,
.customer-facing-confirm-total-button:active,
.customer-facing-confirm-total-button:hover {
  background: linear-gradient(20deg, #51bfac, white);
  color: rgb(0, 0, 0);
  border: solid black 2px;
}

.tip-option-wrapper > p {
  margin-block: 0px;
}

.tip-option-wrapper {
  padding: 5px;
}

.custom-tip-option-wrapper {
  position: absolute;
  top: 20%;
  z-index: 100;
}

@keyframes promptOrderDetailsDisplay {
  0% {
    transform: translateY(-100%);
  }
  30% {
    transform: translateY(-100%);
  }
  45% {
    transform: translateY(-50%); /* Slight move down */
  }
  50% {
    transform: translateY(-75%);
  }
  55% {
    transform: translateY(-50%);
  }
  60% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(-100%); /* Return to original position */
  }
}

.customer-facing-order-details-rel {
  height: 250px;
  width: 250px;
  overflow: hidden;
  position: absolute;
  display: flex;
  justify-content: center;
  left: calc(50vw - 125px);
}

.customer-facing-order-details-rel > div {
  border-radius: 15px;
  padding: 5px;
  position: absolute;
  background: linear-gradient(20deg, #51bfac, white);
  color: rgb(0, 0, 0);
  border: solid black 2px;
}

.customer-facing-order-details-abs-startup {
  animation: promptOrderDetailsDisplay 5s ease-in-out infinite;
  will-change: transform;
}

.customer-facing-order-details-abs {
  will-change: transform;
  transform: translateY(-101%);
  transition: transform 1s ease-in-out;
}

.customer-facing-order-details-abs-show {
  transform: translateY(0%);
}

.customer-facing-order-details-rel > div > ul {
  transform: translateX(-12.5%);
}

.customer-facing-order-details-rel > div > ul > li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgb(0, 0, 0);
  list-style-type: decimal;
}

.customer-facing-footer-wrapper {
  color: white;
}

.customer-facing-tip-options-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.customer-facing-tip-options-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 1.5em;
}

.customer-facing-salutation-wrapper {
  display: flex;
  justify-content: center;
  color: white;
  font-style: italic;
  margin-bottom: 3em;
}

.customer-facing-wrapper {
  height: auto !important;
}

.customer-facing-back-button-wrapper > button {
  background: linear-gradient(135deg, #8f00ff, #9000ffb7);
  padding: 5px 15px;
  border-radius: 10px;
  border: solid black 1px;
  margin-left: 2.5px;
}

.customer-facing-back-button-wrapper > button:hover {
  background: linear-gradient(135deg, #8f00ff, #9000ff41);
  padding: 6px 16px;
}

.customer-facing-back-button-wrapper > button svg {
  color: white;
}

.customer-facing-back-button-wrapper > svg {
  color: white;
  height: 2em;
  width: 2em;
}

.pages > .page > .page-header-wrapper > h3 {
  color: white;
  text-align: center;
  font-size: 2em;
}
.user-interface-page-container-wrapper {
  height: 65vh;
}

.user-interface-page-container-wrapper.calculator {
  height: 85vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.pages > .page > .page-header-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  position: relative;
}

.order-summary h3 {
  color: white;
}

.interface-order-summary-wrapper-fixed {
  width: 60vw;
  position: relative;
  bottom: 5vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7.5px;
}

.interface-order-summary-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  padding: 15px;
  border: solid rgba(255, 255, 255, 0.5) 1px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 5px;
  margin-left: 5px;
}
.interface-order-summary-wrapper.receipt {
  max-height: 10em;
  overflow-y: auto;
  margin-right: 7.5px;
}

.interface-order-summary-wrapper.receipt > p {
  color: white;
}

.interface-order-summary-wrapper > .submit-order {
  background: linear-gradient(
    45deg,
    #8b56ff,
    #5820b0
  ); /* Solana purple gradient */
  color: white; /* White text */
  font-size: 18px;
  padding: 12px 30px;
  border: none;
  border-radius: 50px; /* Rounded corners */
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.interface-order-summary-wrapper > .submit-order.clear {
  background: linear-gradient(45deg, #ff5656, #b02220);
}

/* Hover effect */
.interface-order-summary-wrapper > .submit-order:hover {
  transform: translateY(-4px); /* Slight lift on hover */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); /* More pronounced shadow */
}

/* Focus effect */
.interface-order-summary-wrapper > .submit-order:focus {
  outline: none;
  box-shadow: 0 0 8px 2px rgba(139, 86, 255, 0.6); /* Glowing effect */
}

/* Active effect */
.interface-order-summary-wrapper > .submit-order:active {
  transform: translateY(2px); /* Button 'pressed' effect */
}

@media screen and (max-width: 768px) {
  .order-total-wrapper {
    width: 75vw;
    margin-top: 5%;
  }

  .order-total-wrapper > div.space-between {
    transform: translateX(5%);
    transition: transform 1s ease-in-out;
    text-align: center;
  }

  .order-total-wrapper > div.center {
    transform: translateX(25%);
    transition: transform 1s ease-in-out;
    text-align: center;
  }

  .employee-interface-header {
    width: 100vw !important;
  }

  .interface-item > p {
    font-size: clamp(16px, 5vw, 48px);
  }

  .interface-order-summary-wrapper-fixed {
    width: 100vw !important;
  }

  .user-interface,
  .customer-facing-wrapper {
    margin-top: 0%;
    margin-left: 0%;
    width: 100vw;
  }

  .desktop {
    width: 100vw !important;
    position: static !important;
    position: initial !important;
  }

  .interface-item.selected,
  .interface-item:active {
    width: 50vw;
  }
}

/* NumericKeypad.css */
.numeric-keypad {
  display: flex;
  flex-direction: column;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  width: 18rem;
  margin: 0 auto;
}

.keypad-display {
  background-color: white;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 0.375rem;
  text-align: right;
  font-size: 1.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  color:black;
}

.keypad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

.keypad-button {
  font-weight: bold;
  padding: 1rem 0;
  border-radius: 0.375rem;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-button {
  background: #00ffa3;
  margin-top: 0.5rem;
}

.submit-button:hover{
    background-color: #008b58;
}

.digit-button {
  background-color: #e5e7eb;
  color: #1f2937;
}

.digit-button:hover {
  background-color: #d1d5db;
}

.decimal-button {
  background-color: #e5e7eb;
  color: #1f2937;
}

.decimal-button:hover {
  background-color: #d1d5db;
}

.backspace-button {
  background-color: #fee2e2;
  color: #991b1b;
}

.backspace-button:hover {
  background-color: #fecaca;
}

.clear-button {
  background-color: #dbeafe;
  color: #1e40af;
  grid-column: span 2;
  margin-top: 0.5rem;
  font-size: 1.25rem;
}

.clear-button:hover {
  background-color: #bfdbfe;
}

/* General container for the calculator */
.calculator-container {
  width: 60vw;
  max-width: 400px;
  margin: 20px auto;
  border: 2.5px solid #373838;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px 10px rgb(0 0 0 / 50%);
  background-color: #f9f9f9;
  perspective: 1000px;
  perspective-origin: center;
}

/* Style for the display */
.calculator-display {
  background: linear-gradient(90deg, black, rgb(43, 43, 43));
  color: #fff; /* White text */
  font-size: 2rem; /* Larger font size */
  text-align: right; /* Right-align the text */
  padding: 20px; /* Add padding around the text */
  font-family: monospace; /* Monospace font for consistent spacing */
  word-wrap: break-word; /* Break long numbers into multiple lines */
}

/* Keypad styles */
.calculator-keypad {
  display: grid; /* Use grid layout for the keypad */
  grid-template-columns: repeat(
    4,
    1fr
  ); /* 4 columns, each taking equal space */
  grid-gap: 1px;
  gap: 1px; /* Small gap between buttons */
  background-color: #ddd; /* Light gray background */
}

/* Styles for individual buttons */
.calculator-button {
  background: linear-gradient(
    180deg,
    #6b44b4,
    #6b44b480
  ); /* Lighter button background */
  border: none; /* Remove default border */
  font-size: 1.5rem; /* Large font */
  padding: 15px; /* Good touch area size */
  text-align: center; /* Center the text */
  cursor: pointer; /* Change cursor to pointer */
  transition: background-color 0.2s ease; /* Smooth hover effect */
}

.calculator-button:hover {
  background: linear-gradient(
    180deg,
    #411e7d,
    #411e7d
  ); /* Slightly darker background on hover */
}

.calculator-button:active {
  background: linear-gradient(
    180deg,
    #411e7d,
    #411e7d
  ); /* Even darker background when pressed */
}

/* Specific styles for number buttons */
.calculator-button.number {
  background: linear-gradient(180deg, #9fbbc9, #9fbbc980);
}

.calculator-button.number:hover {
  background: linear-gradient(180deg, #9fbbc9, #9fbbc9);
}

/* Styles for operation buttons */
.calculator-button.operation {
  background-color: #eee; /* Different color for operation buttons */
  font-size: 30px;
  color: #cecdcd; /* Darker text */
}

/* Styles for the clear button */
.calculator-button.clear {
  background: #f44336; /* Red background */
  color: white; /* White text */
}

.calculator-button:disabled {
  background: black;
}

.calculator-button.clear:hover {
  background-color: #d32f2f;
}

/* Style for the equals button */
.calculator-button.equals {
  background: #00ffa3; /* Blue background */
  color: white; /* White text */
}

.calculator-button.equals:hover {
  background-color: #1976d2;
}

.calculator-container-wrapper {
  display: flex;
  overflow-y: auto;
}

.expression-wrapper li:nth-child(odd):before {
  border-color: #662fc6;
}

.expression-wrapper li:nth-child(even):before {
  border-color: #00ffa3;
}
.expression-wrapper li:after {
  content: "";
  position: absolute;
  width: 50%;
  transform: translateY(25px) rotate3d(1, 1, 1, 0deg);
  height: 2px;
  background: linear-gradient(45deg, #00ffa3, blueviolet);
  overflow: hidden !important;
  right: 30%;
  border-radius: 50%;
  box-shadow: #ffffff61 0px 7px 20px 2px;
}

.expression-wrapper ul li {
  color: #dfdfdf;
  padding-left: 16px;
  margin-top: 24px;
  position: relative;
  font-size: 16px;
  line-height: 20px;
  text-align: start;
  list-style-type: decimal;

  &:before {
    content: "";
    display: block;
    height: 30px;
    width: 30px;
    border-radius: 5%;
    border: 2px solid #ddd;
    position: absolute;
    top: -6px;
    left: -27px;
  }
}

.expression-list-wrapper {
  background: linear-gradient(90deg, black, rgb(43, 43, 43));
  height: 100%;
  border-bottom-left-radius: 5px;
  box-shadow: white 1px 1px 10px;
  width: 20vw;
  margin-top: 10px;
}

.extension-wrapper-list-container {
  max-height: 35vh;
  overflow-y: auto;
}

@media screen and (max-width: 768px) {
  .calculator-container {
    margin: 10px 5px;
  }

  .expression-list-wrapper {
    width: 35vw;
  }
}

:root {
  --gradient-fill: linear-gradient(45deg, #ff0000, #0000ff);
}

.customer-facing-qr-code-container {
  width: 275px;
  height: 275px;
  margin: auto;
  background-color: rgb(255, 255, 255);
  border-radius: 8px;
  display: block;
  box-shadow: rgb(255 255 255 / 18%) 0px 0px 20px 15px;
  padding: 5px;
  position: relative;
}

.customer-facing-qr-code-container svg{
    border-radius: 10px;
    border: solid rgba(128, 0, 128, 0.123) 0.5px;
}

.customer-facing-qr-code-container svg path:first-of-type {
  fill: black;
}

.customer-facing-qr-code-container svg path:last-of-type {
  fill: white;
}

.centered-qr-logo-image {
    position: absolute;
    top: 37.5%;
    left: 37.5%;
    width: 25%;
    height: 25%;
    object-fit: contain;
    z-index: 1;
    border-radius: 20px;
    box-shadow: rgb(0 0 0 / 25%) -2px 2px 20px 5px;
    perspective: 10000px;
    perspective-origin: center;
}

.home-primary-content-wrapper{
    position:relative;
    height: 100vh;
}
.employee-management-wrapper {
  height: 60vh;
}
.employee-dropdown-container-selection {
  position: absolute;
  height: 1.5em;
  width: 75vw;
  border: solid;
  border-radius: 8px;
}

.employee-dropdown-container {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  min-height: 10vh; 
  position: relative;
}

.employee-dropdown {
  position: relative;
  bottom: -1.75em;
  border: solid;
  width: 75vw;
  max-height: 20vh;
  overflow-y: auto;
}

.employee-dropdown-container-selection::after{
    position: absolute;
    right: 0.5em;
    top: 0.25em;
    height: 10px;
    width: 10px;
    background: linear-gradient(45deg, #0002aba1, #ffffffa3);
    transform: rotate(45deg);
    content: "";
}

.employee-dropdown-container-selection.closed::after{
    border-bottom: solid black 4px;
    border-right: solid black 4px;
}

.employee-dropdown-container-selection.open::after{
    border-top: solid black 4px;
    border-left: solid black 4px;
}

.employee-dropdown-container-selection > p {
    -webkit-margin-before: 0px;
            margin-block-start: 0px;
    -webkit-margin-after: 0px;
            margin-block-end: 0px;
    padding-left: 8px;
}

.employee-dropdown-item {
  display: flex;
  flex-direction: row;
  padding: 8px;
  justify-content: space-between;
  border-bottom: solid black;
  background: linear-gradient(180deg, rgb(234, 234, 234), white);
}

.employee-dropdown-item:first-child {
  background: linear-gradient(180deg, rgb(194, 194, 194), rgb(220, 220, 220));
}

.employee-dropdown-item > p {
  -webkit-margin-before: 0px;
          margin-block-start: 0px;
  -webkit-margin-after: 0px;
          margin-block-end: 0px;
}

.employee-dropdown-item:not(:last-child) {
  border-bottom: solid black 1px;
}

.employee-dropdown.closed {
  opacity: 0;
  z-index: -10;
}
.employee-dropdown.open {
  opacity: 1;
  z-index: 10;
}

@media screen and (max-width: 768px) {
    .modal-content{
        max-width:340px !important;
    }

    .modal-content > div > h2 {
        font-size: 0.85em !important;
    }
    .modal-content > div > p{
        font-size: 0.8em !important;
    }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.logo-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo-wrapper > img {
  width: 75px;
  border-radius: 7.5px;
}

.content-overlay {
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100vw%22%20height%3D%22100vh%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22grad1%22%20x1%3D%220%25%22%20y1%3D%220%25%22%20x2%3D%2250%25%22%20y2%3D%22100%25%22%3E%3Cstop%20offset%3D%220%25%22%20style%3D%22stop-color%3Argb...%22%20opacity%3D%220.4%22%2F%3E%3C%2Fsvg%3E")
    no-repeat center center;
}
.modal-content {
  background: linear-gradient(45deg, rgb(183, 187, 183), rgb(247, 247, 247));
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
  border: solid purple 4px;
  position:relative;
}

.modal-content > div > h2 {
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  font-size: 1.5rem;
  width: 0;
  animation: typing 2.5s forwards;
}

.modal-content > div > p{
  width: 60%;
  margin: auto;
  position: relative;
  z-index: 10;
  background: linear-gradient(45deg, #ffffff, #ececec);
  padding: 5px;
  border-radius: 5px;
}

@keyframes typing {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.button-container {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.button-container button {
  padding: 10px;
  cursor: pointer;
}

.skip-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 10px;
  display: block; /* Ensure it takes full width */
  text-align: center; /* Center the text */
  margin-left: auto;
  color:black
}

.icon {
    position: absolute;
    font-size: 50px;
    animation: moveRandom 15s ease-in-out;
    color:#08197a;
  }
  
  @keyframes moveRandom {
    0% {
      transform: translate(0%, 0%) rotate(0deg) scale(1);
    }
    25% {
      transform: translate(80%, 30%) rotate(45deg) scale(1.2);
    }
    50% {
      transform: translate(30%, 70%) rotate(90deg) scale(0.9);
    }
    75% {
      transform: translate(60%, 20%) rotate(135deg) scale(1.1);
    }
    100% {
      transform: translate(50%, 50%) rotate(180deg) scale(1);
    }
  }
  

/* Add more styles as needed */

/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;
	transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		color-adjust: exact;
		     print-color-adjust: exact;
		}
	}

.marker-icon{
    border-radius: 10px;
    max-width: 50px;
}

.marker-icon > img {
    width: 5vw !important;
    border-radius: 10px;
    border: solid white 1px;
    box-shadow: gray 1px 1px 10px;
    z-index: 0;
}

.marker-icon:active > img, .marker-icon:hover >img{
    width:10vw !important;
    z-index: 10 !important;
    max-width: 125px;
}

.popup-icon-rel{
    height:150px;
    max-width: 150px !important;
    width:150px !important;
    overflow: auto;
}
g > .leaflet-interactive {
    opacity: 0.3;
}

.overflow-control-p, .overflow-control-p.true{
    overflow: hidden;
}

.overflow-control-p.false {
    overflow:auto !important;
}

.map-overlay{
    z-index: 10000;
    top: 10vh;
    position: absolute;
    width: 90vw !important;
    cursor: default;
    margin-left: 5vw;
    box-shadow: 1px 1px 20px 20px gray;
    border-radius: 6px;
    font-family: system-ui;
    font-size: 1.25em;
    background: radial-gradient(#4306d175, black, #4306d175) !important;
}

.map-overlay > .modal {
    background: linear-gradient(90deg, rgb(245, 245, 245), rgba(255, 255, 255, 0.85)) !important;
}

.leaflet-marker-icon, .marker-svg-wrapper{
    background: transparent !important;
    border: transparent !important;
}

.marker-icon.active{
    z-index: 100000 !important;
}

@media screen and (max-width: 768px) {
    .marker-icon > img {
        width: 20vw !important;
        border-radius: 10px;
        border: solid white 1px;
        box-shadow: gray 1px 1px 10px;
    }
    
    .marker-icon:active > img, .marker-icon:hover >img{
        width:40vw !important;
    }
}
.opt-descr {
  height: 25% !important;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.opt-descr > svg {
  width: 140vw !important;
}

.opt-descr p {
    font-size: 1.25rem;
}

.opt-descr strong {
  color: #9c27b0;
}

.sweep-text {
    font-weight: bold;
    font-size: 1.5rem;
    background: linear-gradient(to right, #9c27b000 50%, #9c27b0 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: sweep 4s cubic-bezier(0.14, 0.79, 0.58, 1) forwards infinite;
}
  
  @keyframes sweep {
    0% {
      background-position: 100% 0;
      opacity:0.5;
    }
    100% {
      background-position: 0 0;
      opacity: 1;
    }
  }
  
/* Typography */
.text-sm {
    font-size: 0.875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
  }
  
  .text-xs {
    font-size: 0.75rem; /* 12px */
    line-height: 1rem; /* 16px */
  }
  
  .text-lg {
    font-size: 1.125rem; /* 18px */
    line-height: 1.75rem; /* 28px */
  }
  
  .font-bold {
    font-weight: 700;
  }
  
  .font-semibold {
    font-weight: 600;
  }
  
  .font-medium {
    font-weight: 500;
  }
  
  .font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  }
  
  /* Text Colors */
  .text-gray-700 {
    color: #374151;
  }
  
  .text-gray-600 {
    color: #4B5563;
  }
  
  .text-gray-500 {
    color: #6B7280;
  }
  
  .text-gray-400 {
    color: #9CA3AF;
  }
  
  .text-red-500 {
    color: #EF4444;
  }
  
  .text-green-600 {
    color: #16A34A;
  }
  
  .text-blue-600 {
    color: #2563EB;
  }
  
  /* Background Colors */
  .bg-white {
    background-color: #ffffff;
  }
  
  .bg-gray-50 {
    background-color: #f9fafb;
  }
  
  .bg-red-50 {
    background-color: #fef2f2;
  }
  
  .bg-purple-600 {
    background-color: #9333ea;
  }
  
  .bg-purple-700 {
    background-color: #7e22ce;
  }
  
  .bg-purple-800 {
    background-color: #6b21a8;
  }
  
  .bg-red-600 {
    background-color: #dc2626;
  }
  
  .bg-red-700 {
    background-color: #b91c1c;
  }
  
  .bg-red-800 {
    background-color: #991b1b;
  }
  
  /* Hover & Active */
  .hover\:bg-purple-700:hover {
    background-color: #7e22ce;
  }
  
  .hover\:bg-red-700:hover {
    background-color: #b91c1c;
  }
  
  .active\:bg-purple-800:active {
    background-color: #6b21a8;
  }
  
  .active\:bg-red-800:active {
    background-color: #991b1b;
  }
  
  /* Layout */
  .max-w-md {
    max-width: 22rem; /* 448px */
  }
  
  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  
  .mt-8 {
    margin-top: 2rem;
  }
  
  .mt-4 {
    margin-top: 1rem;
  }
  
  .mt-2 {
    margin-top: 0.5rem;
  }
  
  .mb-4 {
    margin-bottom: 1rem;
  }
  
  .mb-2 {
    margin-bottom: 0.5rem;
  }
  
  .p-6 {
    padding: 1.5rem;
  }
  
  .p-4 {
    padding: 1rem;
  }
  
  .p-3 {
    padding: 0.75rem;
  }
  
  .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  
  /* Border & Radius */
  .border {
    border-width: 1px;
  }
  
  .border-red-200 {
    border-color: #fecaca;
  }
  
  .rounded-lg {
    border-radius: 0.5rem;
  }
  
  /* Utility */
  .shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  }
  
  .w-full {
    width: 100%;
  }
  
  .cursor-not-allowed {
    cursor: not-allowed;
  }
  
  .transition-colors {
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-duration: 150ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .token-list {
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 480px;
    margin: auto;
  }
  
  .token-list-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
  }
  
  .token-list-container {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .token-items {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: box-shadow 0.2s ease, background 0.2s ease;
    border: 1px solid transparent;
  }
  
  .token-items:hover {
    background-color: #f3f4f6;
  }
  
  .token-items.selected {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
    background-color: #eef2ff;
  }
  
  .token-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: contain;
    background: #e5e7eb;
  }
  
  .token-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  
  .token-symbol {
    font-weight: 500;
    color: #111827;
  }
  
  .token-value {
    font-size: 0.875rem;
    color: #6b7280;
  }
  
  .token-placeholder {
    font-style: italic;
    color: #9ca3af;
  }
  
  .token-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 1rem;
  }
  .bg-grayed{
    background: linear-gradient(gray, gray, 180deg);
  }

/*# sourceMappingURL=main.40ce4911.css.map*/