/* BASE MAIN */

:root {

    --color-primary-400: #7A232F;
    --color-primary-500: #6A0A18;
    --color-primary-600: #5F0A15;

    --color-dark: #333333;
    --color-body: #4D4D4D;
    --color-body-secondary: #666666;

    --color-gray-100: #F7F7F7;
    --color-gray-200: #EFEFEF;

    --color-placeholder: #808080;
    --color-border: #E5E5E5;

    --bg-body: #F2F2F2;
    --bg-input-file: #E7ECF1;
    --bg-input-file-hover: #E1E6E9;
    --bg-select: #F9F9F9;

    --color-blue: #2380EE;
    --color-success: #5DE2AA;
    --color-danger: #DC3334;

}

/* Fonts */
/* Fonts Montserrat */
@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat/Montserrat-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat/Montserrat-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}

/* Font Quicksand */
@font-face {
    font-family: "Quicksand";
    src: url(../fonts/Quicksand/Quicksand-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Quicksand";
    src: url(../fonts/Quicksand/Quicksand-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "Quicksand";
    src: url(../fonts/Quicksand/Quicksand-SemiBold.ttf);
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: "Quicksand";
    src: url(../fonts/Quicksand/Quicksand-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}



.font-montserrat {
    font-family: "Montserrat";
}
.font-quicksand {
    font-family: "Quicksand";
}



body {
    font-family: "Quicksand", "Segoe UI", Arial, Segoe, "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-body);
    background-color: var(--bg-body);
    position: relative;
    font-weight: 500;
}

a {
    text-decoration: none;
    transition: all 0.25s;
}

a:hover,
a:focus {
    color: var(--color-primary-500);
    text-decoration: none;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

* {
    padding: 0;
    margin: 0;
    outline: none !important;
}

img {
    max-width: 100%;
}



/* Font size */

.fs-13 {
    font-size: 13px;
}
.fs-14 {
    font-size: 14px;
}
.fs-16 {
    font-size: 16px;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}
.fs-24 {
    font-size: 24px;
}
.fs-28 {
    font-size: 28px;
}
.fs-32 {
    font-size: 32px;
}

@media (min-width: 576px) {

    .fs-sm-13 {
        font-size: 13px;
    }

    .fs-sm-14 {
        font-size: 14px;
    }

    .fs-sm-16 {
        font-size: 16px;
    }
    .fs-sm-18 {
        font-size: 18px;
    }

    .fs-sm-20 {
        font-size: 20px;
    }

    .fs-sm-24 {
        font-size: 24px;
    }

    .fs-sm-28 {
        font-size: 28px;
    }

    .fs-sm-32 {
        font-size: 32px;
    }
}

@media (min-width: 768px) {
    .fs-md-13 {
        font-size: 13px;
    }

    .fs-md-14 {
        font-size: 14px;
    }
    .fs-md-16 {
        font-size: 16px;
    }
    .fs-md-18 {
        font-size: 18px;
    }

    .fs-md-20 {
        font-size: 20px;
    }

    .fs-md-24 {
        font-size: 24px;
    }

    .fs-md-28 {
        font-size: 28px;
    }

    .fs-md-32 {
        font-size: 32px;
    }
}

@media (min-width: 992px) {

    .fs-lg-13 {
        font-size: 13px;
    }

    .fs-lg-14 {
        font-size: 14px;
    }

    .fs-lg-16 {
        font-size: 16px;
    }
    .fs-lg-18 {
        font-size: 18px;
    }

    .fs-lg-20 {
        font-size: 20px;
    }
    .fs-lg-24 {
        font-size: 24px;
    }

    .fs-lg-28 {
        font-size: 28px;
    }

    .fs-lg-32 {
        font-size: 32px;
    }
}

@media (min-width: 1200px) {
    .fs-xl-13 {
        font-size: 13px;
    }

    .fs-xl-14 {
        font-size: 14px;
    }
    .fs-xl-16 {
        font-size: 16px;
    }
    .fs-xl-18 {
        font-size: 18px;
    }

    .fs-xl-20 {
        font-size: 20px;
    }

    .fs-xl-24 {
        font-size: 24px;
    }

    .fs-xl-28 {
        font-size: 28px;
    }

    .fs-xl-32 {
        font-size: 32px;
    }
}

@media (min-width: 1400px) {
    .fs-xxl-13 {
        font-size: 13px;
    }

    .fs-xxl-14 {
        font-size: 14px;
    }

    .fs-xxl-16 {
        font-size: 16px;
    }
    .fs-xxl-18 {
        font-size: 18px;
    }

    .fs-xxl-20 {
        font-size: 20px;
    }

    .fs-xxl-24 {
        font-size: 24px;
    }

    .fs-xxl-28 {
        font-size: 28px;
    }

    .fs-xxl-32 {
        font-size: 32px;
    }
}








/* Color */
.text-primary {
    color: var(--color-primary-500) !important;
}

.text-dark {
    color: var(--color-dark) !important;
}

.text-body {
    color: var(--color-body) !important;
}
.text-body-secondary {
    color: var(--color-body-secondary) !important;
}

.text-success {
    color: var(--color-success) !important;
}

.text-danger {
    color: var(--color-danger) !important;
}
.text-white {
    color: #fff !important;
}



.hover\:text-primary:hover {
    color: var(--color-primary-500) !important;
}


.hover\:text-dark:hover {
    color: var(--color-dark) !important;
}

.hover\:text-body:hover {
    color: var(--color-body) !important;
}
.hover\:text-body-secondary:hover {
    color: var(--color-body-secondary) !important;
}

.hover\:text-success:hover {
    color: var(--color-success) !important;
}

.hover\:text-danger:hover {
    color: var(--color-danger) !important;
}
.hover\:text-white:hover {
    color: #fff !important;
}


.text-underline,
.hover-underline {
    display: inline-block;
    padding: 0;
    position: relative;
}

.text-underline::after,
.hover-underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.5px;
    background-color: currentColor;
    opacity: 0;
    width: 0;
    transition: all .25s;
}

.text-underline::after,
.hover-underline:hover::after {
    opacity: 1;
    width: 100%;
}



/* CONTAINER */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.container-fluid {
    padding-left: 24px;
    padding-right: 24px;
}


/* END CONTAINER */


/* STICKY FOOTER */
#page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

#site-content {
    flex: 1;
}

/* END STICKY FOOTER */


/* Paragraph's lines */
/* .text-truncate-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }  */

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* End paragraph's lines */



/* Whitespace */
.whitespace-normal {
    white-space: normal;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.whitespace-pre {
    white-space: pre;
}

.whitespace-pre-line {
    white-space: pre-line;
}

.whitespace-pre-wrap {
    white-space: pre-wrap;
}



/* thumb */
.ratio-thumb {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    display: block;
}

.ratio-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.ratio-1x1 {
    padding-bottom: 100%;
}

.ratio-2x1 {
    padding-bottom: 50%;
}

.ratio-3x2 {
    padding-bottom: 66%;
}

.ratio-4x3 {
    padding-bottom: 75%;
}

.ratio-16x9 {
    padding-bottom: 56.25%;
}
.ratio-9x16 {
    padding-bottom: 144%;
}



/* Hover */
.hover-opacity {
    transition: all .25s;
}

.hover-opacity-75:hover {
    transition: all .25s;
    opacity: .75;
}

.hover-opacity-80:hover {
    transition: all .25s;
    opacity: .80;
}

.hover-opacity-85:hover {
    transition: all .25s;
    opacity: .85;
}

.hover-opacity-90:hover {
    transition: all .25s;
    opacity: .90;
}


.svg * {
    transform: all .25s;
}

.hover-svg-item:hover svg *[fill] {
    fill: var(--color-primary-500);
}

.hover-svg-item:hover svg *[stroke] {
    stroke: var(--color-primary-500);
}


.hover-img-effect {
    position: relative;
    overflow: hidden;
    display: block;
}

.hover-img-effect:after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), 0, hsla(0, 0%, 100%, .2));
    transform: skew(-25deg);
    z-index: 1;
}

