* {
  font-family: 'mabry_proregular';
}

*:focus-visible {
  outline: none;
  outline-color: ;
  outline-style: ;
  outline-width: ;
}

*:focus {
  outline: none;
}

* {
  --pigeon-purple: #8056FC;
  --pigeon-yellow: #FAB924;
  --pigeon-green: #D0DC7E;
  --pigeon-orange: #FC542D;
  --pigeon-pink: #E994C3;
  --pigeon-black: #090909;
  --pigeon-grey: #9F9F9F;
  --pigeon-white: #F2F2F2;
  --pigeon-headers: 23px;
  --pigeon-text: 1em;
  --pigeon-label-text: 22px;
  --pigeon-label-weight: bold;
  --pigeon-validation-text: 13px;
  --pigeon-input-text: 26px;
  --pigeon-button-text: 26px;
  --pigeon-button-weight: bold;
  --pigeon-footer-text: 10px;
  --pigeon-h1-font-size: 25px;
  --pigeon-h2-font-size: 22px;
  --pigeon-h3-font-size: 20px;
  --pigeon-div-text-font-size: 20px;
  --pigeon-span-tags-font-size: 1.2em;
}

.select-step-text,
.select-supplier-text,
.current_list {
  font-size: var(--pigeon-div-text-font-size);
}

.up {
  display: none;
}

html {
  /*  overflow: hidden;*/
}

spacer {
  padding: 10px;
}

body {
  scrollbar-width: none;
  background-color: var(--pigeon-purple);
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-X: clip;
  overflow: auto;
}

/* Header Styling */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 5%;
  margin-bottom: 3%;
}

header div {
  width: 265px;
}

header img {
  text-align: center;
  align-items: center;
  display: initial;
}

header img:first-of-type {
  padding: 0 12%;
  margin-bottom: 2%;
}

header img:last-of-type {
  width: 100%;
}

header h3 {
  font-size: 165%;
  font-family: 'mabry_probold';
  margin-top: 14%;
  color: var(--pigeon-yellow);
}

/* Small Desktop header */
header.header-small div {
  width: 155px;
}

header.header-small div h3 {
  font-size: 100%;
}

.skew-animations {
  transition: transform 2s ease;
  animation: skew-effect 2s infinite alternate;
}

@keyframes skew-effect {
  0% {
    transform: none;
    /* Original position */
  }

  40% {
    transform: skew(-0.02turn, 5deg);
    /* Skewed position */
  }

  60% {
    transform: skew(0.02turn, 5deg);
    /* Skewed position */
  }

  100% {
    transform: none;
    /* Back to original */
  }
}

/*
.burger-menu {
width: 30px;
height: 25px;
display: flex;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
}
*/

.burger-menu span {
  display: block;
  height: 4px;
  background-color: var(--pigeon-white);
  border-radius: 2px;
}

/* Main Content Styling */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}

main #card-container {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin-left: 5vw;
  margin-right: 5vw;
}

main #card-0 {
  height: auto
}

main .right {
  display: flex;
}

form {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

main p.welcome {
  font-family: 'mabry_promedium';
  font-size: 175%;
  letter-spacing: -0.03em;
  line-height: 1.2em;
}

main .welcome span {
  font-family: inherit;
  color: var(--pigeon-purple);
}
main .welcome i {
  color: var(--pigeon-purple);
  font-family: 'mabry_promedium_italic';
}

main .bottom {
  margin-top: auto;
  display: inline-grid;
}

main small {
  text-align: center;
  padding-bottom: 8px;
}

main .bottom small.form-link:first-of-type {
  padding-bottom: 0px;
}

main .bottom small b {
  font-family: 'mabry_probold';
}

main .rgst-top {
  padding-top: 25px;
}

main .card {
  position: absolute;
  width: 100%;
  border-radius: 30px;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateX(20%);
  min-height: 450px;
}

main .home {
  position: relative;
}

main .left {
  flex-direction: row;
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0;
  width: 60px;
  writing-mode: sideways-rl;
  max-height: 310px;
  margin-top: 20px;
}

main .left p:first-of-type {
  margin-left: 60px;
  font-size: 144%;
}

main .left p:last-of-type {
  margin-left: 58px;
  font-size: 91%;
}

.right {
  flex-grow: 1;
  display: none;
  flex-direction: column;
}

p.title {
  margin-top: -10px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;

  padding-left: 12px;
  font-weight: unset;
  font-size: 163%;
  font-family: 'mabry_proregular';
}

.card.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 5;
}

