#flex-cotacao {
  box-sizing: border-box;
  width: min(660px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 32px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-family: inherit;
  overflow: auto;
}
#flex-cotacao::backdrop { background: rgba(0, 0, 0, .7); }
#flex-cotacao-form { display: flex; flex-direction: column; margin: 0; }
#flex-cotacao label { margin: 0 0 4px; font-size: 15px; }
#flex-cotacao input {
  box-sizing: border-box;
  width: 100%;
  min-height: 49px;
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 7px;
  background: #fff;
  color: #333;
  font: inherit;
}
#flex-cotacao .flex-cotacao-enviar {
  min-height: 49px;
  border: 0;
  border-radius: 7px;
  background: #ff5000;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
#flex-cotacao .flex-cotacao-fechar {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #195f7d;
  color: #fff;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}
#flex-cotacao input:focus { border-color: #ff5000; outline: 2px solid #ff5000; outline-offset: 1px; }
#flex-cotacao :focus-visible { outline: 3px solid #ff5000; outline-offset: 3px; }
#flex-cotacao .flex-cotacao-status { margin: 12px 0 0; color: #a32121; font-size: 14px; }
#flex-cotacao .flex-cotacao-status[hidden] { display: none; }
#flex-cotacao .flex-cotacao-enviar:disabled { opacity: .7; cursor: wait; }
@media (max-width: 480px) { #flex-cotacao { padding: 36px 20px 24px; } }