.hover-img-effect:hover:after {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    to {
        left: 125%
    }
}

@keyframes shine {
    to {
        left: 125%
    }
}


.cursor-pointer {
    cursor: pointer;
}




/* Z-Index */
.z-auto {
    z-index: auto;
}

.z-max {
    z-index: 9999;
}


/* scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    -webkit-appearance: none;
}

.custom-scrollbar::-webkit-scrollbar:vertical {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar:horizontal {
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    border: 0px solid #ffffff;
}

.custom-scrollbar::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--color-gray-100);
}




/* Form control */






.no-resize {
    resize: none;
}


/* FIX BS FOMR CONTROL */
.form-control,
select.form-select{
    font-size: 14px;
    border-radius: 4px !important;
    box-shadow: none !important;
    padding: 13px 12px !important;
    border-color: var(--color-border) !important;
    font-weight: 500;
    line-height: 1.28;
    color: var(--color-dark);
}
.form-control:focus{
    border-color: var(--color-primary-400) !important;
}
.form-label{
    font-weight: 600;
    color: var(--color-dark);
    font-size: 16px;
    margin-bottom: 10px;
}
select.form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-position: center right 12px;
    /* background-color: var(--bg-select); */
}

select.form-select {
    background-image: url('../images/icons/select-arrow.svg');
    background-size: 20px 20px;
    padding-right: 44px !important;
}




/* BUTTON */
.btn:not(.btn-sm):not(.btn-lg) {
    padding: 14px 22px !important;
}
.btn.btn-sm {
    padding: 8px 16px !important;
    font-size: 13px !important;
}
.btn {
    font-weight: 600 !important;
    line-height: 1.25;
    font-size: 16px !important;
}
.btn:not(.rounded-0) {
    border-radius: 4px !important;
}
.btn-primary {
    background-color: var(--color-primary-500) !important;
    border-color: var(--color-primary-500) !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-primary-600) !important;
    border-color: var(--color-primary-600) !important;
}


.btn-outline-primary {
    color: var(--color-primary-500) !important;
    border-color: var(--color-border) !important;
    background-color: #fff !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    border-color: var(--color-primary-500) !important;
}

.btn-outline-secondary {
    color: var(--color-dark) !important;
    border-color: var(--color-border) !important;
    background-color: #fff !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background-color: var(--color-gray-100) !important;
}


.btn:hover svg *[fill]
{
    fill: currentColor !important;
}

.btn:hover svg *[stroke]
{
    stroke: currentColor !important;
}




/* CHECKBOX */

.custom-checkbox {
    display: flex;
    position: relative;
    align-items: center;
    gap: 8px;
    padding-left: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



.custom-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}



.custom-checkbox-mark {
    position: relative;
    height: 20px;
    width: 20px;
    border: 1px solid #D9D9D9;
    order: -1;
    border-radius: 4px;
    transition: all .25s;
    min-width: 20px;
}



.custom-checkbox-mark:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-50%, -50%);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    transition: all .25s;
}



.custom-checkbox-input:checked~.custom-checkbox-mark {
    border: 1px solid var(--color-primary-500);
    background: var(--color-primary-500);
}



.custom-checkbox-input:checked~.custom-checkbox-mark:after {
    opacity: 1;
    visibility: visible;
}



/* Radio */

.custom-radio {
    display: flex;
    position: relative;
    align-items: center;
    gap: 12px;
    padding-left: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



.custom-radio-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}



.custom-radio-mark {
    position: relative;
    height: 16px;
    width: 16px;
    border: 1px solid #808080;
    order: -1;
    border-radius: 16px;
    transition: all .25s;
    min-width: 16px;
}



.custom-radio-mark:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    transform-origin: center;
    background-color: var(--color-blue);
    opacity: 0;
    visibility: hidden;
    transition: all .25s;
}



.custom-radio-input:checked~.custom-radio-mark {
    border: 1px solid var(--color-blue);

}



.custom-radio-input:checked~.custom-radio-mark:after {
    opacity: 1;
    visibility: visible;
}




/* Width height */

.flex-1 {
    flex: 1;
    min-width: 1px;
}

