@font-face {
    font-family: "AvenirNext LT Pro";
    src: url("font/AvenirNext-Regular.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: "AvenirNext LT Pro Bold";
    src: url("font/AvenirNext-Bold.otf") format("opentype");
    font-style: normal;
    font-weight: 600;
    font-display: swap
}

:root {

    --main-color: #1C1C1C;
    --black-color: #000;
    --white-color: #fff;
    --light-grey-color: #DFDFDF;
    --light-grey-color-2: #EFEFEF;
    --light-grey-color-3: #dedede;
    --light-grey-color-4: #0000008f;
    --light-grey-color-5: #E5E5E5;
    --light-grey-color-6: #F4F4F4;

    --theme-color: #003032;

    --grey-color-1: #838383;
    --grey-color-2: #595959;

    --warning-color: #f42837;
    --blue-color: #0000FF;

    --serif-font: 'AvenirNext LT Pro', serif;
    --sans-serif-font-bold: 'AvenirNext LT Pro Bold', sans-serif;
    --sans-serif-font: 'AvenirNext LT Pro', sans-serif;

    --body-font: 'AvenirNext LT Pro', sans-serif;

    --box-padding-32: 32px;
    --box-padding-20: 20px;
    --box-padding-16: 16px;
    --box-padding-10: 10px;
    --box-padding-5: 5px;

    --box-height: 56px;

    --bg: #f6f4f1;
    --surface: rgba(255, 255, 255, .92);
    --surface2: rgba(255, 255, 255, .82);
    --stroke: rgba(16, 24, 40, .08);

    --text: #0b1423;
    --muted: rgba(71, 85, 105, .9);

    --brand: #0d315a;
    --brand2: #3ac7a5;
    --accent: #ffc773;

    --ok: #16a34a;
    --warn: #d97706;

    --radius: 20px;
    --shadow: 0 30px 80px rgba(15, 23, 42, .14);
    --shadow2: 0 14px 32px rgba(15, 23, 42, .12);
    --blur: 18px;

    --max: 1180px;
    --gap: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    /* font-family: 'Space Grotesk', 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif; */
    color: var(--text);
    /* background:
        radial-gradient(980px 520px at 0% 0%, rgba(13, 49, 90, .18), transparent 60%),
        radial-gradient(960px 520px at 100% 4%, rgba(58, 199, 165, .18), transparent 56%),
        linear-gradient(180deg, #f9fbff 0%, #f5f7fb 70%, #eef2f8 100%); */
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* body::before,
body::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body::before {
    background:
        radial-gradient(720px 420px at 20% 16%, rgba(13, 49, 90, .22), transparent 55%),
        radial-gradient(680px 360px at 88% 12%, rgba(58, 199, 165, .24), transparent 60%);
    filter: blur(70px);
    opacity: .9;
}

body::after {
    background:
        linear-gradient(120deg, rgba(13, 49, 90, .12), transparent 30%),
        linear-gradient(300deg, rgba(58, 199, 165, .18), transparent 36%);
    mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, .6), transparent 65%);
} */


body {
    font-family: var(--body-font) !important;
    font-size: 16px;

    line-height: unset;
    transition: overflow .3s linear;
}

a {
    cursor: pointer;
}

button,
input,
optgroup,
select,
textarea {
    font-family: var(--body-font) !important;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    /* height: auto; */
    /* display: block; */
}

table {
    max-width: 100%;
    box-sizing: border-box;
}

INPUT[type="text"],
INPUT[type="password"],
SELECT.ddl_list3 {
    color: inherit !important;
    background-color: unset !important;
}

SELECT.ddl_list3 {
    border-radius: 10px;
    font-size: 14px;
    padding: 8px 10px;
    letter-spacing: 0.5px;
    font-weight: 400 !important;
    color: #000;
}

.checkout_one_page_header_panel {
    border-bottom: 1px solid var(--light-grey-color);
    padding: var(--box-padding-16) 0;
}

.checkout_one_page_header_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout_one_page_header_bar .checkout_header_left_menu,
.checkout_one_page_header_bar .checkout_header_right_menu {
    flex: 1;
}

