#paymob-logo {
width: auto !important;
height:24px !important;
margin-inline-start: auto  !important ; float: right !important;
padding-top: 6px !important;
} html[lang="ar"] #paymob-logo {
float: left !important;
}
.payment_method_paymob label {   flex-grow: 1 !important;
align-items: end !important;  }
li.payment_method_paymob div.payment_method_paymob { flex-wrap: wrap !important;
} @-moz-document url-prefix() {
#paymob-logo {
margin-left: auto !important;
}
}
.woocommerce-checkout.processing {
position: relative;
}
.woocommerce-checkout.processing:after {
content: '';
position: absolute;
top: 50%;
left: 50%;
margin-left: -16px;
margin-top: -16px;
width: 32px;
height: 32px;
border: 3px solid rgba(0,0,0,0.1);
border-left-color: #000;
border-radius: 50%;
animation: spin 0.6s linear infinite;
z-index: 9999;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
} .flash-message {
position: fixed;
top: 50px; right: 20px;
z-index: 9999;
background: linear-gradient(135deg, #f44336, #d32f2f);
color: white;
padding: 15px 20px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
opacity: 1;
display: flex;
align-items: center;
gap: 10px;
font-family: Arial, sans-serif;
font-size: 14px;
animation: slideIn 0.5s ease;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.flash-message p {
margin: 0;
flex-grow: 1;
}
.flash-message .close-flash {
color: white;
background-color: rgba(255, 255, 255, 0.2);
border: none;
border-radius: 50%;
width: 25px;
height: 25px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s;
}
.flash-message .close-flash:hover {
background-color: rgba(255, 255, 255, 0.4);
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateX(100%);
}
to {
opacity: 1;
transform: translateX(0);
}
}#quick-order {
margin: 0 auto;
border-radius: 5px;
background-color: #f9f9f9;
max-width: min(100%, 1280px);
padding: 0 15px;
}
#quick-order h2 {
text-align: center;
margin-bottom: 20px;
}
#product-list .product {
border: 1px solid #ddd;
}
#product-list .product h3 {
margin: 0;
font-size: 18px;
}
#product-list .product p {
margin: 5px 0;
}
#product-list .product input[type="number"] {
width: 60px;
margin-left: 10px;
}
#quick-order-form h3 {
margin-top: 20px;
}
#quick-order-form label {
display: block;
margin: 10px 0 5px;
}
#quick-order-form input[type="text"],
#quick-order-form select,
#quick-order-form textarea {
width: 100%;
margin: 0;
}
#quick-order-form button {
display: block;
width: 100%;
padding: 10px;
background-color: #000;
color: #fff;
border: none;
cursor: pointer;
font-size: 16px;
}
#quick-order-form button:hover {
background-color: #005177;
}
#quick-order-form .product {
display: flex;
flex-direction: column;
align-items: center;
}
#quick-order-form .product img {
max-width: 100%;
height: 140px;
padding: 5px;
}
#quick-order-form #product-list {
display: grid;
grid-template-columns: repeat(7, 1fr);
}
#quick-order-form .product .qty-wrapper {
display: flex;
align-items: center;
}
#quick-order-form .product .qty-wrapper .product-quantity {
text-align: center;
font-size: 22px;
padding: 0;
}
#quick-order-form .product .qty-wrapper button {
font-size: 45px;
line-height: 0;
padding: 0;
height: 100%;
font-family: math;
}
#quick-order ul.order-summary {
background: #dfdfdf;
padding: 20px;
margin: 0;
list-style: none;
font-size: 18px;
display: flex;
flex-direction: column;
gap: 13px;
}
#quick-order ul.order-summary span {
background: #000;
color: #fff;
display: inline-flex;
width: 30px;
height: 30px;
justify-content: center;
align-items: center;
border-radius: 50%;
}
#quick-order ul.order-summary li {
padding: 0;
display: flex;
gap: 10px;
}
.bulk-order-confirmation, .paid-offline-confirmation {
display: flex;
align-items: center;
flex-direction: row-reverse;
justify-content: flex-end;
gap: 10px;
margin: 30px 0 0;
}
.bulk-order-confirmation input#bulk-order,
.paid-offline-confirmation input#paid-offline { 
width: 30px;
height: 30px;
margin: 0;
}
.bulk-order-confirmation label,
.paid-offline-confirmation label {
margin: 0 !important;
}
@media screen and (max-width: 768px) {
#quick-order-form #product-list {
grid-template-columns: repeat(2, 1fr);
}
}