@keyframes shake {
    0% {
        transform: rotateZ(0);
        -ms-transform: rotateZ(0);
        -webkit-transform: rotateZ(0);
    }

    10% {
        transform: rotateZ(-30deg);
        -ms-transform: rotateZ(-30deg);
        -webkit-transform: rotateZ(-30deg);
    }

    20% {
        transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
    }

    30% {
        transform: rotateZ(-10deg);
        -ms-transform: rotateZ(-10deg);
        -webkit-transform: rotateZ(-10deg);
    }

    40% {
        transform: rotateZ(7.5deg);
        -ms-transform: rotateZ(7.5deg);
        -webkit-transform: rotateZ(7.5deg);
    }

    50% {
        transform: rotateZ(-6deg);
        -ms-transform: rotateZ(-6deg);
        -webkit-transform: rotateZ(-6deg);
    }

    60% {
        transform: rotateZ(5deg);
        -ms-transform: rotateZ(5deg);
        -webkit-transform: rotateZ(5deg);
    }

    70% {
        transform: rotateZ(-4.28571deg);
        -ms-transform: rotateZ(-4.28571deg);
        -webkit-transform: rotateZ(-4.28571deg);
    }

    80% {
        transform: rotateZ(3.75deg);
        -ms-transform: rotateZ(3.75deg);
        -webkit-transform: rotateZ(3.75deg);
    }

    90% {
        transform: rotateZ(-3.33333deg);
        -ms-transform: rotateZ(-3.33333deg);
        -webkit-transform: rotateZ(-3.33333deg);
    }

    100% {
        transform: rotateZ(0);
        -ms-transform: rotateZ(0);
        -webkit-transform: rotateZ(0);
    }
}

:root {
    --Primary-Color-Main: #90C8E8;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* --- checkout --- */
#ju-checkout .uk-h6 {
    font-size: 20px;
}

#ju-checkout>div>.uk-grid {
    margin-left: -62px;
}

#ju-checkout>div>.uk-grid>* {
    padding-left: 62px;
}

#ju-checkout #customer_details {
    width: 100%;
}

#ju-checkout #order_review_heading {
    width: 100%;
    margin: 0;
}

#ju-checkout #order_review {
    width: 100%;
}

#ju-checkout .uk-card-default {
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    border: 1px solid #F3F3F3;
}

#ju-checkout .uk-card-default .uk-card-body {
    padding: 24px 16px;
}

#ju-checkout .ju-checkout-product img {
    width: 75px;
    aspect-ratio: 75/90;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #E4E4E4;
    padding: 2px;
}

#ju-checkout .uk-input {
    padding: 0 22px 0 50px;
    border-radius: 100px;
    background: #F3F3F3;
    border-color: #F3F3F3;
    background-image: url(/wp-content/uploads/2025/06/svgexport-33-1-1.svg);
    background-repeat: no-repeat;
    background-position: 7% 52%;
}

#ju-checkout .uk-input:hover,
#ju-checkout .uk-input:focus {
    border-color: var(--Primary-Color-Main);
}

#ju-checkout .validate-email {
    width: 100%;
}

#ju-checkout .form-row {
    margin-bottom: 0;
}

#customer_details .form-row label {
    display: none;
}

#ju-checkout .product-name a {
    color: #212121;
    font-size: 16px;
    font-weight: 600;
}

#ju-checkout .product-quantity {
    margin-top: 4px;
    font-size: 16px;
    font-weight: 500;
    color: #212121;
}

#ju-checkout .product-variations {
    margin-top: 4px;
    margin-left: 0;
}

#ju-checkout .variation-item {
    padding: 2px 6px;
    font-size: 14px;
    color: var(--Primary-Color-Main);
    border-radius: 4px;
    border: 1px solid #E4E4E4;
    background: #F3F3F3;
}

#ju-checkout .product-total {
    display: flex;
    flex-direction: column;
    text-align: right;
}

#ju-checkout .product-total bdi {
    font-size: 18px;
    font-weight: 600;
    color: #B01722;
}

#ju-checkout .product-total .original-price bdi {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.woocommerce-form-coupon-toggle {
    display: none;
}

#ju-checkout .ju-checkout-review {
    border: 1px solid #E4E4E4;
}

#ju-checkout .ju-checkout-review th {
    font-size: 16px;
    color: #666;
}

#ju-checkout .ju-checkout-review td {
    font-weight: 600;
}

#ju-checkout .ju-checkout-review tr.cart-discount {
    color: #B01722;
}

#ju-checkout .ju-checkout-review .woocommerce-shipping-methods li {
    justify-content: flex-end;
}

#ju-checkout .ju-checkout-review tr.order-total bdi {
    font-weight: 600;
    color: #B01722;
}

