*{
    text-transform:capitalize!important;
}

/* Cancel capitalize for placeholders */
input::placeholder {
    text-transform: none !important;
}

/* Cancel capitalize for input on focus */
input:focus {
    text-transform: none !important;
}



.alert-boxx{
    top: 20px;
right: 40px;
background: #01c0c8;
    position:fixed;
z-index: 9000 !important;
width: 250px;
padding:10px 0;
 }

 .package_layout {
    position: fixed;
    height: 100vh; /* Full screen height */
    width: 100vw;  /* Full screen width */
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.475);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.package_layout_inside {
    width: 80%;
    height: 95%;
    background: white;
}


.removecart{
    cursor: pointer;
}

.outsider{
    height: 250px;
    width: 100%;
}

.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .custom-modal-dialog {
    position: relative;
    margin: 1.75rem auto;
    max-width: 500px;
    pointer-events: none;
  }
  
  .custom-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 0.3rem;
    outline: 0;
    pointer-events: auto;
  }
  
  .custom-modal-header,
  .custom-modal-body,
  .custom-modal-footer {
    padding: 1rem;
  }
  
  .custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
  }
  
  .custom-modal-title {
    margin-bottom: 0;
    line-height: 1.5;
  }
  
  .custom-close {
    background: none;
    border: none;
    font-size: 1.5rem;
  }
  
  .custom-modal-footer {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #dee2e6;
  }
  