.checkout_one_page_header_bar .checkout_header_center_menu {
    flex: 3;
}

.checkout_one_page_header_bar .checkout_header_center_menu #site_logo {
    max-width: 200px;
}

.checkout_one_page_header_bar .checkout_header_center_menu {
    flex: 3;
    text-align: center;
}

.checkout_one_page_header_bar .checkout_header_right_menu {
    text-align: right;
}

select {
    -webkit-appearance: none;
    /* Remove default styling in WebKit browsers */
    -moz-appearance: none;
    /* Remove default styling in Firefox */

    background: #fff url(../site_media/img/icons/arrow_down.svg) 98% 50% no-repeat !important;
    background-size: 18px !important;
    cursor: pointer;
}

.ck-wrap {
    width: 100%;
    /* max-width: var(--max); */
    /* margin: 0 auto; */
    /* padding: 28px 18px 120px; */
    position: relative;
    z-index: 1;
    /* padding: 16px 0; */
    padding: 0 0 16px;
}

.ck-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: calc(var(--gap) + 6px);
    align-items: start;
}

.ck-grid>* {
    min-width: 0;
}

.ck-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 14px; */
    /* padding: 14px 16px 26px; */
    /* background: linear-gradient(120deg, rgba(13, 49, 90, .12), rgba(255, 255, 255, .7)); */
    /* border: 1px solid rgba(16, 24, 40, .08); */
    border-radius: 0px;
    /* box-shadow: var(--shadow2); */
    margin: 16px 0 32px;
}

.ck-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ck-logo {
    width: 190px;
    max-width: 46vw;
    background: radial-gradient(circle at 20% 20%, rgba(13, 49, 90, .10), transparent 50%), var(--surface);
    border: 1px solid rgba(13, 49, 90, .18);
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 14px 32px rgba(13, 49, 90, .12);
}

.ck-title {
    line-height: 1.15;
}

.ck-title h1 {
    margin: 0;
    font-family: var(--sans-serif-font-bold);
    font-size: 40px;
    font-weight: bold;
    /* letter-spacing: .3px; */
    text-transform: uppercase;
}

.ck-title strong {
    color: var(--black-color);
}

.ck-title p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
    letter-spacing: .15px;
}

.css_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(16, 24, 40, .12);
    background: linear-gradient(135deg, rgba(16, 24, 40, .08), rgba(16, 24, 40, .16));
    color: #0b1423;
    box-shadow: 0 10px 28px rgba(16, 24, 40, .12);
    font-weight: 800;
    font-size: 12.5px;
    transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}

/* .css_btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
} */

.css_btn:active {
    transform: translateY(0);
}

.css_btn_cancel {
    /* background: linear-gradient(135deg, #f87171, #ef4444); border: 1px solid rgba(239, 68, 68, .2); box-shadow: 0 10px 24px rgba(239, 68, 68, .22);*/
    background: transparent;
    color: #7E7772;
    letter-spacing: 1px;

    box-shadow: unset;
    padding: 0;
    border-radius: 32px;
    height: 100%;
    font-size: 12px;
    display: flex
;
    align-items: center;
    justify-content: center;
    /* width: 100%; */
    border: 0;
    box-sizing: unset;

    text-transform: uppercase;
    text-decoration: none !important;
    transition: all .3s linear;


}

.css_btn_cancel:hover {
    /*background: linear-gradient(135deg, #ef4444, #dc2626);
    border: 1px solid rgba(239, 68, 68, .32);
    box-shadow: 0 12px 28px rgba(239, 68, 68, .28);
    color: #fff;
    */

    filter: none;
    background: transparent;
    border: 0px solid rgba(239, 68, 68, .32);
    box-shadow: unset;
    color: var(--warning-color);
    transform: translateY(0px);
}

.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ck-card {
    /* background: linear-gradient(160deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .86)); */
    /* border: 1px solid rgba(16, 24, 40, .08); */
    border-radius: 0px;
    /* box-shadow: var(--shadow); */
    overflow: visible;
    max-width: 100%;
    box-sizing: border-box;
}

