body {
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}


.lucky {
    background: url("../aboutPhotos/bg3.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 250px;
    position: relative;
    bottom: 60px;
    color: white;
    margin-top: 70px;
    text-align: center;


}

.lucky h1 {
    text-align: center;
    font-size: 60px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
   position: relative;
   top:75px

}

@media screen and (max-width:650px){
    .lucky h1{
        font-size: 40px;
    }
}



.form-container {
    max-width: 750px;
    margin: 40px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; */

  }

  /* .form-container:hover{
    transform: scale(1.1);
  } */
  
  .form-container h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #555;
  }
  .form-container option{
    color: grey;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
  }
  
  .form-container input,
  select,
  button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .form-container button{
    background-color: rgba(175, 82, 222, 1);
    padding: 8px;
    border-radius: 5px;
    color: white;
    border: none;
    transition: 0.5s;
    width:100px
}
 .form-container button:hover{
    background-color: rgb(100, 34, 133);
    transform: matrix(1);
}
  
  .dob-selectors,
  .time-selectors {
    display: flex;
    gap: 10px;
  }
  
  .dob-selectors select,
  .time-selectors select {
    flex: 1;
  }
  
  @media (max-width: 768px) {
    .dob-selectors,
    .time-selectors {
      flex-direction: column;
    }
    .form-container{
        padding-inline-start: 30px;
        padding-inline-end: 30px;
    }
  }

  .choose {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    /* background-color: #f9f9f9; */
    text-align: center;
}

.choose section {
    max-width: 800px; 
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left; 
}

.choose h4 {
    margin-top: 20px;
}

.choose p, .choose ul {
    margin: 10px 0;
    line-height: 1.6;
}

.choose ul li {
    margin-bottom: 8px;
}



#cart-countdown {
  margin-left: 10px;
  color: red;
  font-size: 14px;
  font-weight: bold;
}

.icon-btn{
  margin-left:10px;
  padding:8px 12px;
}


.close-btn{
  margin-left: -140px;
  margin-top:-10px
}