.h-auto {
    height: auto;
}
.h-full {
    height: 100%;
}
.w-auto {
    width: auto;
}
.w-full {
    width: 100%;
}
@media (min-width: 576px) {
    .h-sm-auto {
        height: auto;
    }
    .h-sm-full {
        height: 100%;
    }
    .w-sm-auto {
        width: auto;
    }
    .w-sm-full {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .h-md-auto {
        height: auto;
    }
    .h-md-full {
        height: 100%;
    }
    .w-md-auto {
        width: auto;
    }
    .w-md-full {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .h-lg-auto {
        height: auto;
    }
    .h-lg-full {
        height: 100%;
    }
    .w-lg-auto {
        width: auto;
    }
    .w-lg-full {
        width: 100%;
    }
}
@media (min-width: 1200px) {
    .h-xl-auto {
        height: auto;
    }
    .h-xl-full {
        height: 100%;
    }
    .w-xl-auto {
        width: auto;
    }
    .w-xl-full {
        width: 100%;
    }
}
@media (min-width: 1400px) {
    .h-xxl-auto {
        height: auto;
    }
    .h-xxl-full {
        height: 100%;
    }
    .w-xxl-auto {
        width: auto;
    }
    .w-xxl-full {
        width: 100%;
    }
}





/* HEADER */

header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1040;
    background: #fff;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
    height: 55px;
}
.header-logo{
    padding-left: 100px;
}

.site-logo {
    transition: all 0.25s;
}
.site-logo:hover {
    opacity: .95;
}

.site-logo img {
    height: 40px !important;
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.site-nav > li > a{
    pointer-events: none;
    color: var(--color-body);
}
.site-nav > li > a.initialized-item{
    pointer-events: auto;
}

.site-nav > li > a.current-item{
    pointer-events: auto;
    color: var(--color-primary-500);
}
.site-nav > li > a.current-item + svg path{
    stroke: var(--color-primary-500);
}
.header-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

header {
    padding: 8px 16px;
}

.header-order-btn{
    gap: 6px;
    padding: 0 8px;
}

.site-nav-dot {
    width: 23px;
    height: 23px;
    justify-content: center;
    align-items: center;
    background: #F2F2F2;
    color: #4F4F4F;
    border-radius: 9999px;
    font-size: 12px;
}
.site-nav > li > a.current-item .site-nav-dot{
    background-color: var(--color-primary-500);
    color: #fff;
}
@media (max-width: 991.98px) {
    .header-logo {
        padding-left: 0;
    }
    .header-order-btn,
    .header-order-btn-link.btn-sm{
        padding: 0 !important
    }
    .header-order-btn-link.btn-sm{
        border: 0 !important;
    }
    .header-order-btn svg{
        width: 18.05;
        height: 20px;
    }
    .site-nav .hover-underline:after {
        display: none;
    }
    .site-nav:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        border-top: 1px solid #F2F2F2;
    }
    .site-logo img {
        height: 31px !important;
    }
    header {
        padding: 12px;
    }
}



.oem-grid {
    height: 100%;
    display: grid;
    gap: 10px;
    grid-template-columns: 644px 1fr 280px;
    padding: 16px 24px 16px 16px;
}

.oem-grid.active {
    grid-template-columns: 3fr 2fr 1fr;
}

.oem-menu-outer {
    order: -1;
}

.oem-info {
    padding-top: 7vh;
    order: 9999;
}


.oem-info-sub-title{
    margin-bottom: 8px;
}
.oem-info-list{
    gap: 6px;
}
.oem-info-price{
    margin-bottom: 12px;
}
.oem-info-btns{
    gap: 10px;
}
.oem-info-btn{
    max-width: 180px;
    width: 100%;
}

.oem-info-group{
    display: none;
    overflow: auto;
}
.oem-info-group.active{
    display: block;
}

.oem-info-group.active[data-info-group="personalized"] {
    position: fixed;
    right: 20px;
    z-index: 9;
    bottom: 120px;
}
.oem-info-group::-webkit-scrollbar {
    -webkit-appearance: none;
}

.oem-info-group::-webkit-scrollbar:vertical {
    width: 6px;
}

.oem-info-group::-webkit-scrollbar:horizontal {
    height: 6px;
}

.oem-info-group::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    border: 0px solid #ffffff;
}

.oem-info-group::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--color-gray-100);
}

.oem-canvas-type{
    --canvas-max-height: calc(100vh - 55px - 32px - 7vh);
    /* 100vh - menu height - body padding top and bottom - oem-canvas-outer double padding top in vh */
    --canvas-gif-max-height: calc(100vh - 55px - 32px - 7vh - 18vh);
    /* canvas gif box padding top 9vh */
}

@media (min-width: 992px) {
    .oem-info-group{
        max-height: var(--canvas-max-height);
    }
}
/* oem-canvas */
.oem-canvas-outer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 3.5vh;
}
.oem-canvas{
    width: 100%;
    position: relative;
}
.oem-canvas-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.oem-canvas-type{
    display: block;
    margin: 0 auto;
    width: 100%;
    position: relative;
}
.oem-canvas-type{
    max-width: 416px;
}

.oem-canvas-thumb{
    width: 90%;
    margin: 0 auto;
    /* height: 0;
    padding-bottom: 139.5%; */
    position: relative;
    border-radius: 12px;
    display: block;
    aspect-ratio: 416 / 580.31;
    max-height: var(--canvas-max-height);
}
.oem-canvas-thumb .main-bottle-img,
.oem-canvas-thumb .main-gift-box-img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.oem-canvas-type.oem-canvas-type-gift-box {
    max-width: 370px;
    padding-top: 9vh;
}

.oem-canvas-type.oem-canvas-type-gift-box .oem-canvas-thumb {
    aspect-ratio: 1 / 1;
    max-height: var(--canvas-gif-max-height);
}
.oem-canvas-content{
    display: none;
}
.oem-canvas-content.active{
    display: flex;
}


/* oem-menu */
.oem-menu-inner > .nav {
    background: #fff;
    padding: 8px;
    border-radius: 4px;
    gap: 8px;
    max-height: calc(100vh - 55px - 32px);
    overflow: auto;
    flex-wrap: nowrap;
}




.oem-menu-inner > .nav .nav-link.active {
    color: var(--color-primary-500);
    background-color: var(--color-gray-100);
}

.oem-menu-inner > .nav .nav-link {
    width: 96px;
    height: auto;
    padding: 11px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--color-body);
}

.oem-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.oem-menu-title {
    line-height: 1.28;
    font-size: 16px;
}

.oem-menu-icon-box,
.oem-menu-icon-box svg {
    width: 46px;
    height: 46px;
}

.oem-menu > .oem-menu-inner > .tab-content {
    background: #fff;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    max-height: calc(100vh - 55px - 32px);
    /* padding: 8px; */
    width: 532px;
}

.oem-grid.active .oem-menu > .oem-menu-inner > .tab-content {
    width: 100% !important;
}

