/* "Get the best price" quote pop-up. */
.jyuee-quote-modal{
  position:fixed;
  inset:0;
  z-index:12000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.jyuee-quote-modal.is-open{display:flex;}
.jyuee-quote-modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(8,16,20,.62);
  backdrop-filter:blur(2px);
}
.jyuee-quote-modal__dialog{
  position:relative;
  width:min(460px,100%);
  max-height:calc(100vh - 40px);
  overflow:auto;
  padding:30px 30px 28px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
  animation:jyuee-quote-in .22s ease both;
}
@keyframes jyuee-quote-in{from{opacity:0;transform:translateY(14px) scale(.98);}to{opacity:1;transform:none;}}
.jyuee-quote-modal__close{
  position:absolute;
  top:12px;right:14px;
  width:34px;height:34px;
  padding:0;
  color:#64707a;
  background:transparent;
  border:0;
  border-radius:50%;
  font-size:26px;
  line-height:1;
  cursor:pointer;
  transition:background .15s,color .15s;
}
.jyuee-quote-modal__close:hover{background:#f1f3f2;color:#0b0f11;}
.jyuee-quote-modal__kicker{
  margin:0 0 6px;
  color:#e8332a;
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.jyuee-quote-modal__title{
  margin:0 0 8px;
  padding-right:30px;
  color:#0b0f11;
  font-size:20px;
  font-weight:800;
  line-height:1.3;
}
.jyuee-quote-modal__sub{
  margin:0 0 18px;
  color:#64707a;
  font-size:14px;
  line-height:1.6;
}
.jyuee-quote-modal__form{display:grid;gap:12px;}
.jyuee-quote-modal__hp{position:absolute;left:-9999px;width:1px;height:1px;opacity:0;}
.jyuee-quote-modal__input{
  width:100%;
  padding:12px 14px;
  color:#0b0f11;
  background:#f7f8f7;
  border:1px solid #dfe4e2;
  border-radius:8px;
  font-size:15px;
  font-family:inherit;
  box-sizing:border-box;
  transition:border-color .15s,box-shadow .15s;
}
.jyuee-quote-modal__input:focus{
  outline:none;
  border-color:#e8332a;
  box-shadow:0 0 0 3px rgba(232,51,42,.14);
  background:#fff;
}
.jyuee-quote-modal__textarea{resize:vertical;min-height:96px;line-height:1.55;}
.jyuee-quote-modal__submit{
  margin-top:2px;
  padding:14px 24px;
  color:#fff;
  background:#e8332a;
  border:0;
  border-radius:8px;
  font-size:16px;
  font-weight:800;
  letter-spacing:.03em;
  cursor:pointer;
  transition:background .15s,transform .15s,box-shadow .15s;
  box-shadow:0 8px 20px rgba(232,51,42,.26);
}
.jyuee-quote-modal__submit:hover{background:#d0221a;transform:translateY(-1px);box-shadow:0 12px 26px rgba(232,51,42,.4);}

/* Success toast after ?inquiry=sent */
.jyuee-quote-toast{
  position:fixed;
  left:50%;
  bottom:26px;
  transform:translateX(-50%);
  z-index:12050;
  max-width:calc(100vw - 32px);
  padding:14px 22px;
  color:#fff;
  background:#1f9d55;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  box-shadow:0 14px 34px rgba(31,157,85,.4);
  animation:jyuee-quote-in .25s ease both;
  transition:opacity .4s ease, transform .4s ease;
}
.jyuee-quote-toast.is-hiding{opacity:0;transform:translateX(-50%) translateY(10px);}

@media(max-width:600px){
  .jyuee-quote-modal__dialog{padding:26px 20px 22px;}
  .jyuee-quote-modal__title{font-size:18px;}
}