.ck-card-hd {
    /* padding: 20px 22px; */
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    /* border-bottom: 1px solid rgba(16, 24, 40, .06); */
    /* background: linear-gradient(120deg, rgba(12, 141, 118, .06), rgba(255, 255, 255, .92)); */
    padding: 16px 0 0;
    
}

.ck_card_special {
    flex-wrap: wrap;

    position: sticky;
    top: 0;
    z-index: 5;
}

.ck-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    /* font-weight: 900; */
    /* letter-spacing: .2px; */
    font-size: 20px;
    font-weight: bold;
}

.ck-card-sub {
    color: var(--muted);
    font-size: 12.5px;
    margin-top: 5px;
    letter-spacing: .15px;
}

.ck-card-bd {
    padding: 22px;
    /* border-bottom-left-radius: var(--radius); */
    /* border-bottom-right-radius: var(--radius); */
    overflow: hidden;

    padding: 16px 0;
}

.ck-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(58, 199, 165, .32);
    background: linear-gradient(135deg, rgba(58, 199, 165, .2), rgba(58, 199, 165, .08));
    color: rgba(13, 49, 90, .95);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.ck-search {
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, .9);
    padding: 6px;
    border-radius: 16px;
    /* border: 1px solid rgba(16, 24, 40, .06); */
    /* box-shadow: 0 10px 22px rgba(16, 24, 40, .08); */
    border: 1px solid var(--light-grey-color-3);

    max-width: 360px;
    padding: 0;
    border-radius: 32px;
    margin-top: 15px;
}

.ck-actions a.css_btn {
    background: var(--theme-color);
    color: var(--white-color);
    width: 100%;
    height: 100%;
    min-width: 200px;
    max-width: 100%;
    border-radius: 32px;
    padding: var(--box-padding-16);
    margin-top: 16px;
    font-size: 12px;
    text-transform: uppercase;
}

.ck-actions a.css_btn_secondary {
    margin-top: 0px;
    color: var(--theme-color);
    background-color: transparent;
    border: 1px solid var(--theme-color);
}

#product_search_btn {
    /* width: 46px; */
    /* height: 46px; */
    /* border-radius: 14px; */
    /* border: 1px solid rgba(13, 49, 90, .22); */
    /* background: linear-gradient(135deg, rgba(13, 49, 90, .12), rgba(58, 199, 165, .28)); */
    /* padding: 10px; */
    /* box-shadow: 0 14px 28px rgba(13, 49, 90, .18); */
    transition: transform .12s ease, filter .12s ease;

    margin-right: 16px;
}

#product_search_btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
}

#product_search_btn:active {
    transform: translateY(0);
}

.ck-input,
.loginField_box,
.ddl_list3,
.ddl_list,
.one_page_checkout_redemption_field {
    width: 100%;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(16, 24, 40, .08);
    background: rgba(255, 255, 255, .86);
    color: var(--text);
    padding: 0 14px;
    outline: none;
    transition: box-shadow .15s ease, border-color .15s ease, background .15s ease, transform .1s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
}

.ck-input::placeholder,
.loginField_box::placeholder {
    color: rgba(28, 28, 28, .42);
}

/* .ck-input:focus,
.loginField_box:focus,
.ddl_list3:focus,
.ddl_list:focus,
.one_page_checkout_redemption_field:focus {
    border-color: rgba(12, 141, 118, .65);
    box-shadow: 0 10px 24px rgba(12, 141, 118, .18), 0 0 0 4px rgba(12, 141, 118, .18);
    background: #fff;
    transform: translateY(-1px);
} */

.quick_checkout_delviery_table td,
.quick_checkout_shipping_table td {
    padding-top: 10px;
}

.ck-fieldrow {
    position: relative;
}

.quick_checkout_save {
    position: absolute;
    right: 12px;
    top: 10px;
    margin: 0;

    display: none;
}

.quick_checkout_save a img {
    opacity: .75;
    filter: grayscale(1) contrast(1.1);
    transition: opacity .12s ease, transform .12s ease;
}

.quick_checkout_save a:hover img {
    opacity: 1;
    transform: translateY(-1px);
}