.card.previous {
  opacity: 1;
  transform: translateX(-60px);
  z-index: 4;
}

.card.previous-2 {
  opacity: 1;
  transform: translateX(-120px);
  z-index: 3;
}

.card.previous-3 {
  opacity: 1;
  transform: translateX(-180px);
  z-index: 2;
}

.card-content {
  flex-grow: 1;
  /*  overflow-y: auto;
overflow-x: hidden;*/
  display: flex;
  justify-content: space-between;
}

#card-0 {
  background-color: var(--pigeon-yellow);
  color: var(--pigeon-black);
  /*  animation: slideUp 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;*/
}

/* Adjust visibility and opacity when the card is inactive */
#card-0:not(.active) {
  opacity: 0;
  display: none;
  pointer-events: none;
  /* Prevent interaction */
  transition: opacity 0.5s ease;
}

#card-0 .right {
  /*  padding: 0px 10px 10px 20px;*/
}

#card-1 {
  background-color: var(--pigeon-yellow);
  color: var(--pigeon-black);
}

#card-2 {
  background-color: var(--pigeon-green);
  color: var(--pigeon-black);
}

#card-3 {
  background-color: var(--pigeon-orange);
  color: var(--pigeon-black);
}

#card-4 {
  background-color: var(--pigeon-pink);
  color: var(--pigeon-black);
}

/* Add your Chrome/Safari specific styles here */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  .left {
    transform: rotate(180deg);
    flex-direction: row;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 10px 0px 10px 10px;
    width: 38px;
    writing-mode: vertical-lr;
    max-height: 300px;
  }
}

/* Hidden by default */
.left p {
  margin: 0px;
  font-size: var(--pigeon-headers);
}

.button-container {
  display: inline-flex;

}

main .bottom a {
  width: 100%;
}

main button {
  width: 100%;
  border: none;
  cursor: pointer;
  color: var(--pigeon-white);
  font-family: 'mabry_probold';
  line-height: 2.2em;
}

.back-btn {
  opacity: 0;
  /*transform: translateX(20px);*/
  /* Start 20px to the right */
  pointer-events: none;
  /* Prevent interaction when invisible */
  /* transition: opacity 0.5s ease, transform 0.5s ease;*/
  /* Smooth transition for both opacity and position */
  /*float: left;*/
  position: absolute;
  margin-left: -13px;
}

.active .back-btn {
  opacity: 1;
  /*transform: translateX(0);*/
  /* Slide back to original position */
  cursor: pointer;
  pointer-events: fill;
  /* Enable interaction when visible */
  /*transition: opacity 0.5s ease, transform 0.5s ease;*/
  z-index: 5;
/*Chris*/
top: 15px;
}

/* Add a delay to pointer-events so it becomes non-clickable after the animation */
.back-btn:not(.active) {
  /*pointer-events: none;*/
  /* Disable interaction smoothly */
}

.next-btn {
  background-color: var(--pigeon-black);
  color: var(--pigeon-white);
  font-weight: var(--pigeon-button-weight);
  font-size: var(--pigeon-button-text);
  border-radius: 30px;
}

.next-btn:hover {
  transform: scale(1.01);
}

.next-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Error message styling */
.error-message {
  color: var(--pigeon-white);
  font-size: 77%;
  margin: 0;
  float: right;
  margin-top: 1px;
}

label,
.select-step-text,
.select-supplier-text,
.current_list {
  display: block;
  font-family: 'mabry_probold';
  font-size: 106%;
  line-height: 1em;
  padding: 25px 13px 9px 13px;
}

label.label_first {
  padding-top: 12px;
}

input,
select {
  border-radius: 15px;
  padding: 16px 13px;
  border-style: none;
  background-color: var(--pigeon-white);
  width: 100%;
  font-family: 'mabry_proregular';
  font-size: 106%;
  appearance: none;
}

