#mapPopup {
    position: fixed;
    width: 90%;
    height: 70%;
    top: 10%;
    left: 5%;
    background: white;
    border: 1px solid #ccc;
    z-index: 9999;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.button.pre-invoice{
    margin-top: 14px;
    width: 100%;
    text-align: center;
    display: none;
}

.checkout-button.wc-forward{
    background-color: #b2c802;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark glass effect */
    z-index: 999; /* Ensure it's above all content */
  }
  
  .tooltip-100 {
    position: relative;
    z-index: 1001; /* Above the overlay */
  }
  
  #tooltip-popup {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1002; /* Above the overlay and textarea */
  }
  
  #tooltip-popup:after {
    content: "";
    position: absolute;
    bottom: -10px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #f9f9f9 transparent transparent transparent;
  }

  #billing_address_1 {
    position: relative;
  }
  
  .map-button {
    position: absolute;
    padding: 5px 10px;
    border: none;
    background: none;
    box-shadow: none;

  }
  
  @media (max-width: 600px) {
    .map-button {
      top: -60px; /* Adjust for smaller screens */
    }
  }

#hideMap{

        width: 138px;
        background-color: red;
        color: white;
        padding: 14px;
        margin: 10px;
}

@media (max-width: 940px) {
  .map-button {
    margin-top: -24px;
  }

  #billing_address_1_field{
    margin-top: 71px;
  }
  
}