.ck-btn,
.css_btn_full,
.special_submit,
.one_page_checkout_redemption_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* height: 48px; */
    padding: 0 20px;
    /* border-radius: 16px; */
    border: none;
    cursor: pointer;
    /* font-weight: 950; */
    /* letter-spacing: .2px; */
    color: #fff;
    /* background: linear-gradient(135deg, var(--brand), var(--brand2)); */
    /* box-shadow: 0 18px 38px rgba(13, 49, 90, .32); */
    /* transition: transform .12s ease, filter .12s ease, box-shadow .12s ease; font-size: 16px; */

    background: var(--theme-color);
    border-radius: 32px;
    text-transform: uppercase;
    height: 100%;
    padding: var(--box-padding-16);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid var(--theme-color);
}

/* .ck-btn:hover,
.css_btn_full:hover,
.special_submit:hover,
.one_page_checkout_redemption_button:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .22);
} */

#save_delivery, #save_delivery:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.ck-btn:active,
.css_btn_full:active,
.special_submit:active,
.one_page_checkout_redemption_button:active {
    transform: translateY(0);
}

#cancel_delivery,
#cancel_choices {
    display: inline-block;
    margin-top: 10px;
    color: var(--muted);
    font-weight: 900;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cart_panel {
    margin-top: 15px;
}

.ck-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* margin-top: 32px; */
}

.products_content {
    /* display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 15px; */
    /* border-radius: 20px; */
    border: 1px solid rgba(16, 24, 40, .06);
    /* background: linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .82)); */
    /* box-shadow: 0 18px 36px rgba(15, 23, 42, .12); */

    border-radius: 10px;
    background-color: #F4F6F6;

    display: flex;
    align-items: stretch;
    gap: 15px;
}

.products_content_left img {
    width: 100%;
    height: 100%;
    /* height: auto; */
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(16, 24, 40, .08);
    background: #fff;
    /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8); */

    border-radius: 8px;
}

.products_content_right {
    padding: 0;
    min-width: 0;
}

.product-item__detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* .products_content_right span {
    display: block;
    line-height: 1.45;
    word-wrap: break-word;
}

.products_content_right span:first-child {
    font-weight: 900;
    font-size: 14px;
    color: var(--text);
}

.products_content_right span:nth-child(n+2) {
    color: var(--muted);
    font-size: 13px;
} */

.control_quantity {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    /* border-radius: 12px; */
    border-radius: 50%;
    border: 1px solid rgba(16, 24, 40, .10);
    background: rgba(255, 255, 255, .92);
    cursor: pointer;
    /* box-shadow: 0 12px 22px rgba(16, 24, 40, .10); */
    transition: transform .12s ease, filter .12s ease;
}

/* .control_quantity:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
}

.control_quantity:active {
    transform: translateY(0);
} */

.control_quantity i {
    font-size: 12px;
    color: rgba(28, 28, 28, .9);
}

.products_content_remove .control_quantity {
    width: 40px;
    height: 40px;
    /* border-color: rgba(220, 38, 38, .18); */
    background: rgba(255, 255, 255, .92);
}

.products_content_remove .control_quantity i {
    /* color: rgba(220, 38, 38, .85); */
    color: var(--light-grey-color-4);
}

.nostock,
.markProductOutOfStock {
    display: inline-block;
    margin-top: 10px;
    color: rgba(155, 28, 28, .98);
    background: rgba(254, 226, 226, .85);
    border: 1px solid rgba(220, 38, 38, .18);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

#delivery_summary,
#shipping_summary {
    padding: 14px 16px;
    border-radius: 10px;
    /* background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 199, 115, .12)); */
    border: 1px solid rgba(16, 24, 40, .06);
    color: var(--black-color);
    line-height: 1.5;
    /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7); */

    background-color: #efefef;
}

.checkout_shipping_option,
.checkout_payment_option {
    padding: 16px;
    text-transform: capitalize;
    /* border-radius: 10px; */

     /* background: linear-gradient(160deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .8)); */
    /* border-radius: 20px; */
    /* margin: 12px 0; */
    overflow: hidden;
    /* box-shadow: 0 14px 30px rgba(15, 23, 42, .12); */
    /* transition: border .12s ease, transform .12s ease, box-shadow .12s ease; */
}

