.checkout-form {
    padding: 2rem;
    background: ghostwhite;
}

.checkout_input label {
    font-size: 21px;
    color: #000;
    font-weight: 500;
}

.checkout_input input,
.checkout_input .form-select {
    border: 1px solid #dedede !important;
    width: 100%;
    padding: 10px;
    outline: none !important;
    box-shadow: none !important;
}

.checkout_input {
    margin-bottom: 14px;
    width: 100%;
}

.checkout-form-flex {
    display: flex;
    gap: 10px;
    width: 100%;
}

.pay-now-btn {
    margin-top: 1rem;
}

.pay-now-btn button {
    border-radius: 4px;
    width: 100%;
    background-color: var(--main-color);
    color: var(--white-color);
    font-size: 18px;
    text-align: center;
    border: 1px solid var(--main-color);
    outline: none;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-right-heading {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 10px;
    flex-direction: column;
}

.product-img img {
    width: 100px;
}

.product-img {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-name p {
    font-size: 15px;
    color: #000;
}

.product-name span {
    color: #434343;
    font-size: 14px;
}

.checkout-right-content {
    margin-top: 2rem;
}

.checkout-right-content p,
.checkout-right-content h6 {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 18px;
}

.checkout-right-content h6 {
    font-size: 22px;
}

.checkout-right {
    background-color: ghostwhite;
    padding: 2rem;

    height: 100%;
    border-radius: 10px;
}

.product-img-box {
    position: relative;
}

.product-img-box span {
    position: absolute;
    top: -10px;
    right: -5px;
    height: 24px;
    width: 24px;
    background-color: var(--main-color);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 0 3px rgba(0, 0, 0, .6);
    border-radius: 100%;
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-btn {
    display: none;
}

.cod-pay-flex {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cod {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.cod label {
    cursor: pointer;
    font-weight: 500;
    text-transform: capitalize;
}

.cod input {
    accent-color: var(--main-color);
    height: 16px;
    width: 16px;
    transition: .3s ease-in;
    border-radius: 100%;
}

@media(max-width:992px) {
    .mobile-btn {
        display: block;
    }

    .desktop-btn {
        display: none;
    }

    .checkout-form {
        padding: 1rem 1rem 0 1rem;
    }

    .checkout-right {
        padding: 2rem 1rem 1rem 1rem;
    }

    .checkout-right-content p,
    .checkout-right-content h6 {
        font-size: 16px;
        margin-top: 6px;
    }

    .pay-now-btn button {
        font-size: 16px;
    }

    .checkout_input {
        margin-bottom: 10px;
    }
}

@media(max-width:576px) {
    .product-img-box span {
        height: 20px;
        width: 20px;
        font-size: 10px;
    }
}