select {
  cursor: pointer;
}

input[type="text"] {}

input[type="password"]:not(:placeholder-shown) {
  font-family: Verdana;
}

.input-hide {
  display: none;
}

.input-show {
  display: block;
}

.grey {
  color: var(--pigeon-grey);
}

.eye-icon {
  float: right;
  padding-right: 13px;
  margin-top: -32px;
  position: relative;
  font-size: 18px;
  color: #8b8b8b;
  cursor: pointer;
}

.input-containere {
  position: relative;
}

.input-containere svg {
  position: absolute;
  right: 10px;
  top: 65px;
}

.input-containere .clickable {
  cursor: pointer;
}

.input-containere .hidden {
  display: none;
}

.error-message {
  /*color: #FFD700;
  font-size: 0.8em;
  margin-top: 5px;*/
}

.black {
  color: color: var(--pigeon-black);;
}

/* Footer Styling */
footer {
  color: var(--pigeon-white);
  text-align: center;
  padding: 5px 0;
  font-size: 75%;
}

.burger-menu {
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  top: 50px;
  right: 50px;
  position: absolute;

}

.next-btn {
  margin-top: auto;
}

.header_cards,
h2.card_title_mobile {
  float: left;
  padding-left: 12px;
  font-weight: unset;
  font-size: var(--pigeon-h2-font-size);
  font-size: 163%;
  font-family: 'mabry_proregular';
}

header h1 {
  padding: 20px;
}

#card-5 {
  background-color: var(--pigeon-yellow);
  color: var(--pigeon-black);
}

/* Add animation to slide the card up from below */
@keyframes slideUp {
  from {
    transform: translateX(30%);
    /* Start from below the viewport */
    opacity: 0;
    /* Start invisible */
  }
  to {
    transform: translateX(0);
    /* End in place */
    opacity: 1;
    /* Fully visible */
  }
}

.social-links {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
/*CHRIS*/
padding-top: 30px;
}

.social-links__a {
  height: 60px;
  width: 60px;
  text-align: center;
  margin: 10px 20px;
  background: var(--pigeon-white);
  border-radius: 50%;
  display: inline-block;
  text-decoration: none;
  position: relative;
  transition: background 0.3s ease;
}

.social-links__a:before {
  content: '';
  position: absolute;
  height: 30px;
  width: 30px;
  background-size: cover;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

.social-links__a span {
  color: var(--pigeon-white);
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 75%;
}

.social-links__a.social-links--viber:hover {
  background: var(--pigeon-black);
  color: var(--pigeon-black);
  /* This changes the text color for links or other elements inside the anchor */
}

.social-links__a.social-links--viber:hover span {
  color: var(--pigeon-black);
  /* This changes the color of the span text */
}

/* Hover effect: Change background and text color to black for Link */
.social-links__a.social-links--link:hover {
  background: var(--pigeon-black);
}

.social-links__a.social-links--link:hover span {
  color: var(--pigeon-black);
}

/* Hover effect: Change background and text color to black for WhatsApp */
.social-links__a.social-links--whatsapp:hover {
  background: var(--pigeon-black);
}

.social-links__a.social-links--whatsapp:hover span {
  color: var(--pigeon-black);
}

/* Hover effect: Change background to black */
.social-links__a.social-links--whatsapp:hover,
.social-links__a.social-links--viber:hover,
.social-links__a.social-links--link:hover,
.social-links__a.social-links--email:hover {
  background: var(--pigeon-black);
}

/* Clicked Effect: Keep black background and add checkmark without circle */
.social-links__a.clicked {
  background: var(--pigeon-black);
}

.social-links__a.clicked:before {
  content: '';
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMCAxMCIgd2lkdGg9IjEwIiBoZWlnaHQ9IjEwIj48cGF0aCBkPSJNMyA1IEw0LjUgNi41IEw3IDQiIHN0eWxlPSJmaWxsOm5vbmU7IHN0cm9rZTojZmZmOyBzdHJva2Utd2lkdGg6MC41OyBzdHJva2UtbGluZWNhcDpyb3VuZDsgc3Ryb2tlLWxpbmVqb2luOnJvdW5kOyI+PC9wYXRoPjwvc3ZnPg==') no-repeat center center;
  background-size: 40px 40px;
}

/* Social Links Backgrounds */
.social-links--whatsapp:before {
  background-image: url('https://new.altercommunity.com/img/share_whatsapp.svg');
  width: 32px;
  height: 34px;
}

.social-links--viber:before {
  background-image: url('https://new.altercommunity.com/img/share_viber.svg');
  width: 31px;
  height: 35px;
}

.social-links--email:before {
  background-image: url('https://new.altercommunity.com/img/share_link.svg');
  
}

.social-links--link:before {
  background-image: url('https://new.altercommunity.com/img/share_link.svg');
}

#horizontal-padding {
  padding: 30px 0 10px;
}