.checkout_shipping_option,
.checkout_payment_option {
    border-left: 1px solid var(--light-grey-color-3);
    border-right: 1px solid var(--light-grey-color-3);
    border-bottom: 1px solid var(--light-grey-color-3);
}

.checkout_shipping_option,
.checkout_payment_option {
    border-radius: 0;
}

#shipping_form #shipping_panel .checkout_shipping_option:first-child,
#payment_form table tr:first-child .checkout_payment_option {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-top: 1px solid var(--light-grey-color-3);
}

#shipping_form #shipping_panel .checkout_shipping_option:last-child,
#payment_form table tr:last-child .checkout_payment_option {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* .checkout_shipping_option:hover,
.checkout_payment_option:hover {
    border-color: rgba(13, 49, 90, .3);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
} */

/* .moduleRowSelected {
    border-color: rgba(58, 199, 165, .9) !important;
    box-shadow: 0 18px 40px rgba(58, 199, 165, .22) !important;
} */

.checkout_shipping_option b,
.checkout_payment_option b {
    color: rgba(28, 28, 28, .92) !important;
}

.checkout_shipping_option .main,
.checkout_payment_option .main {
    color: var(--muted);
    font-size: 13px;
    /* line-height: 1.5; */
    width: 30px;
    padding: 0 !important;
}

.checkout_shipping_option .main2{
    color: var(--black-color);
    font-weight: bold;
    text-align: right;
}

input[type="radio"] {
    transform: scale(1.05);
}

#checkout_total_panel table {
    width: 100%;
    border-collapse: collapse;
}

.fast_checkout_table td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(25, 25, 25, .08);
    width: auto;
}

.fast_checkout_table tr:last-child td {
    border-bottom: none;
}

.fast_checkout_table td:last-child {
    text-align: right;
    font-weight: 900;
    color: rgba(28, 28, 28, .92);
}

.fast_checkout_table tr:last-child td:last-child {
    font-size: 18px;
    font-weight: 950;
}

/* .one_page_checkout_redemption_panel {
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(240, 253, 250, .80));
    box-shadow: var(--shadow2);
} */

.one_page_checkout_redemption_confirm_panel {
    display: flex;
    justify-content: space-between;

    border: 1px solid var(--light-grey-color-3) !important;
    padding: 0px;
    border-radius: 32px;
}

.one_page_checkout_redemption_confirm_panel INPUT[type="text"] {
    border: 0 !important;
}

.one_page_checkout_redemption_title {
    font-weight: 950;
    margin-bottom: 6px;
}

.one_page_checkout_redemption_desc {
    color: var(--muted);
    font-size: 13px;
}

.one_page_checkout_redemption_confirm_panel {
    display: flex;
    gap: 10px;
    /* margin-top: 12px; */
}

.one_page_checkout_redemption_error {
    margin-top: 10px;
    color: rgba(220, 38, 38, .95);
    font-weight: 900;
    font-size: 12px;
    display: none;
}

.ck-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9990;
    padding: 12px;
    background: rgba(255, 255, 255, .78);
    border-top: 1px solid rgba(25, 25, 25, .10);
    backdrop-filter: blur(var(--blur));
}

.ck-bottom-total small {
    color: var(--muted);
}

.ck-bottom-total strong {
    font-size: 18px;
    letter-spacing: .2px;
    color: rgba(28, 28, 28, .92);
}

.overlay,
.fast_checkout_overlay {
    background: rgba(28, 28, 28, .18) !important;
    backdrop-filter: blur(6px);
}

.fast_checkout_modal_scrollable {
    max-width: 760px;
    margin: 40px auto;
    height: calc(100vh - 80px);
    display: flex;
}

.fast_checkout_modal_content {
    border-radius: 22px;
    border: 1px solid rgba(25, 25, 25, .10);
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, .92);
    color: rgba(28, 28, 28, .92);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 100%;
}

.fast_checkout_modal_header {
    border-bottom: 1px solid rgba(25, 25, 25, .10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 14px 16px;
}

.fast_checkout_modal_body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .25) transparent;
}

