#form2 {
        display: none;
    }

.card {
  color: white;
  padding: .2rem;
  cursor: pointer;
}

.cards {
    max-width: 2400px;
    margin: 0 auto;
    display: grid;
    gap: 0.2rem;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
}

.item-name {
    color: black; /* Styles for black text color */
}

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

    .quantity-control {
        width: 30px;
        height: 30px;
        margin: 0 5px;
        cursor: pointer;
        border: 1px solid white;
        background-color: black;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .quantity-control[data-action="decrease"] {
        float: left;
    }

    .quantity-control[data-action="increase"] {
        float: right;
    }

    .quantity {
        display: inline-block;
        margin: 0 10px;
        font-size: 16px;
        color: black;
    }

.price {
  text-decoration: line-through;
  text-decoration-color: red; /* This will make only the line through red */
  color: white; /* Text color */
  font-size: 1em;
}

span {
  color: white;
}

#countdown {
  /* Add your styles for the countdown timer */
  color: red;
}

/* New styles for smaller screens (e.g., mobile devices) */
@media (max-width: 767px) {
    .cardscontainer {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: flex-start; /* Align the container to the top */
        height: 100vh;
    }

    .cardscenter {
        align-self: flex-start; /* Align the cardscenter to the top */
    }

    .cards {
        grid-template-columns: repeat(3, minmax(110px, 1fr)); /* Display 3 items per row on smaller screens */
        margin: 0 auto;
    }
}

.cards1 {
  max-width: 2400px;
  margin: 0 auto;
  display: grid;
  gap: .2rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Change minmax values */
}

.cards2 {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: .2rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Change minmax values */
}

.floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 2;
}

.floating-cart i {
    font-size: 34px;
    margin-right: 1px;
}

.cart-content {
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.cart-item {
    padding: 5px;
    border-bottom: 1px solid #eee;
}

.blink {
    animation: blinker 2.5s linear infinite;
    color: green;
    font-size: 1.2rem;
    font-family: sans-serif;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.school {
  display: flex;
  justify-content: center;
}

input[type="file"] {
    color: white;
}

.success-message {
    color: white;
}

.imglogo {
  width: auto;
  height: 75px;
  padding-left: 20px;
}

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

.image-container {
    max-width: 150px; /* Set the max-width on the container */
}

.image {
    max-width: 150px; /* Allow the image to take up the full width of the container */
    height: auto; /* Maintain aspect ratio */
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
}

.countdown {
            font-size: 1.8rem;
            font-weight: bold;
            color: red;
        }

.hidden {
  display: none;
}

svg {
  width: 20px;
  height: 20px;
  margin-right: 7px;
}

button, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: capitalize;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 4px;
  border: 1px solid #ddd;
  cursor: pointer;
}

button:hover, .button:hover {
  border-color: #cdd;
}

.share-button, .copy-link {
  padding-left: 30px;
  padding-right: 30px;
}

.share-dialog {
  display: none;
  width: 95%;
  max-width: 500px;
  box-shadow: 0 8px 16px rgba(0,0,0,.15);
  z-index: -1;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 4px;
  background-color: #fff;
}

.share-dialog.is-open {
  display: block;
  z-index: 2;
}

.targets {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-bottom: 20px;
}

.close-button {
  background-color: transparent;
  border: none;
  padding: 0;
}

.close-button svg {
  margin-right: 0;
}

.link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 4px;
  background-color: #eee;
}

.shae-url {
  margin-right: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.circle{
    border-radius:50%!important;
    width: 80px;
    height: 85px;
}

#mapOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
}
        
#closeMapBtn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: black;
  cursor: pointer;
}

#sharerOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 1000;
}
        
#closeSharerBtn {
  position: absolute;
  top: 10px;
  right: 5px;
  color: white;
  cursor: pointer;
}
        
.timer {
  background-color: red;
  border: none;
  color: white;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  border-radius: 5px;
}

@media (max-width: 450px) {
    .countdown {
    font-size: 24px;
     }
}

@media (max-width: 450px) {
    .timer {
    font-size: 30px;
     }
}

.open {
  background-color: green;
}
.closed {
background-color: red;
}

.fas {
    font-size: 40px;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
}