.horizontal-line-or {
  display: flex;
  align-items: center;
  color: var(--pigeon-black);
  font-size: 108%;
  /*margin: auto;*/
  width: 100%;
  justify-content: center;
}

.horizontal-line-or::before,
.horizontal-line-or::after {
  content: '';
  /*flex: 1;*/
  border-bottom: 1px solid var(--pigeon-black);
  width: 30px;
}

.horizontal-line-or::before {
  margin-right: 20px;
}

.horizontal-line-or::after {
  margin-left: 20px;
}

.tagify {
  display: block;
  background-color: aliceblue;
  border-radius: 10px;
  width: -moz-available;
  width: 100%;
}

.input-container {
  margin-bottom: 15px;
  width: 100%;
}

#product-section {
  display: inline-grid;
}

.container {
  width: 500px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.input-container {
  margin-bottom: 15px;
}

.tag {
  font-size: 1.1em;
}

.tag-container .tag {
  display: inline-block;
  background: none;
  color: var(--pigeon-black);
  border: solid 1.5px;
  cursor: pointer;
  border-radius: 15px;
  margin-top: 9px;
  margin-right: 5px;
  font-size: 119%;
  font-family: 'mabry_proregular';
  padding: 3px 14px;
}

.select-supplier-text {
  padding-bottom: 6px;
}

.tag:hover {
  background: var(--pigeon-black);
  color: var(--pigeon-white);
  border-color: var(--pigeon-black);
}

#order-list {
  /*scrollbar-width: none;
  max-height: 500px;
  margin-bottom: auto;
  overflow: auto;*/
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 7px;
}

#order-list li {
  /*margin-bottom: 5px;*/
  /*no numbering */
}

.input-instruction {
  margin-left: 13px;
  opacity: 0.3;
  font-size: 81%;
  color: var(--pigeon-black);
  margin-top: 2px;
}

/* Styles for the Action buttons */
.action-buttons {
  margin-top: 10px;
}

.action-buttons button {
  padding: 8px 12px;
  margin-right: 10px;
  color: var(--pigeon-white);
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

#view-orders-btn {
  background-color: var(--pigeon-black);
}

#view-orders-btn:hover {
  background-color: var(--pigeon-black);
}

#reset-btn {
  background-color: #dc3545;
}

#reset-btn:hover {
  background-color: #c82333;
}

.section-next-btn,
#next-btn {
  background-color: var(--pigeon-black);
}

.section-next-btn:hover,
#next-btn:hover {
  background-color: var(--pigeon-black);
}

/* Style for the Skip tag */
.skip-tag {
  background: #dc3545;
  color: var(--pigeon-white);
}

.skip-tag:hover {
  background: #c82333;
}

/* Step Content Styles */
.step-content {
  display: none;
  /* Hide all steps by default */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.step-content.active {
  display: block;
  /* Show the active step */
  opacity: 1;
  transform: translateY(0);
}

#step-tags {
  display: inline;
}

/* Tags Container within each step */
.tags-container .tag {
  margin: 3px;
}

/* Styles for the Delete Order and Quantity Adjustment buttons */
.delete-order-btn,
.increase-qty-btn,
.decrease-qty-btn {
  padding: 2px 6px;
  color: var(--pigeon-white);
  border: none;
  cursor: pointer;
  font-size: 12px;
  margin-left: 5px;
  border-radius: 3px;
}

