.checkout-form-title {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-form-title h3 {
    font-size: 16px;
    color: var(--sec-txt-color);
    font-weight: 400;
}

.checkout-form-title h3 span {
    color: var(--normal-txt-color);
    cursor: pointer;
}

.checkout-form-title h3 span:hover {
    color: var(--sec-txt-color);
}

.checkout-form-title .k_underline_transition_2:hover::before {
    transform: scaleX(1);
    width: 100%;
    border: none;
}

.checkout-form-title h2 {
    font-size: 24px;
    font-family: var(--font-fm2);
    font-weight: 400;
}

.checkout-main-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    gap: 20px;
    justify-content: space-between;
}

.checkout-form {
    width: calc(55% - 20px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

label .required {
    text-decoration: none;
}

.checkout_form_row {
    display: flex;

}



.billing_country_text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.billing_country_text h3 {
    font-size: 16px;
    font-weight: 400;
}

.billing_country_text strong {
    font-size: 16px;
    color: var(--sec-txt-color);
}

.creat-account-dropdown-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-checkbox-input {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.different-address-dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input[type='number']::-webkit-inner-spin-button {
    appearance: none;
}



/*  = > > > > > > > > */


.right-checkout-content {
    width: 40%;
}

.checkout-right-title {

    padding-block: 10px;
}

.checkout-right-title h2 {
    font-size: 24px;
    font-family: var(--font-fm2);
    font-weight: 400;
}

.order-product-wrapper {
    display: flex;
    align-items: center;
    height: 90px;
    border-top: 1px solid #eee;
    padding: 10px 10px 10px 0;

}

.order-img-box {
    height: 100%;
    margin-right: 10px;
}

.order-img-box img {
    height: 100%;
    aspect-ratio: 1 / 1;
}

.order-product-name {
    flex: 2;
}

.order-product-name h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}

.order-product-name h3 span {
    color: #9b9b9b;

}

.order-product-price h3 {
    font-size: 16px;
    color: var(--normal-txt-color);
    font-weight: 400;
}

.right-checkout-content .k-cart-row {
    border-top: 1px solid #eee;
    border-bottom: none;
}

.right-checkout-content .k-cart-total-price {
    padding-top: 15px;
}

.right-checkout-content .k-cart-total-price h3 {
    font-size: 16px;
}

.right-checkout-content .k-cart-total-price h2 {
    font-size: 23px;
}

.checkout-payment-info-heading h3 {
    font-size: 24px;
    font-family: var(--font-fm2);
    font-weight: 400;
}

.payment-method-box {
    width: 100%;
    padding: 0 10px;
    height: 45px;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f7f7f7;
}

.payment-method-name h3 {
    font-size: 16px;
    font-weight: 500;
}

.payment-method-text p {
    font-size: 16px;
    color: var(--sec-txt-color);
}

.paytment-info-box {
    display: flex;
    gap: 20px;
    flex-direction: column;
    border-bottom: 1px solid #eee;
    padding-bottom: 35px;
}

.place-order-privacy-policy-text p {
    font-size: 16px;
    color: var(--sec-txt-color);
}

.place-order-privacy-policy-text a {
    color: var(--normal-txt-color);
}


.place-order-footer {
    padding-block: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.place-order-submit-btn button {
    width: 100%;
    height: 100%;
}




@media (max-width:1080px) {
    .checkout-main-container {
        padding-inline: 5%;
    }
}

@media (max-width:480px) {
    .checkout-main-container {
        flex-direction: column;
    }

    .right-checkout-content,
    .checkout-form {
        width: 100%;
    }
}