.oem-menu > .oem-menu-inner > .tab-content > .tab-pane {
    overflow: auto;
    max-height: calc(100vh - 55px - 32px - 16px);
}


@media (min-width: 992px) {
    .oem-menu-inner > .nav::-webkit-scrollbar {
        -webkit-appearance: none;
    }

    .oem-menu-inner > .nav::-webkit-scrollbar:vertical {
        width: 6px;
    }

    .oem-menu-inner > .nav::-webkit-scrollbar:horizontal {
        height: 6px;
    }

    .oem-menu-inner > .nav::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 6px;
        border: 0px solid #ffffff;
    }

    .oem-menu-inner > .nav::-webkit-scrollbar-track {
        border-radius: 10px;
        background-color: var(--color-gray-100);
    }

}



/* custom-radio-grid */
.custom-radio-grid {
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



.custom-radio-grid-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}



/* bottle-type */
.menu-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.custom-radio-grid{
    flex: 1;
    min-width: 1px;
    width: 100%;
}

.menu-group-item {
    flex: 1;
    padding: 16px 16px 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background-color: var(--color-gray-100);
    border: 2px solid var(--color-gray-100);
}


.menu-group-grid .custom-radio-grid:nth-child(even) .menu-group-item {
    background-color: var(--color-gray-200);
    border: 2px solid var(--color-gray-200);
}




.menu-group-item-thumb {
    max-width: 140px;
    width: 100%;
}
.menu-group-item-thumb .ratio-media{
    -o-object-fit: contain;
    object-fit: contain;
}

.custom-radio-grid-input:checked ~ .menu-group-item {
    border: 2px solid var(--color-primary-400) !important;
}


.menu-group-item-title {
    line-height: 1.14;
    font-size: 15px;
    min-width: 1px;
    max-width: 100%;
    display: block;
}

.bottle-type-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    max-width: 100%;
}


/* wine-type */

.wine-type-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 16px 16px 20px 16px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    gap: 8px;
}

#oem-menu-wine-type .menu-group-item{
    padding: 0;
    border: 0;
}
#oem-menu-wine-type .custom-radio-grid-input:checked ~ .menu-group-item {
    border: 1px solid #fff !important;
}
.wine-type-thumb{
    padding-bottom: 123%;
}

.wine-type-thumb:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    z-index: 2;
    background: linear-gradient(to bottom, transparent, black);
}

.wine-type-bg {
    position: absolute;
    top: 11%;
    right: -16%;

    --wine-type-bg: 112%;
    width: var(--wine-type-bg);
    max-width: var(--wine-type-bg);
    height: auto;
    max-height: 79.8%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

/* label-grid */
#oem-menu-label .menu-group-item {
    gap: 12px;
}

#oem-menu-label .menu-group-item-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* personalized-tab */
.personalized-tab {
    padding: 8px;
}

.form-control-select-color {
    position: relative;
}

.form-control-select-color1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.form-control-select-color [type="color"] {
    /*position: absolute;
    right: 8px;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);*/
    width: 28px;
    height: 28px;
    border-radius: 6px !important;
    padding: 1px !important;
    background-color: #E5E5E5 !important;
    border: 0 !important;
}

.form-control-select-color select {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    background-size: 16px 16px;
    padding: 4px 8px !important;
    padding-right: 28px !important;
    background-color: #fff !important;
    height: 28px;
    width: 76px;
    color: var(--color-body) !important;
}

.form-control-select-color1 select {
    position: relative !important;
    transform: none !important;
    top: auto;
    right: auto;
    width: 90px;
    border: #ccc 1px solid !important;
    padding: 4px 10px !important;
    height: 32px;
    border-radius: 4px;
}

.form-control-select-color1 [type="color"] {
    position: relative !important;
    transform: none !important;
    top: auto;
    right: auto;
}
.form-control-select-color [type="text"] {
    padding-right: 124px !important;
    text-overflow: ellipsis;
}

.form-control-select-color1 [type="text"] {
    width: 100%;
    border: #ccc 1px solid !important;
    padding: 4px 10px !important;
    height: 32px;
    border-radius: 4px;
}

.fontSize {
    /*width: 60px !important;*/
    width: 70px !important;
    border: #ccc 1px solid !important;
    padding: 4px 10px !important;
    height: 32px;
    border-radius: 4px;
}
.canvas_custom_wrap {
    padding: 20px;
    background: #131215;
    overflow: auto;
    margin: 0 auto;
    border: #ddd 1px solid;
    width: 100%;
    max-width: 554px;
}

#canvasContainer {
    width: 100%;
    height: auto; /* Tự tính theo width để giữ tỷ lệ */
    display: block;
}

.canvas_action_btn {
    display: flex;flex-wrap: wrap; gap: 12px;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.canvas_action_btn button,
.canvas_action_btn a {
    border: #ccc 1px solid;
    padding: 4px;
    width: 36px;
    height: 36px;
    border-radius: 2px;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.canvas_action_btn button svg,
.canvas_action_btn a svg {
    width: 20px;
}
.canvas_custom_wrap {
    display: none;
}
.canvas_custom_wrap.active {
    display: block;
}

/*#inline-popup-content {
    width: 465px;
    margin: 0 auto;
    position: relative;
}*/
.img_result {
    /*position: absolute;*/
    /*left: 10px;*/
    /*width: calc(100% - 20px);*/
    /*bottom: 30%;*/
    max-width: 34.6%;
    max-height: 31%;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    top: 46.6%;
    aspect-ratio: 143.93 / 179.89;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.img_result.type-3 {
    max-width: 31.2%;
    max-height: calc(var(--canvas-max-height)* 28 / 100);
    left: 49.8%;
}

.img_result.type-4 {
    top: 56.6%;
}

.img_result.type-6 {
    width: 27.6%;
    height: 28%;
    top: 61.6%;
}

.img_result.active {
    display: flex;
}

.custom-form-label {
    display: flex;
    justify-content: center;
    font-size: 13px;
    color: var(--color-body-secondary);
    position: relative;
}

.custom-form-label span {
    background: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.custom-form-label:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
}



/* custom-input-file */
.custom-input-file input[type="file"] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.custom-input-file input[type="file"] + label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    background-color: var(--bg-input-file);
    transition: all .25s;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 11.5px 12px;
    height: 44px;
    border-radius: 4px;
    gap: 6px;
}

.custom-input-file input[type="file"]:focus + label,
.custom-input-file input[type="file"] + label:hover {
    background-color: var(--bg-input-file-hover);
}
.custom-input-file input[type="file"] + label {
    cursor: pointer; /* "hand" cursor */
}
.custom-input-file input[type="file"] + label * {
    pointer-events: none;
}

/* Modal */

.modal-dialog .modal-content {
    background: transparent;
    border-radius: 0;
    border: 0;
    gap: 10px;
    align-items: flex-end;
}

.modal-dialog .modal-content .modal-body {
    width: 100%;
    overflow: hidden;
    padding: 0;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: 0;
    border-radius: 0;
    box-shadow: 0px 8px 50px 0px rgba(0, 0, 0, 0.16);
}

.modal-dialog .modal-content .btn-close {
    width: 22px;
    height: 22px;
    padding: 0;
    background: none;
    opacity: .5;
    transition: all .25s;
}

.modal-dialog .modal-content .btn-close:hover {
    opacity: 1;
}


.modal-get-info-header{
    gap: 10px;
}
.modal-get-info-header{
    margin-bottom: 56px;
}


#modal-personalized .modal-body {
    border-radius: 8px;
}

#modal-personalized .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    opacity: .4;
}
#modal-personalized .btn-close:hover {
    opacity: 1;
}
#modal-personalized .btn-close svg path {
    fill: #000;
}