.delete-order-btn {
  background-color: #dc3545;
}

.delete-order-btn:hover {
  background-color: #c82333;
}

.increase-qty-btn {
  background-color: #28a745;
}

.increase-qty-btn:hover {
  background-color: #218838;
}

.decrease-qty-btn {
  background-color: #ffc107;
  color: #212529;
}

.decrease-qty-btn:hover {
  background-color: #e0a800;
}

.item-card {
  border: 2px solid var(--pigeon-black);
  border-radius: 15px;
  margin-bottom: 15px;
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 15px;
}

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

.item-number {
  font-size: 82%;
  position: absolute;
  background: var(--pigeon-green);
  display: block;
  width: 23px;
  text-align: center;
  margin-left: 2px;
  margin-top: -21px;
}

.item-name {
  font-size: 150%;
  font-family: 'mabry_promedium';
}

.item-details {
  display: flex;
  align-items: center;
  font-family: 'mabry_promedium';
  font-size: 106%;
}

.item-details div {
  font-family: inherit;
  line-height: 1em;
}

.item-details h6 {
  font-family: 'mabry_proregular';
  font-size: 62%;
  font-weight: unset;
  opacity: 0.5;
}

.item-notes {
  /*font-size: 14px;*/
  padding-left: 30px;
}

.item-units {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0px;
  margin-right: 5px;
}

.item-units div {
  font-family: 'mabry_proregular';
  font-size: 62%;
  font-weight: unset;
  opacity: 0.5;
  position: absolute;
  margin-top: -35px;
  margin-right: 5px;
}

.unit-button {
  /*background: none;
  border: 2px solid var(--pigeon-black);
  border-radius: 50%;
  padding: 5px 10px;
  font-size: 16px;
  cursor: pointer;
  margin: 0 5px;*/
  background: none;
  width: 20px;
  height: 20px;
  display: block;
  padding: 0;
  margin: 0 5px;
}

.item-units .minus {
  background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%229%22%20stroke%3D%22%23090909%22%20stroke-width%3D%221.5%22%2F%3E%3Cline%20x1%3D%2214.4999%22%20y1%3D%2210.0001%22%20x2%3D%225.4999%22%20y2%3D%2210.0001%22%20stroke%3D%22%23090909%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E');
}

.item-units .plus {
  background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%229%22%20stroke%3D%22%23090909%22%20stroke-width%3D%221.5%22%2F%3E%3Cline%20x1%3D%2210.0001%22%20y1%3D%225.5001%22%20x2%3D%2210.0001%22%20y2%3D%2214.5001%22%20stroke%3D%22%23090909%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%2F%3E%3Cline%20x1%3D%2214.4999%22%20y1%3D%2210.0001%22%20x2%3D%225.4999%22%20y2%3D%2210.0001%22%20stroke%3D%22%23090909%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E');
}

.item-units .minus:hover {
  background: none;
  background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%229%22%20fill%3D%22%23090909%22%20stroke%3D%22%23090909%22%20stroke-width%3D%221.5%22%2F%3E%3Cline%20x1%3D%2214.4999%22%20y1%3D%2210.0001%22%20x2%3D%225.4999%22%20y2%3D%2210.0001%22%20stroke%3D%22%23F2F2F2%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E');
}

.item-units .plus:hover {
  background: none;
  background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%229%22%20fill%3D%22%23090909%22%20stroke%3D%22%23090909%22%20stroke-width%3D%221.5%22%2F%3E%3Cline%20x1%3D%2210.0001%22%20y1%3D%225.5001%22%20x2%3D%2210.0001%22%20y2%3D%2214.5001%22%20stroke%3D%22%23F2F2F2%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%2F%3E%3Cline%20x1%3D%2214.4999%22%20y1%3D%2210.0001%22%20x2%3D%225.4999%22%20y2%3D%2210.0001%22%20stroke%3D%22%23F2F2F2%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E');
}

.item-units span {
  font-size: 100%;
  font-family: 'mabry_promedium';
}

/* Delete Button */
.delete-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.delete-button:hover {
  color: red;
}

