164 lines
3.4 KiB
CSS
164 lines
3.4 KiB
CSS
.dlm-checkout {
|
|
width: 100% !important;
|
|
max-width: 100% !important;
|
|
overflow: hidden;
|
|
}
|
|
.dlm-checkout .dlm-checkout-error {
|
|
padding: 1em;
|
|
margin-bottom: 15px;
|
|
background: #dc3232;
|
|
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
|
|
}
|
|
.dlm-checkout .dlm-checkout-error .dlm-checkout-error-icon {
|
|
display: inline-block;
|
|
width: 25px;
|
|
color: #fff;
|
|
vertical-align: middle;
|
|
margin-right: 10px;
|
|
}
|
|
.dlm-checkout .dlm-checkout-error p {
|
|
display: inline-block;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
.dlm-checkout form {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
.dlm-checkout .dlm-checkout-billing {
|
|
width: 55%;
|
|
float: left;
|
|
}
|
|
.dlm-checkout .dlm-checkout-order-review {
|
|
width: 40%;
|
|
float: right;
|
|
}
|
|
.dlm-checkout .dlm-checkout-order-review table th {
|
|
text-align: left;
|
|
}
|
|
.dlm-checkout .dlm-checkout-row {
|
|
width: 100%;
|
|
padding: 5px 0;
|
|
}
|
|
.dlm-checkout .dlm-checkout-row label {
|
|
display: inline-block;
|
|
width: 100%;
|
|
}
|
|
.dlm-checkout .dlm-checkout-row label .dlm-checkout-required {
|
|
padding: 0 5px;
|
|
color: #ff0000;
|
|
}
|
|
.dlm-checkout .dlm-checkout-row .dlm-checkout-input-wrapper {
|
|
display: inline-block;
|
|
width: 100%;
|
|
padding: 5px 0;
|
|
}
|
|
.dlm-checkout .dlm-checkout-row .dlm-checkout-input-wrapper input,
|
|
.dlm-checkout .dlm-checkout-row .dlm-checkout-input-wrapper select {
|
|
width: 100%;
|
|
}
|
|
.dlm-checkout .dlm-checkout-row .dlm-checkout-input-wrapper select {
|
|
padding: 5px;
|
|
}
|
|
.dlm-checkout .dlm-checkout-row .dlm-checkout-input-wrapper .dlm-checkout-field.dlm-checkout-field-error {
|
|
border: 1px solid #dc3232;
|
|
}
|
|
.dlm-checkout .dlm-checkout-row-half {
|
|
width: 45%;
|
|
float: left;
|
|
}
|
|
.dlm-checkout .dlm-checkout-row-last {
|
|
float: right;
|
|
}
|
|
.dlm-checkout .dlm-checkout-payment ul,
|
|
.dlm-checkout .dlm-checkout-payment li {
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
}
|
|
.dlm-checkout .dlm-checkout-payment ul li {
|
|
background: #fbfbfb;
|
|
margin-bottom: 20px;
|
|
}
|
|
.dlm-checkout .dlm-checkout-payment ul li label {
|
|
display: inline-block;
|
|
width: 100%;
|
|
padding: 15px 25px;
|
|
background: #f8f8f8;
|
|
cursor: pointer;
|
|
}
|
|
.dlm-checkout .dlm-checkout-payment ul li label input {
|
|
margin-right: 10px;
|
|
}
|
|
.dlm-checkout .dlm-checkout-payment ul li .dlm_gateway_details {
|
|
padding: 15px 25px;
|
|
}
|
|
.dlm-checkout .dlm-checkout-payment ul li .dlm_gateway_details p {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
.dlm-checkout-complete table th {
|
|
text-align: left;
|
|
}
|
|
.dlm-checkout-complete .dlm-checkout-download-button {
|
|
display: inline-block;
|
|
padding: 1em 1.5em;
|
|
background-color: #eeeeee;
|
|
border-color: #eeeeee;
|
|
color: #333333;
|
|
}
|
|
.dlm-checkout-overlay-bg {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #000;
|
|
opacity: 0.5;
|
|
z-index: 9998;
|
|
display: none;
|
|
}
|
|
.dlm-checkout-overlay {
|
|
box-sizing: border-box;
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 350px;
|
|
height: 150px;
|
|
margin-top: -75px;
|
|
margin-left: -175px;
|
|
padding: 25px;
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 1px 2px;
|
|
z-index: 9999;
|
|
text-align: center;
|
|
display: none;
|
|
}
|
|
.dlm-checkout-overlay h2 {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-size: 26px;
|
|
font-weight: 400;
|
|
text-align: center;
|
|
}
|
|
.dlm-checkout-overlay h2:before {
|
|
content: "";
|
|
display: none;
|
|
}
|
|
.dlm-checkout-overlay span {
|
|
font-size: 16px;
|
|
display: inline-block;
|
|
width: 100%;
|
|
padding: 10px 0 20px;
|
|
text-align: center;
|
|
}
|
|
.dlm-checkout-overlay img {
|
|
position: absolute;
|
|
bottom: 25px;
|
|
left: 50%;
|
|
margin-left: -22px;
|
|
}
|