@media (min-width: 576px){
    .modal-dialog {
        max-width: 480px;
    }
}
@media (min-width: 992px){
    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }

    #modal-personalized .modal-dialog {
        max-width: 600px;
    }
}



/* gift-box */

.gift-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.gift-box-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background-color: var(--color-gray-100);
}
.gift-box-item:nth-child(even) {
    background-color: var(--color-gray-200);
}

.gift-box-thumb .ratio-media{
    -o-object-fit: contain;
    object-fit: contain;
}
.gift-box-item.active {
    border: 1px solid var(--color-primary-500);
}

.gift-box-title {
    line-height: 1.14;
}

.gift-box-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 16px 12px 16px;
    width: 100%;
}

.gift-box-thumb-outer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    width: 100%;
}
.tab-pane-toggle {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 5;
    padding-bottom: 4px;
}
.tab-pane-toggle a {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.tab-pane-toggle a:hover {
    background: var(--color-gray-100);
}
.tab-pane-toggle a svg {
    transition: all .25s;
}
.tab-pane-toggle a.active svg {
    transform: rotate(180deg);
}



.mobile-toggle-tab {
    width: 100%;
    height: 100%;
    pointer-events: none;
}


.main-shrink-film-img {
    display: block;
    max-width: 14%;
    /* Chiều rộng của màng co so với chiều rộng của chai là 14.9% */
    max-height: calc(var(--canvas-max-height) * 19.7 / 100);
    /* Chiều cao của màng co so với chiều cao của chai là 21.7% */
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    top: 0;
}
.main-shrink-film-bg-area {
    display: none;
    max-width: 34.6%;
    max-height: 31%;
    /* so với oem-canvas-thumb */
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    top: 46.6%;
    aspect-ratio: 143.93 / 179.89;
}
.main-shrink-film-bg-area .main-shrink-film-bg{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
}
.main-label-img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}
.main-shrink-film-bg-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

}
.main-bottle-shadow-img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    top: 0;
    left: 4.5%;
}

[data-current-step="bottle-type"] .main-shrink-film-img{
    display: none;
}
[data-current-step="label"] .main-shrink-film-bg-area,
[data-current-step="personalized"] .main-shrink-film-bg-area{
    display: block;
}

.personalized-btn:not(.btn-sm):not(.btn-lg){
    padding: 12px 16px !important;
    font-size: 14px !important;
}
#gift-box-tab {
    padding: 0;
    border-radius: 0;
    gap: 24px;
    border-bottom: 1px solid var(--color-border);
}

#gift-box-tab .nav-link {
    padding: 4px 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-body-secondary);
    background: transparent !important;
    border-radius: 0 !important;
    border-bottom: 1px solid transparent;
}

#gift-box-tab .nav-link.active {
    color: var(--color-primary-500);
    border-color: var(--color-primary-500);
}
#oem-menu-gift-box .menu-group-item {
    padding: 0;
    gap: 0;
}

#oem-menu-gift-box .menu-group-item .menu-group-item-thumb {
    max-width: 100%;
}

#oem-menu-gift-box .menu-group-item .menu-group-item-title {
    display: block;
    width: 100%;
    padding: 0 16px 20px 16px;
}


/* responsive oem */
@media (max-width: 1639.98px) and (min-width: 1400px){
    .oem-grid .oem-canvas-type {
        margin-left: auto;
        margin-right: 0;
    }
}


@media (max-width: 1399.98px) {
    .oem-grid {
        grid-template-columns: 444px 1fr 320px;
    }
    .oem-menu > .oem-menu-inner > .tab-content {
        width: 280px;
    }
    .menu-group-grid,
    .shrink-film-grid,
    .wine-type-grid,
    .label-grid,
    .gift-box-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 1199.98px) {
    .oem-grid {
        gap: 16px;
        grid-template-columns: 368px 1fr 280px;
    }
    .menu-group-item,
    .label-item,
    .shrink-film-info,
    .wine-type-info {
        padding: 12px;
    }
    .wine-type-bg{
        top: 30px;
        right: -30px;
        --wine-type-bg: 100%;
    }
}
@media (max-width: 1199.98px) and (min-width: 992px){
    /*.oem-grid {
        grid-template-columns: 316px 1fr 280px;
    }*/
    .oem-menu-title{
        font-size: 12px;
    }
    .oem-menu-inner > .nav .nav-link {
        width: 60px;
    }
    .oem-menu > .oem-menu-inner > .tab-content {
        width: 240px;
    }
    /*.form-control-select-color [type="color"],
    .form-control-select-color select{
        position: relative;
        top: 0;
        right: 0;
        transform: none;
    }
    .form-control-select-color {
        display: grid;
        grid-template-columns: 1fr 28px;
        gap: 4px;
        border: 1px solid var(--color-border) !important;
        border-radius: 4px !important;
        padding: 0 12px 12px 12px;
    }
    .form-control-select-color [type="text"]{
        grid-column: 1 / span 2;
        padding-right: 0 !important;
        padding-left: 0 !important;
        border: 0 !important;
    }
    .form-control-select-color [type="color"]{
        order: 9999;
    }
    .form-control-select-color select{
        width: 100%;
    }*/
    #gift-box-tab{
        gap: 16px;
    }
    .oem-info{
        padding-top: 0px;
    }
    .info-group-fixed-btn{
        margin-top: 0 !important;
    }
}

