html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.spinner-container {
    display: none;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    background-color: white; /* Optional: Background color */
    padding: 20px; /* Optional: Padding */
    border-radius: 10px; /* Optional: Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Shadow */
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 1s linear infinite;
    -webkit-animation: spin 1s linear infinite; /* Safari */
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin { /* Safari */
    to {
        -webkit-transform: rotate(360deg);
    }
}

.message {
    margin-top: 10px;
    font-size: 24px;
    color: #000;
}

#ErrorMessageDiv{
    display:none;
}

#ErrorDiv {
    display: none;
}


#SuccessMessageDiv {
    display: none;
}

#SuccessDiv {
    display: none;
}

.address_autocomplete_input_style {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    color: red;
}

.address_auto_complete {
    color: blue;
}

.address_auto_complete_input {
    width: 750px;
}