.fast_checkout_modal_body::-webkit-scrollbar {
    width: 6px;
}

.fast_checkout_modal_body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .25);
    border-radius: 6px;
}

.fast_checkout_modal_exit {
    display: inline-flex;
    width: 22px;
    opacity: .8;
}

.fast_checkout_modal_exit:hover {
    opacity: 1;
}

.fast_checkout_modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    transition: opacity .15s linear;
}

.fast_checkout_modal_header {
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.break_space {
    height: 12px;
}

.fast_checkout_hide {
    display: none;
}

.quick_checkout_search {
    position: static;
    margin: 0;
}

.loading_box {
    top: 45%;
    border-radius: 18px;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    max-width: 520px;
    min-width: 320px;
    z-index: 10010;
    display: none;
}

.products_content_left {
    /* align-self: stretch;
    display: flex; */
    width: 30%;
}

.products_content_remove {
    display: flex;
    align-items: center;
}

/* .products_content_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
} */

.products_content {
    grid-template-columns: 96px 1fr auto;

    display: flex;
    /* align-items: flex-start; */
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    height: 100%;
}

.product-item__attr {
    color: var(--line-through-color);
    font-size: 13px;
}

.products_content_right span:has(.control_quantity) {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.products_content_right span:has(.control_quantity) .control_quantity {
    width: 38px;
    height: 38px;
    /* border-radius: 12px; */
}

INPUT[type="submit"].special_submit {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: var(--box-padding-16);
    width: 100%;
    height: 100%;
    border-radius: 32px;
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: var(--white-color);
    line-height: unset;
}

INPUT[type="submit"].special_submit:hover {
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
}

.shipping_edit {
    /* display: none; */
    position: absolute;
    right: 14px;
    top: 14px;
}

.step {
    color: var(--text);
    font-weight: bold;
    letter-spacing: 1px;

    margin-top: 5px;
}

#payment_panel table tr:first-child .checkout_payment_option{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-top: 1px solid var(--light-grey-color-3);
}

#payment_panel table tr:last-child td:first-child .checkout_payment_option {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;

}

INPUT[type="text"], INPUT[type="password"] {
    background: #fff;
    color: #919191;
    width: 100%;
    border-radius: var(--box-padding-5);
    padding: var(--box-padding-16);
    height: 100%;

    border: 1px solid var(--light-grey-color-3) !important;
}

INPUT[type="submit"].checkout_submit {
    /* font-size: 9pt; */
    /* padding: 3px 9px; */

    background: var(--theme-color);
    font-size: 12px;
    color: var(--white-color);
    padding: 16px 32px;
    text-transform: uppercase;
    border: 0px #cecece solid;
    /* height: 33px; */
    line-height: unset;
    width: auto;
    cursor: pointer;
    /* border: 1px #595959 solid; */
    /* font-weight: normal; */
    /* box-shadow: 0px 2px 3px 0px #ccc; */
    height: 100%;
    border-radius: 32px;
}

#product_search {
    border: 0 !important;
}

/* .products_content_remove {
    position: absolute;
    top: 5px;
    right: 5px;
} */

.product-item_qty {
    background-color: var(--light-grey-color-5);
    border-radius: 32px;
}

.quantity-value {
    min-width: 30px;
    text-align: center;
}

.final_total_pay {
    font-size: 14px;
}

.ck-card-bd INPUT[type="text"]:focus,
.ddl_list3:focus {
    border: 1px #555 solid !important;
    box-shadow: none;
}

.one_page_checkout_redemption_confirm_panel INPUT[type="text"]:focus {
    border: 0 !important;
}

.products_content {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
}

.ck-card-hd .ck-search {
    width: 100%;
    max-width: 100%;
}

.summary_panel .shipping_edit i {
    font-size: 14px;
}

.checkout_payment_option_title_inner_desc {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    gap:10px;
}

.moduleRowSelected {
    background-color: #fff;
}

.cart_summary {
    background-color: #F4F6F6;
}

.fast_confirm_modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.fast_confirm_box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
}