#ju-checkout button {
    color: #fff;
    background: var(--Primary-Color-Main);
    line-height: 54px;
    font-size: 20px;
	box-shadow: rgba(136, 203, 235, 0.3) 1px 1px 0px 0px;
	border: 1px solid #fff;
	transition: all ease 0.3s;
}
#ju-checkout .disabled {
	  cursor: not-allowed;

}
#ju-checkout .disabled button {
	background: #666;
	 pointer-events: none;
	opacity: 0.6; /* thêm để biểu thị trạng thái disabled rõ hơn */
}
#ju-checkout button:hover {
    background: #45A9E2;
	box-shadow: rgba(136, 203, 235, 0.3) 1px 1px 0px 0px;
}

#ju-checkout .col-1 button {
    font-size: 18px;
}

.select2-container .select2-selection--single {
    height: 56px !important;
    border-radius: 10px !important;
    border-color: #e5e5e5 !important;
}

.select2-container .select2-selection--single[aria-owns] {
    border-color: var(--Primary-color-Main) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 56px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 56px !important;
}

#ju-checkout input[type=radio]:checked {
    background-color: #B01722;
}

/* thankyou */
.thankyou-card {
    border: 1px solid #F3F3F3;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.04);
}

.payment-title {
    font-weight: 600;
    padding: 15px 20px;
    background: #F3F3F3;
}

.payment-content {
    padding: 16px;
}

.ju-method-title {
    padding: 17px 13px;
    border-radius: 8px;
    border: 1px solid var(--Primary-Color-Main);
    background: #EFEFEF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.04);
}

.ju-info-payment {
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #F3F3F3;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.04);
}

.ju-info-payment h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

.ju-info-payment h3 {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 600;
}

.ju-info-payment .bacs_details {
    margin-top: 8px;
    margin-bottom: 0;
}

.ju-info-payment .uk-button {
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
}

#ju-thankyou-product {
    overflow: hidden;
    margin: 0;
    border-radius: 16px;
    border: 1px solid #F3F3F3;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.04);
}

#ju-thankyou-product table {
    margin: 0;
}

#ju-thankyou-product thead {
    background: #45A9E2;
}

#ju-thankyou-product td {
    font-weight: 600;
    padding: 16px 20px !important;
}

#ju-thankyou-product tbody td {
    font-size: 16px;
}

#ju-thankyou-product tbody td .original-price {
    font-weight: 400;
    font-size: 14px;
}

#ju-thankyou-product tbody img {
    aspect-ratio: 75/75;
    width: 75px;
    border-radius: 6px;
    border: 1px solid #E4E4E4;
    object-fit: cover;
    padding: 2px;
}

.ju-thankyou-info .el-item {
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #F3F3F3;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.04);
}

.ju-thankyou-info .cart_subtotal {
    border-bottom: 1px solid #F3F3F3;
}

.ju-thankyou-info .order_total {
    border-top: 1px solid #F3F3F3;
}

.ju-thankyou-info>div:first-child>.el-item table td {
    font-size: 16px;
}

.ju-thankyou-info>div:first-child>.el-item table td.uk-text-right {
    font-size: 18px;
}

.ju-thankyou-info>div:first-child>.el-item table tr.cart_subtotal td.uk-text-right {
    font-weight: 600;
    color: #000;
}

.ju-thankyou-info>div:first-child>.el-item table tr.discount td.uk-text-right {
    font-weight: 600;
    color: #000;
}

.ju-thankyou-info>div:first-child>.el-item table tr.order_total td.uk-text-right {
    font-weight: 600;
    color: #B01722;
}

.ju-thankyou-info>div:last-child>.el-item table td {
    font-size: 16px;
}

.ju-thankyou-info td {
    padding: 4px 0;
}

@media(max-width:960px) {

    /* --- checkout --- */
    #ju-checkout .product-total {
        margin-top: 4px;
        text-align: left;
        flex-direction: row;
        gap: 6px;
    }

    /* thankyou */
    .vari .el-item {
        font-size: 14px;
        font-weight: 400;
        padding: 2px 6px;
        border-radius: 4px;
        border: 1px solid #E4E4E4;
        background: #F3F3F3;
    }
}

@media(max-width:640px) {

    /* --- checkout --- */
    #ju-checkout .col-1 .uk-card:first-child .uk-h6 {
        font-size: 20px;
    }

    #ju-checkout .uk-h6 {
        font-size: 18px;
    }

    #ju-checkout .product-total bdi {
        font-size: 16px;
    }

    /* thankyou */
    .ju-thankyou-info>div:last-child>.el-item table td:first-child {
        white-space: nowrap;
        vertical-align: top;
    }
}