.quote-modal-visible {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 //max-width:none !important;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
  pointer-events: auto;
}

/* Estado inicial: oculto mas pronto para animar */
.quote-modal-hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: all 0.5s ease;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}


.quote-modal-content {
    position: fixed;
  //top: 40px !important;
  background: white;
  padding: 0px;
  margin: 10px;
  text-align: center;
  border-radius: 8px;
   z-index: 9999;
}

.quote-modal-content .quote-buttons button {
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  //background-color: lightgray;
  background-color: #cccccc !important;
  width: 120px;
  border-radius: 25px;
}

.quote-modal-content .quote-buttons button:hover {
  transform: scale(1.1);
  //background-color: darkgrey;
  background-color: #767676 !important;
  color: white;
}