.confirm_actions {
    font-size: 12px;
    padding: 16px;
    text-transform: uppercase;
    width: auto;
    cursor: pointer;

    height: 100%;
    border-radius: 32px;
    min-width: 120px;
    border: 1px solid var(--theme-color);
}

#confirmYes {
    background-color: var(--theme-color);
    color: var(--white-color);
    margin-left: 15px;
}

#confirmNo {
    background-color: transparent;
    color: var(--theme-color);
}

.fast_checkout_table {
    width: 100%;
}

.no_shipping_option {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.cart_info {
    display: none;
}

.dropship_user_info {
    margin-top: 16px;
}

.ads_reference_option{
    margin-top:18px; padding:18px 20px; border:1px solid #e7e2d9; border-radius:16px; background:linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%); box-shadow:0 8px 24px rgba(0,0,0,0.03);
}

@media only screen and (max-width: 1050px) {

    .checkout_header_left_menu,
    .checkout_header_right_menu {
        display: block;
    }

}

@media (max-width: 980px) {
    .ck-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* .ck-wrap {
        padding-left: 14px;
        padding-right: 14px;
    } */
}

@media only screen and (max-width: 920px) {}

@media (max-width: 680px) {
    .ck-title p {
        display: none;
    }

    .cart_info {
        display: block;
    }

    .dropship_user_info {
        background-color: #EAEAEC;
        padding: 30px 15px;
        border-radius: 10px;
    }

    .ck-header {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .ck-search input[type="text"] {
        min-width: 0;
        flex: 1;
    }

    .ck-search input[type="image"] {
        flex-shrink: 0;
    }

    .ck-actions {
        width: 100%;
        margin-left: 0 !important;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }

    .ck-actions .css_btn,
    .ck-actions a.css_btn {
        width: 100%;
        text-align: center;
        /* max-width: 150px; */
        max-width: 100%;
        font-size: 12px;
    }

    .products_content {
        grid-template-columns: 1fr;
    }

    /* .products_content_left {
        width: 100%;
        max-width: 160px;
        margin: 0 auto;
    } */

    /* .products_content_left img {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
        object-fit: cover;
    } */

    .products_content {
        position: relative;
    }

    .products_content_right span:has(.control_quantity) {
        gap: 6px;
        font-size: 14px;
    }

    .products_content_right span:has(.control_quantity) .control_quantity {
        width: 32px;
        height: 32px;
        /* border-radius: 10px; */
    }

    /* .products_content_right span:last-of-type {
        margin-top: 8px;
        font-weight: 600;
    } */

    .ck-card-hd {
        align-items: flex-start;
        gap: 10px;
    }

    /* .ck-card-hd>div:first-child {
        width: 100%;
    } */

    .ck-card-hd .ck-search input[type="text"] {
        flex: 1;
        min-width: 0;
    }

    .ck-card-hd .ck-search input[type="image"] {
        flex-shrink: 0;
    }

    .ck-actions a.css_btn {
        min-width: 150px;
    }

    .dropship_user_info {
        margin-top: 16px;
    }

    .checkout_payment_option_title_inner_desc {
        display: block;
    }

    .checkout_payment_option_title_inner_desc img, .checkout_payment_option_title_inner_desc Input[type="file"] {
        margin-top: 5px;
    }
}

@media only screen and (max-width: 610px) {
    body {
        font-size: 14px;
    }

    .checkout_one_page_header_bar .logo {
        display: block;
    }

    .checkout_one_page_header_bar .checkout_header_center_menu #site_logo {
        max-width: 130px;
    }

    .checkout_one_page_header_bar .checkout_header_left_menu,
    .checkout_one_page_header_bar .checkout_header_center_menu,
    .checkout_one_page_header_bar .checkout_header_right_menu {
        padding: 0;
    }
}

@media (max-width:520px) {
    /* .one_page_checkout_redemption_confirm_panel {
        flex-direction: column;
    } */
}

@media (max-width:480px) {
    /* .ck-card-hd {
        padding: 16px;
    } */

    /* .ck-card-bd {
        padding: 16px;
    } */

    .products_content {
        grid-template-columns: 70px 1fr auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }
}