document.addEventListener("DOMContentLoaded", function() {
const style = document.createElement("style");
style.innerHTML = `
.checkout {
border: 5px dotted #0584ad;
border-radius: 20px;
margin: 0 0 10px;
padding: 0 7.5px;
box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px 0px;
}
.single-product .checkout-section .checkout .main .checkout-form .checkout-select select,
.single-product .checkout-section .checkout .main .checkout-form input[type="text"],
.single-product .checkout-section .checkout .main .checkout-form input[type="email"],
.single-product .checkout-section .checkout .main .checkout-form input[type="url"],
.single-product .checkout-section .checkout .main .checkout-form input[type="search"],
.single-product .checkout-section .checkout .main .checkout-form input[type="number"],
.single-product .checkout-section .checkout .main .checkout-form input[type="tel"],
.single-product .checkout-section .checkout .main .checkout-form input[type="password"],
.single-product .checkout-section .checkout .main .checkout-form textarea {
border-color: #1DB6EA;
border-radius: 15px;
}
.checkout-heading {
animation: zoom 3s infinite linear;
text-align: center;
font-weight: bold !important;
}
[dir] .checkout-section .checkout .main .checkout-form .checkout-groups {
margin: 0 -7.5px;
}
.checkout-form {
padding: 30px;
border-radius: 7px;
}
[dir] input[type="email"],
[dir] input[type="number"],
[dir] input[type="password"],
[dir] input[type="search"],
[dir] input[type="tel"],
[dir] input[type="text"],
[dir] input[type="url"],
[dir] textarea {
border-radius: 12px;
border: 2px solid;
padding: 10px 15px;
background-color: #ffffff;
}
`;
document.head.appendChild(style);
});