* {
    box-sizing: border-box;
}


#guestCheckoutForm .ctm-input input,
#loginform input,
#checkout-form input,
select {
    height: 50px;
    padding: 0px 18px;
    color: #676767;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    border-bottom: 0.5px solid #000;
    border-radius: 0;
}

#guestCheckoutForm {
    margin-bottom: 100px;
}

#checkoutForms {
    max-width: 560px;
    margin: 0 auto;
}

#guestCheckoutForm .ctm-input button,
#loginform [type="submit"],
#checkout-form [type="submit"] {
    font-size: 16px;
    font-weight: 600;
    fill: var(--e-global-color-text);
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-primary);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--e-global-color-primary);
    border-radius: 27.5px 27.5px 27.5px 27.5px;
    padding: 14px 25px 14px 25px;
    height: auto;

    &:hover {
        color: var(--e-global-color-e65a8c8);
        background-color: var(--e-global-color-e3a9062);
        border-color: var(--e-global-color-e3a9062);
    }
}

.login-remember label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-container {
    width: 100%;
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.order-checkout {
    display: flex;
    justify-content: space-between;
    border: 1px solid #d9d9d9;
    background: #fff;
    width: 100%;
}

.billing-form,
.payment-box {
    padding: 0 33px 33px 33px;
}

.gap-30 {
    gap: 50px;
}

.gap-20 {
    gap: 20px;
}

.py-100 {
    padding: 100px 0px;
}

.d-flex-between {
    display: flex;
    justify-content: space-between;
}

.align-items-start {
    align-items: start;
}



.shortcode-div {
    text-align: center;
}

.checkout-heading {
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.order-detail {
    border: 1px solid #d9d9d9;
    background: #fff;
    padding: 32px 21px;
    max-width: 419px;
    width: 100%;
}

.note-for-customer {
    background: #fff;
    padding: 16px 0px;
    max-width: 419px;
    width: 100%;
}

.color-red {
    color: red;
}

.global-primary-color {
    color: #FFD04F;
}

@media (max-width:991px) {
    .py-100 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .d-flex-between {
        flex-wrap: wrap;
    }

    .order-detail {
        max-width: 100%;
    }

    .note-for-customer {
        max-width: 100%;
    }
}

.order-summary-heading {
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #1e1e1e;
    border-bottom: 1px solid #ececec;
    padding-bottom: 10px;
}

.pck-list {
    color: #686868;
    text-overflow: ellipsis;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;

    & span {
        color: #000;
        font-weight: 600;
    }
}

.order-total {
    margin-top: 30px;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    padding: 19px 0px;

    & .pck-list {
        margin-bottom: 9px;
    }
}

.total-p {
    color: #000;
    text-overflow: ellipsis;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
    margin-top: 27px;
}

.checkout-heading {
    border-bottom: 1px solid #d9d9d9;
    background: #f6f2ff;
    padding: 21px 33px;
}

.coupon-box {
    margin-bottom: 20px;

    & .error {
        color: red;
        margin-top: 5px;
        display: block;
        margin-left: 20px;
        ;
    }
}

.searchbox-wrap {
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.19);
    border-radius: 30px;
    overflow: hidden;

    & input {
        flex: 1;
        padding: 10px 20px;
        font-size: 14px;
        box-shadow: none;
        border: none;
    }

    & button {
        padding-right: 10px;
        border-bottom-right-radius: 25px;
        cursor: pointer;
        cursor: hand;
        background: none;


        & span {
            margin-left: 50px;
            padding: 10px 15px;

            font-size: 0.9em;
            text-transform: uppercase;
            font-weight: 300;
            color: #fff;
            background-color: var(--e-global-color-primary);
            border-radius: 30px;

            &:hover {
                background-color: var(--e-global-color-secondary);
                box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.19);
            }
        }
    }
}


.validation-icon {
    transition: opacity 0.3s ease-in-out;
}

.payment-d-none {
    display: none;
}

.input-style {
    position: relative;

    & .validation-icon {
        position: absolute;
        right: 10px;
        top: 47%;
        transform: translateY(-47%);
    }
}

.entry-content .woocommerce {
    max-width: 1220px;
    margin: 0 auto;

    & h2 {
        font-family: Poppins;
        font-size: 36px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        color: #1e1e1e;
        margin-bottom: 20px;
    }
}

#payment-error-message {
    color: red;
    font-size: 16px;
    margin-top: 20px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.thanks-box {
    text-align: center;
    margin-top: 90px;
    margin-bottom: 50px;
}

.thanks-box img {
    margin-bottom: 70px;
}

.thanks-box h3 {
    color: #000;
    font-family: Poppins;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 20px;
    margin-top: 0;
}

.thanks-box h3 span {
    color: #ffd04f;
}

