#custom-quote-modal {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  border: 1px solid #ccc;
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
#custom-quote-form h3 {
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
#custom-quote-form input,
#custom-quote-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
#custom-quote-form button {
  background: #fcb800;
  color: #fff;
  /*padding: 10px 20px;*/
  border: none;
  border-radius: 5px;
  cursor: pointer;
  /*font-size: 1rem;*/
}
#custom-quote-form button:hover {
  background: #005f8a;
}


.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.woocommerce #custom-request-quote-btn{
  background: #fcb800;
  color: #fff;
  border: none;
  border-radius: 5px;
}
.woocommerce #custom-request-quote-btn:hover{
    background: #085d94;
    border: none;
    border-radius: 5px;
}