<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.checkout label {
    font-weight: bold;
    margin-top: 8px;
    margin-bottom: 0;
}

.checkout label,
.checkout input[type=text],
.checkout input[type=number],
.checkout input[type=password],
.checkout select {
    width: 100%;
    font-size: 14px;
}

.checkout select {
    height: 27px;
}

.checkout .error {
    color: darkred;
    font-size: 12px;
}

.checkout .info {
    color: darkblue;
    font-size: 12px;
}

.checkout .alert {
    border-radius: 0;
    margin: 10px 0;
    padding: 10px;
    font-size: 11px;
}

.checkout .alert-big {
    font-size: 15px;
}


.text-red {
    color: #cc0000;
}

#checkout-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    margin-bottom: 15px;
    overflow: hidden;
}

#checkout-steps li {
    float: left;
    padding: 3px 10px;
    color: black;
    position: relative;
    overflow: hidden;
}
#checkout-steps li.active {
    background-color: #232359;
    color: white;
}

.checkout-cart-group-total {
    margin-bottom: 15px;
}
.checkout-cart-group-total-list {
    padding: 10px;
    background-color: #ccc;
    font-size: 13px;
}

.checkout-cart-group-total-list label {
    width: auto;
}

.checkout-cart-product {
    border: 1px solid #dddddd;
    padding: 15px;
    margin-bottom: 15px;
}

.checkout-cart-product img {
    max-height: 200px;
}

.checkout-cart-product-price .row div {
    text-align: center;
}

.checkout-cart-product-price-single {
    text-align: center;
}

.checkout-cart-product-price-total {
    text-align: center;
}

@media (max-width: 575px) {
    .checkout-cart-product-price-single {
        text-align: left!important;
    }

    .checkout-cart-product-price-total {
        text-align: right!important;
    }
}

.checkout-cart-product-price-amount {
    text-align: center;
}

#checkout-cart .checkout-cart-product-price-amount input {
    text-align: center;
    width: 40px;
}

.checkout-cart-total {
    background-color: #ccc;
    padding: 10px;
}

.checkout-cart-total-title {
    font-size: 16px;
    font-weight: bold;
}

.checkout-cart-total .total {
    font-weight: bold;
}

.checkout-payment {
    background-color: #ccc;
    padding: 10px;
}

.checkout-payment-title {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 10px;
}

.checkout-payment-item {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.checkout-payment-item-selected {
    background-color: #ddd;
}

.checkout-payment-logos {
    width: 50%;
}

.checkout-payment img {
    max-width: 100px!important;
    background-color: white;
    border-radius: 5px;
    float: right;
    margin-left: 10px;
}

/* checkout address */

#checkout-address {
}

#checkout-address &gt; .row {
    margin-left: -5px;
    margin-right: -5px;
}

#checkout-address &gt; .row &gt; div {
    padding: 5px;
}

.checkout-address-type {
    position: relative;
    border: 1px solid #232359;
    padding: 10px 10px 40px 10px;
    height: 100%;
    font-size: 13px;
}

.checkout-address-type-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    height: 42px;
}

.checkout-address-type input {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid gray;
    padding: 3px;
}

.checkout-address-type-description {
}

#checkout-address .checkout-address-type .button {
    position: absolute;
    bottom: 5px;
    right: 5px;
    padding: 3px 12px;
    font-size: 12px;
    width: auto;
    margin-bottom: 0;
    border: 0;
    cursor: pointer;
}

#checkout-address input.error {
    border-color: red;
}

.checkout-cart-total-list {
    font-size: 13px;
}

.checkout-cart-total-list label {
    width: auto;
    display: inline;
}

.btn-spinner-active {
    opacity: .5;
}

.btn-spinner-active:before {
    content: '\f110';
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    animation: rotation 2s infinite linear;
    margin-right: 20px;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}</pre></body></html>