@media (max-width: 991.98px) {
    .oem-canvas-type{
        --canvas-max-height: calc(100vh - 55px - 8px - 96px - 26px);
        /* 100vh - menu height - body padding top and bottom - oem-canvas-outer padding top  26px * 2 */
        --canvas-gif-max-height: calc(100vh - 55px - 8px - 96px - 26px - 30px );
        /* canvas gif box padding top 9vh */
    }
    .oem-grid{
        display: flex;
        flex-direction: column;
        padding: 8px 12px 96px 8px;
    }

    .oem-info{
        padding-top: 24px;
        order: 2;
        padding-left: 98px;
    }
    .info-group-fixed-btn {
        position: fixed;
        left: 0;
        width: 100%;
        bottom: 0;
        margin: 0 !important;
        padding: 12px !important;
        background: #fff;
        z-index: 1040;
    }

    .info-group-fixed-btn .oem-info-btn.btn:not(.btn-sm):not(.btn-lg) {
        height: 48px !important;
        border-radius: 4px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px !important;
        font-weight: 600 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .oem-canvas-outer{
        padding-top: 26px;
        overflow: hidden;
        padding-left: 98px;
    }
    .oem-canvas-type.oem-canvas-type-gift-box {
        /* padding-top: 60px; */
        padding-top: 30px;
    }
    .oem-info-price {
        margin-bottom: 6px;
    }
    .oem-info-btn.btn:not(.btn-sm):not(.btn-lg) {
        padding: 10px !important;
        font-size: 14px !important;
    }

    .wine-type-bg {
        top: 0;
        right: 0;
        max-width: 100%;
        max-height: 100%;
    }
    .oem-menu-outer{
        position: fixed !important;
        top: calc(55px + 8px);
        left: 8px;
        z-index: 1040;
    }
    .oem-menu-inner > .nav {
        padding: 6px;
        gap: 6px;
        max-height: calc(100vh - 55px - 75px - 12px - 16px);
    }
    .oem-menu-inner > .nav .nav-link {
        width: 77px;
        height: auto;
        padding: 8px 6px;
    }
    .oem-menu-title{
        font-size: 12px;
    }
    .oem-menu > .oem-menu-inner > .tab-content {
        /* padding: 6px; */
        max-width: 280px;
        width: calc(100vw - 20px - 90px);
    }
    .oem-menu > .oem-menu-inner > .tab-content {
        max-height: calc(100vh - 55px - 75px - 12px - 16px);
    }
    .oem-menu > .oem-menu-inner > .tab-content > .tab-pane {
        max-height: calc(100vh - 55px - 75px - 12px - 16px - 12px);
    }
    #oem-menu-tabContent[data-mobile-hidden="true"],
    .oem-menu > .oem-menu-inner > .tab-content > .tab-pane.mobile-hidden{
        display: none;
    }

    .oem-menu-inner > .nav .nav-link.active{
        pointer-events: none;
    }
    .oem-menu-inner > .nav .nav-link.active ~ .mobile-toggle-tab{
        pointer-events: auto;
    }


    .menu-group-item,
    .label-item,
    .shrink-film-info,
    .wine-type-info {
        padding: 11px;
        gap: 14px;
    }
    .menu-group-item-title{
        font-size: 12px;
    }
    .menu-group-item-thumb {
        max-width: 103px;
    }
    #gift-box-tab .nav-link {
        padding: 2px 0 6px 0;
        font-size: 12px;
    }
    #gift-box-tab{
        gap: 16px;
    }
    #oem-menu-gift-box .menu-group-item .menu-group-item-title {
        display: block;
        width: 100%;
        padding: 0 11px 11px 11px;
    }

}
@media (max-width: 767.98px) {

}
@media (max-width: 575.98px) {

}


/* info-form */
.info-form{
    max-width: 412px;
    margin: 0 auto;
}
.info-form-body{
    border-radius: 4px;
    background-color: #fff;
}
/* checkout */
.checkout-block{
    background-color: #fff;
    border-radius: 4px;
}
.checkout-block-title{
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--color-border);
}
.checkout-grid{
    justify-content: center;
    grid-template-columns: 280px minmax(272px,740px) 280px;
    align-items: flex-start;
}
.checkout-payment > .checkout-payment-item:not(:last-child){
    border-bottom: 1px solid var(--color-border);
}

.checkout-payment .custom-radio {
    align-items: flex-start;
    gap: 16px;
}
.checkout-payment-icon {
    width: 38px;
    height: 38px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}
.checkout-payment .custom-radio .custom-radio-mark {
    margin-top: 8px;
}
.checkout-payment-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-payment-list > li {
    display: grid;
    grid-template-columns: 165px 1fr;
    gap: 8px;
    align-items: center;
}
.info-checkout-form .row{
    margin-left: -8px;
    margin-right: -8px;
}
.info-checkout-form .row>*{
    padding-left: 8px;
    padding-right: 8px;
}

.voucher-input{
    max-width: 240px;
}
.voucher-submit.btn:not(.btn-sm):not(.btn-lg) {
    padding: 11px 44px !important;
    height: 44px;
}

.checkout-table-header,
.checkout-table-body .checkout-table-grid:not(:last-child),
.checkout-table-body{
    border-bottom: 1px solid var(--color-border);
}

.checkout-table-grid{
    display: grid;
    gap: 16px;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    grid-template-columns: minmax(62px, 97px) minmax(80px, 122px) 80px minmax(80px, 122px) minmax(80px, 100px) 24px;
    justify-content: space-between;
}
.checkout-table-header .checkout-table-grid{
    padding-top: 16px;
    padding-bottom: 16px;
}
.checkout-item-thumb-inner{
    max-width: 80px;
}

.checkout-item-thumb-inner .preview-canvas-thumb
.product-quantity{
    width: 80px;
}

.checkout-item-thumb-inner .oem-canvas-type {
    max-width: 49px;
}

.checkout-item-thumb-inner .preview-canvas-thumb {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}

