.shoppingDelivery {
    width: 100%;
    float: right;
    font-size: 12px;
    line-height: 1;
    color: var(--g5-color-heading);
}
.notification_message {
    margin-top: 10px;
}
.notification_message .alert-success {
    display: flex;
    align-items: top !important;
    gap: 10px;
}
 
.notification_message .alert-success span {
    display: inline-flex !important;
}
 
.notification_message .alert-success img.emoji {
    width: 24px !important; 
    height: 24px !important;
}
.rq-btn {
  background: #0073aa;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.rq-btn:hover {
  background: #005f8d;
}

/* Modal */
.rq-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  overflow: auto;
}
.rq-modal-content {
  background: #fff;
  margin: 8% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
}
.rq-close {
  position: absolute;
  right: 15px; top: 10px;
  font-size: 22px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
}
.rq-close:hover { color: #000; }

/* Form */
#quoteForm label { display:block; margin:10px 0 5px; font-weight:bold; }
#quoteForm input, #quoteForm textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#quoteForm textarea { height: 80px; }

@media only screen and (max-width: 400px) {
	.notification_message .alert-success img.emoji {
		width: 50px !important;
		height: 50px !important;
	}
}