.card_title_mobile {
/*  display: none;*/
}

.sidenav {
  height: 100%;
  width: 30vw;
  /* Set width to 80% of the viewport width */
  position: fixed;
  top: 0;
  right: -30vw;
  /* Initially place the panel off-screen */
  background-color: #090909;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 100;
  text-align: left;
  padding-left: 25px;
}

.sidenav a {
  text-decoration: none;
  font-size: 170%;
  color: var(--pigeon-white);
  display: inherit;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  left: 25px;
  /* Close button remains on the left side of the panel */
  font-size: 36px;
  margin-left: 0;
  color: #818181;
}

#main {
  padding: 16px;
  transition: margin-right .3s;
}

#emailForm {
  flex-grow: unset;
}

.order-card {
  border: 2px solid var(--pigeon-black);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
}

.order-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.order-number {
  font-size: 20px;
  position: absolute;
  top: -15px;
  background: var(--pigeon-green);
  border-radius: 50%;
  padding: 5px 10px;
}

.order-name {
  font-size: 22px;
  font-weight: bold;
}

.order-details {
  display: flex;

  align-items: center;
}

.order-notes {
  font-size: 14px;
  padding-left: 30px;
  text-align: start;
}

.order-units {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 0px;
}

.order-button {
  background: none;
  /* border: 2px solid var(--pigeon-black);*/
  border-radius: 50%;
  padding: 5px 10px;
  font-size: 16px;
  cursor: pointer;
  margin: 0 5px;
}

.order-button:hover {
  background-color: #f0f0f0;
}

.filter-span {
  color: var(--pigeon-white);
  background-color: var(--pigeon-black);
  border-radius: 30px;
  margin-top: 5px;
  padding: 8px;
  display: inline-block;
}

#profile-link {
  color: var(--pigeon-purple);
}

#history-link {
  color: var(--pigeon-green);
}

#supplierFilter {
  padding: 5px;
  margin: 0px 25px;
}

.history_container {
  width: 70vw;
  margin: 20px auto;
  padding: 30px;
}

#history_contents {
  background-color: var(--pigeon-white);
  border-radius: 30px;
}

.logout-container {
  text-align: center;
  margin-top: 50px;
  color: var(--pigeon-white);
}

.logout-buttons {
  margin-top: 20px;
}

.logout-buttons button {
  padding: 10px 20px;
  font-size: 16px;
  margin: 0 10px;
  cursor: pointer;
}

.confirm-btn {
  background-color: #d9534f;
  color: var(--pigeon-white);
  border: none;
}

.cancel-btn {
  background-color: #5bc0de;
  color: var(--pigeon-white);
  border: none;
}

#supplier_name,
#delivery_adress,
#list_count {
  /*font-size: var(--pigeon-div-text-font-size);
  text-overflow: ellipsis;
  max-width: 50px;
  overflow: hidden;
  white-space: nowrap;
  padding-top: 20px;*/
}

/* Chris */
#delivery-section,
#delivery-details{
display: contents;
}

.city-zipcode-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.city-field, .zipcode-field {
  flex: 1;
}
/* End Chris */

.current_list {
  display: none;
}

#success-message {
  padding: 10px;
  background-color: #e0ffe0;
  border: 1px solid #00b300;
  border-radius: 5px;
  z-index: 100;
  position: absolute;
}

#success-message.success-hide {
  display: none;
  font-size: 1.2em;
  margin-top: 20px;
  color: green;
}

#mobile_up {
  display: none;
}

#message {
  font-size: 110%;
  color: var(--pigeon-purple);
  font-family: 'mabry_promedium';
  opacity: 1;
}

.modal {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0);
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 1000;
            }
            .modal-content {
                background: white;
                padding: 20px;
                border-radius: 8px;
                text-align: center;
                max-width: 400px;
                width: 100%;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0);
            }
            .modal-buttons button {
                margin: 10px;
                padding: 10px 20px;
                border: none;
                background: var(--pigeon-black);
                color: white;
                border-radius: 5px;
                cursor: pointer;
            }
            .modal-buttons button:hover {
                background: var(--pigeon-white);
				color: var(--pigeon-black);
            }