.whatsappButton {
    cursor: pointer;
    padding-left: 10px;
}

.sharerButton {
    cursor: pointer;
    padding-right: 10px;
}

img {
  padding-top: 5px;
}

.img-responsive {
  height: 100vh;
  max-width: 100%;
  position: relative;
   z-index: -1;
}

.img-right {
    float: right;
    padding-right: 10%;
    padding-top: 20px;
}

.caption {
    display: block;
}

.total {
    display: inline;
    font-size: 40px;
    color: white;
}

form {
    display: inline-block;
    max-width: 450px;
    margin: auto;
}

#drop {
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 450px;
  margin: auto;
}

#leftbox {
    float: left;
    width: 35%;
}

#righttext {
    padding-left: 20px;
    font-size: 25px;
    color: yellow;
}

#middlebox{
    position: relative;
    float: left;
    width: 30%;
}

#middletext {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: red;
    font-weight: bold;
}

#rightbox {
    float:right;
    width: 35%;
    font-size: 25px;
    color: white;
    padding-bottom: 20px;
}

#lefttext {
    padding-right: 50px;
    padding-top: 100px;
    font-size: 25px;
    color: yellow;
}

h1 {
    display: inline;
    font-size: 30px;
    color: white;
    margin-block-start: 0.3em;
    margin-block-end: 0.3em;
}

@media (max-width: 450px) {
    h1 {
    display: inline;
    font-size: 20px;
    color: white;
    margin-block-start: 0.3em;
    margin-block-end: 0.3em;
     }
}

h2 {
    font-size: 15px;
}

h3 {
    font-size: 25px;
    color: white;
    margin-block-start: .4em;
    margin-block-end: .4em;
}

h4 {
    display: inline;
    font-size: 15px;
    color: white;
}

h5 {
    font-size: 18px;
    color: white;
}

h6 {
    display: inline;
    font-size: 20px;
    color: red;
}

h7 {
    color: white;
    font-size: 20px;
    vertical-align: 10px;
    display: inline;
}

h8 {
    color: yellow;
    font-size: 20px;
    font-weight: bold;
    display: inline;
}

a {
  color: white;
}

p {
    color: white;
}

li {
  list-style: disc;    
  text-align: left;
  color: white;
}

.fa:before {
    display: inline-block;
    font: normal normal normal 50px/1 FontAwesome;
    font-size: 50px;
}

.head {
    color: white;
    font-size: 40px;
}

@media screen and (max-width : 550px)
{
  .header
  {
    padding: 1 0 1 0;
  }
}

body {
  font-family: -apple-system,BlinkMacSystemFont,San Francisco,Helvetica Neue,Helvetica,Ubuntu,Roboto,Noto,Segoe UI,Arial,sans-serif;
  margin-top: 120px;
  background-image: url('<?php echo $imageURL; ?>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;  /* Center items horizontally */
    align-items: center;
    padding: 10px;
}

#footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.container {
  display: grid;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.divalign {
    display: flex;
    text-align: center;
}

.modal-window div:not(:last-of-type) {
  margin-bottom: 15px;
}

.size {
  width: 75px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 12px;
  background-color: white;
}

input[type=text],[type=email],[type=tel], select{
  width: 250px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: white;
  background-image: url('searchicon.png');
  background-position: 10px 10px; 
  background-repeat: no-repeat;
  padding: 6px 10px 6px 20px;
  transition: width 0.4s ease-in-out;
}

input.smaller-select[type=text], .smaller-select {
    width: 175px; /* Adjust the width to your desired size */
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    background-color: white;
    background-image: url('searchicon.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 6px 2px 6px 2px;
    transition: width 0.4s ease-in-out;
}

input[type=text]:focus {
  width: 100%;
}

input[type=email]:focus {
  width: 100%;
}

input[type=tel]:focus {
  width: 100%;
}

input[type=button], input[type=submit], input[type=reset] {
  background-color: red;
  border: none;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 15px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.whatsapp-icon {
    color: #25d366;
    font-size: 80px;
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.whatsapp-icon-white {
    color: white;
    font-size: 40px;
}

@media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
    }
}

@media (max-width: 450px) {
    img {
    width: 100%;
    height: auto;
     }
}