.thanks-box p {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.order-confirmed {
    padding: 50px;
    border-radius: 24px;
    background: var(--Color-secondry-3, #f4efff);
    max-width: 772px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.order-confirmed h2 {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 0;
}

.order-confirmed .order-detail-box {
    display: flex;
    gap: 23px;
}

.order-confirmed .order-detail-box .order-item {
    border-radius: 16px;
    background: #fff;
    width: 100%;
    padding: 24px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-confirmed .order-detail-box .order-item .order-item-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b4b4b;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.order-confirmed .order-detail-box .order-item .order-item-inner-value {
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.plan-detail {
    margin-bottom: 50px;
}

.plan-detail h2 {
    color: #000;
    font-family: Poppins;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 0;
}

.plan-detail .plan-box {
    border-radius: 8px;
    border: 1px solid var(--Color-secondry-2, #ece3ff);
    background: #fbfbfb;
}

.plan-detail .plan-box .plan-heading-box {
    border-radius: 8px 8px 0px 0px;
    background: var(--Color-secondry-3, #f4efff);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-detail .plan-box .plan-heading-box .heading {
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.plan-detail .plan-box .plan-heading-box .price {
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    max-width: 250px;
    width: 100%;
    text-align: left;
}

.plan-detail .plan-box .panl-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}

.plan-detail .plan-box .panl-detail:not(:last-of-type) {
    border-bottom: 1px solid var(--Color-secondry-2, #ece3ff);
}

.plan-detail .plan-box .panl-detail .plan-left-d h3 {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.plan-detail .plan-box .panl-detail .plan-left-d p {
    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.plan-detail .plan-box .panl-detail .plan-right-p {
    max-width: 250px;
    width: 100%;
    text-align: left;
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.plan-detail .plan-box .panl-detail.panel-footer {
    gap: 80px;
    justify-content: flex-end;
}

.plan-detail .plan-box .panl-detail.panel-footer .plan-left-d {
    font-size: 18px;
    font-weight: 400;
}

.plan-detail .plan-box .panl-detail.panel-footer .plan-left-d {
    width: 200px;
}

.plan-detail .plan-box .panl-detail.Total-p-box .plan-left-d {
    font-size: 18px;
}

.plan-detail .plan-box .panl-detail.Total-p-box .plan-right-p {
    color: #b089ff;
    font-size: 20px;
}

.address-box {
    padding: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.address-box .billing-box-address .adrs-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
}

.address-box .billing-box-address .adrs-heading img {
    max-height: 24px;
}

.address-box p {
    color: var(--Color-black, #000);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.7;
    margin: 0;
}

.download-invoice {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid var(--Color-secondry-2, #ece3ff);
    background: #fbfbfb;
}

.download-invoice a {
    border-radius: 33px;
    border: 1px solid #000;
    padding: 12px 25px;
    background: #fff;
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

.download-invoice a:hover {
    background: #ffd04f;
    border-color: #ffd04f;
}

.download-invoice p {
    color: #646464;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    margin: 0;
    text-align: center;
}

.download-invoice p span {
    color: #ffd04f;
}

@media (max-width: 991px) {
    .thanks-box img {
        max-width: 120px;
        margin-bottom: 0;
    }
    .plan-detail .plan-box .panl-detail.panel-footer .plan-left-d {
        max-width: 120px;
    }
    .plan-detail .plan-box .panl-detail .plan-right-p,.plan-detail .plan-box .plan-heading-box .price {
        max-width: 180px;
    }


    .address-box {
        gap: 30px;
        padding: 20px;
    }
    .thanks-box p {
        font-size: 16px;
    }

    .order-confirmed h2,.plan-detail h2, .thanks-box h3  {
        font-size: 25px;
    }
    .order-confirmed .order-detail-box .order-item .order-item-inner img{
        max-width: 18px;
    }
    .order-confirmed .order-detail-box .order-item .order-item-inner {
        font-size: 12px;
    }
    .order-confirmed .order-detail-box .order-item .order-item-inner-value {
        font-size: 14px;
    }
    .plan-detail .plan-box .plan-heading-box,
    .order-confirmed {
        padding: 20px;

    }


    .plan-detail .plan-box .plan-heading-box .heading ,.plan-detail .plan-box .plan-heading-box .price,.plan-detail .plan-box .panl-detail.Total-p-box .plan-right-p {
        font-size: 18px;
    }

    .plan-detail .plan-box .panl-detail {
        padding: 20px;
    }

    .plan-detail .plan-box .panl-detail .plan-left-d h3,.plan-detail .plan-box .panl-detail .plan-right-p {
        font-size: 16px;
    }
    .plan-detail .plan-box .panl-detail .plan-left-d p {
        font-size: 12px;
    }

    .address-box .billing-box-address .adrs-heading,
    .address-box p {
        font-size: 14px;
    }

    .address-box .billing-box-address .adrs-heading img {
        max-height: 16px;
    }
    .download-invoice {
        gap: 20px;
        padding: 20px;
    }
    .download-invoice a {
        font-size: 13px;   
    }
    .download-invoice p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .plan-detail {
        margin-bottom: 25px;
    }
    .order-confirmed .order-detail-box {
        flex-direction: column;
    }

    .plan-detail .plan-box .plan-heading-box, .order-confirmed {
        padding: 15px;
    }

    .plan-detail .plan-box .plan-heading-box .heading, .plan-detail .plan-box .plan-heading-box .price, .plan-detail .plan-box .panl-detail.Total-p-box .plan-right-p {
        font-size: 14px;
    }
    .plan-detail .plan-box .panl-detail .plan-right-p, .plan-detail .plan-box .plan-heading-box .price {
        max-width: 80px;
    }
    .plan-detail .plan-box .panl-detail .plan-left-d h3, .plan-detail .plan-box .panl-detail .plan-right-p {
        font-size: 14px;
    }
    .order-confirmed h2, .plan-detail h2, .thanks-box h3 {
        font-size: 18px;
    }

    .address-box {
        flex-direction: column;
        gap: 20px;
    }
}