.checkout-item-thumb-inner .preview-canvas-thumb .oem-canvas {
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--color-gray-100);
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout-item-thumb-inner .preview-canvas-thumb .oem-canvas .oem-canvas-content {
    width: 100%;
}

.product-quantity-input {
    display: inline-block;
    padding: 8px 26px 8px 16px;
    border: 1px solid #E5E5E5;
    width: 80px;
    -moz-appearance: textfield;
    margin: 0;
    border-radius: 4px;
    background-color: #F9F9F9;
    height: 32px;
}

.product-quantity-input::-webkit-outer-spin-button,
.product-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-quantity-btn {
    width: 10px;
    height: 16px;
    display: flex;
    justify-content: center;
    right: 8px;
    position: absolute;
}

.product-quantity-minus {
    bottom: 0;
    padding-top: 1px;
    align-items: flex-start;
}

.product-quantity-plus {
    top: 0;
    padding-bottom: 1px;
    align-items: flex-end;
}

.product-quantity {
    overflow: hidden;
}
.checkout-modal-thumb .oem-canvas-type.oem-canvas-type-bottle {
    max-width: 277px;
}

.checkout-modal-thumb .oem-canvas-type.oem-canvas-type-gift-box {
    max-width: 370px;
}
.modal-purchase-success-header{
    gap: 10px;
}
.checkout-empty{
    padding: 32px 0;
}
.checkout-empty-btn:not(.btn-sm):not(.btn-lg) {
    min-width: 202px;
    padding: 9.5px 22px !important;
}
@media (max-width: 1399.98px) {

    .checkout-grid{
        grid-template-columns: 1fr 280px;
    }
}
@media (max-width: 1399.98px) and (min-width: 1200px) {
    .checkout-table-grid{
        gap: 24px;
    }
}

@media (max-width: 1199.98px) {
    .checkout-table-header .checkout-table-grid{
        grid-template-columns: 1fr 24px;
    }
    .checkout-table-body .checkout-table-grid{
        grid-template-columns: 80px 1fr 80px 24px;
        align-items: center;
        gap: 16px;
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .checkout-item-title,
    .checkout-item-price,
    .checkout-item-quantity,
    .checkout-item-total,
    .checkout-item-link,
    .checkout-item-del {
        grid-column: 2;
    }
    .checkout-item-price{
        display: none;
    }

    .checkout-item-total{
        order: 1;
    }
    .checkout-item-quantity{
        order: 2;
        max-width: 75px;
    }
    .product-quantity-input{
        width: 75px;
    }
    .checkout-item-thumb {
        grid-row: 1 / span 2;
        order: 0;
    }
    .checkout-item-link {
        grid-column: 3;
        grid-row: 1 / span 2;
        display: flex;
        align-items: center;
    }
    .checkout-item-del {
        grid-column: 4;
        grid-row: 1 / span 2;
    }
    .checkout-item-sub-title{
        margin-bottom: 1px;
        font-size: 12px;
        font-weight: normal;
    }
    .modal-purchase-success-icon svg{
        width: 64px;
        height: 64px;
    }
}
@media (max-width: 575.98px) {
    .checkout-payment-list > li {
        display: flex;
        gap: 0px;
        align-items: flex-start;
        flex-direction: column;
    }
    .voucher-input {
        max-width: 100%;
    }
}



.selected-products-grid {
    display: grid;
    padding: 16px 24px 24px 16px;
    grid-template-columns: 112px 1fr 400px;
    align-items: flex-start;
}
.selected-products {
    border-radius: 4px;
    padding: 8px;
    background: #fff;
}

.selected-products-item + .selected-products-item {
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
}

.selected-products-item{
    padding: 32px 24px;
    display: grid;
    grid-template-columns: 1fr 279px;
    align-items: center;
    gap: 24px;
}
.selected-products-thumb.preview-canvas-thumb .oem-canvas-type{
    margin: 0 auto !important;
    max-width: 341px;
}
.preview-canvas-thumb .oem-canvas-type.oem-canvas-type-gift-box{
    padding-top: 0 !important;
}
.preview-canvas-thumb .main-shrink-film-img {
    display: block;
}

.preview-canvas-thumb .main-shrink-film-img,.preview-canvas-thumb .main-shrink-film-bg-area {
    display: block;
}
@media (max-width: 1199.98px) {
    .selected-products-grid {
        grid-template-columns: 1fr 280px;
    }
}
@media (max-width: 991.98px) {
    .selected-products-grid{
        padding: 24px 16px 96px 16px;
        grid-template-columns: 1fr;
        background-color: #fff;
    }
    .selected-products-grid .oem-info{
        order: -1;
        padding-top: 0;
    }
    .selected-products{
        padding: 0;
    }
    .selected-products-item{
        padding: 24px;
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap: 24px;
    }
}
@media (max-width: 767.98px) {

}
@media (max-width: 575.98px) {

}


.section-padding{
    padding-left: 24px;
    padding-right: 24px;
}
@media (max-width: 767.98px) {
    .section-padding{
        padding-left: 12px;
        padding-right: 12px;
    }
}

.form-control-tel {
    position: relative;
}

.form-control-tel .form-control {
    padding-right: 80px !important;
}

.form-control-tel .dropdown {
    position: absolute;
    top: 1px;
    right: 8px;
    width: 64px;
    height: calc(100% - 2px);
}

.form-control-tel .dropdown .dropdown-toggle {
    border: 0;
    background: transparent;
    width: 100%;
    height: 100%;
    border-left: 1px solid var(--color-border);
    padding: 12px;
    padding-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.form-control-tel .dropdown .dropdown-toggle:after{
    background-image: url(../images/icons/select-arrow.svg);
    background-size: 20px 20px;
    border: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    background-repeat: no-repeat;
    background-position: center;
}

.form-control-tel .dropdown .dropdown-toggle img {
    max-width: 24px;
    max-height: 16px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.form-control-tel .dropdown .dropdown-menu {
    right: 0 !important;
    left: auto !important;
}

.custom-radio-flag {
    display: flex;
    position: relative;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



.custom-radio-flag-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.custom-radio-flag-item{
    padding: 6px 12px;
    background-color: #fff;
    width: 100%;
}
.custom-radio-flag-input:checked ~ .custom-radio-flag-item{
    background-color: var(--color-gray-100);
}

.checkout-payment-grid-left .checkout-payment-item:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
}

.checkout-payment-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
}
.checkout-payment-grid-right {
    border-left: 1px solid var(--color-border);
    padding: 16px 24px;
}

.btn-checkout-toggle{
    display: none;
}
.btn-checkout-toggle.active{
    display: block;
}

.line{
    width: 100%;
    border-bottom: 1px solid var(--color-border);
}

.checkout-item-thumb-popup {
    position: absolute;
    top: 0;
    left: 80px;
    width: 560px;
    height: 504px;
    border-radius: 4.48px;
    background: #FFF;
    box-shadow: 0px 4.48px 17.92px 0px rgba(31, 25, 25, 0.25);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    padding: 32px;
    transition: all .25s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.checkout-item-thumb-popup .preview-canvas-thumb{
    width: 100%;
}
.checkout-item-thumb {
    position: relative;
}

.checkout-item-thumb:hover .checkout-item-thumb-popup {
    opacity: 1;
    visibility: visible;
    z-index: 1039;
}

.checkout-item-thumb-popup .oem-canvas-type.oem-canvas-type-bottle {
    max-width: 307px;
}
.checkout-item-thumb-popup .oem-canvas-type.oem-canvas-type-gift-box {
    max-width: 370px;
}

.checkout-summary {
    position: -webkit-sticky;
    position: sticky;
    top: 71px;
}
@media (max-width: 1199.98px) {
    .checkout-item-thumb-popup {
        width: 450px;
        height: 450px;

    }
    .checkout-item-thumb-popup .oem-canvas-thumb{
        max-height: calc(450px - 64px);
    }
}
@media (max-width: 991.98px) {

}
@media (max-width: 767.98px) {
    .checkout-payment-grid {
        grid-template-columns: 1fr;
    }
    .checkout-payment-list{
        display: none !important;
    }
    .checkout-payment .custom-radio .custom-radio-input:checked ~ .checkout-payment-info .checkout-payment-list{
        display: flex !important;
    }
    .checkout-summary {
        width: calc(100% + 24px);
        margin-left: -12px;
        margin-right: -12px;
        position: -webkit-sticky;
        position: sticky;
        top: auto;
        bottom: 0;
        border-radius: 0;
        z-index: 1040;
    }

    .checkout-summary .checkout-block-title {
        display: none;
    }


    .checkout-item-thumb-popup {
        --checkout-popup: calc(100vw - 80px - 16px - 12px - 16px - 12px);
        width: var(--checkout-popup);
        height: var(--checkout-popup);
        padding: 16px;

    }
    .checkout-item-thumb-popup .oem-canvas-type.oem-canvas-type-bottle,
    .checkout-item-thumb-popup .oem-canvas-type.oem-canvas-type-gift-box {
        max-width: calc(var(--checkout-popup) / 2);
    }
}
@media (max-width: 575.98px) {

}
@media (max-width: 374.98px) {
    .checkout-table-body .checkout-table-grid {
        grid-template-columns: 80px 1fr 24px 24px;
    }
    .checkout-item-view-icon{
        display: flex !important;
    }
    .checkout-item-view-text{
        display: none;
    }
    .checkout-item-view-link::after{
        display: none;
    }
}


.tracking-section .checkout-grid {
    grid-template-columns: 1fr 412px;
    max-width: 1083px;
    margin: 0 auto;
}
.tracking-section .checkout-table-grid {
    grid-template-columns: minmax(62px, 97px) minmax(80px, 122px) 60px minmax(80px, 122px) minmax(80px, 100px);
}
.tracking-list-title {
    width: 104px;
}
.tracking-timeline-title {
    margin-bottom: 6px;
    color: #4F4F4F;
}


.tracking-timeline-item.active .tracking-timeline-title {
    color: var(--color-primary-500);
}

.tracking-timeline-content {
    padding: 16px 0;
    flex: 1;
}

.tracking-timeline-item:not(:last-child) .tracking-timeline-content {
    border-bottom: 1px solid var(--color-border);
}

.tracking-timeline-item {
    display: grid;
    align-items: center;
    gap: 16px;
    width: 100%;
    grid-template-columns: 18px 1fr;
}

.tracking-timeline-line {
    width: 18px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.tracking-timeline-dot {
    width: 12px;
    height: 12px;
    background-color: #BDBDBD;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.tracking-timeline-item.active .tracking-timeline-dot {
    background-color: var(--color-primary-500);
}

.tracking-timeline-item.active .tracking-timeline-dot:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    background-color: var(--color-primary-500);
    opacity: 0.2;
    border-radius: 18px;
}

.tracking-timeline-line:after {
    content: "";
    position: absolute;
    /* left: 50%; */
    border-right: 1px solid var(--color-border);
    display: block;
    height: 100%;
}

/* .tracking-timeline-item.active .tracking-timeline-line:after {
    height: 50%;
    bottom: 0;
    top: auto;
} */
.tracking-timeline-item:last-child .tracking-timeline-line:after {
    height: 50%;
    top: 0;
    bottom: auto;
}

@media (max-width: 1199.98px) {
    .tracking-section .checkout-table-grid {
        row-gap: 0;
        grid-template-columns: 80px 1fr 80px;
    }
}

@media (max-width: 374.98px) {
    .tracking-section .checkout-table-grid {
        grid-template-columns: 80px 1fr 24px;
    }
}

@media (max-width: 1400px) and (min-width: 1200px) {
    .oem-menu-icon-box, .oem-menu-icon-box svg{
        width: 32px;
        height: 32px;
    }
    #gift-box-tab .nav-link,
    .menu-group-item-title,
    .oem-menu-title {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .oem-canvas-outer {
        padding: 0 !important;
    }
    .oem-menu-outer {
        position: relative !important;
        top: auto !important;
        left: auto !important;
    }

    .oem-menu-inner > .nav {
        align-items: flex-start !important;
        flex-direction: row !important;
        justify-content: center !important;
        width: 100%;
    }

    .oem-menu-outer .oem-menu > div {
        flex-direction: column !important;
    }

    .oem-menu > .oem-menu-inner > .tab-content {
        max-width: 100% !important;
        width: 100% !important;
    }

    .menu-group-grid, .shrink-film-grid, .wine-type-grid, .label-grid, .gift-box-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
    }

    .form-control-select-color select {
        width: 90px !important;
    }

    .oem-menu > .oem-menu-inner > .tab-content > .tab-pane,
    .oem-menu > .oem-menu-inner > .tab-content {
        max-height: unset !important;
    }
}
