@font-face {
    font-family: 'Bai Jamjuree';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../100/512/769/themes/945127/assets/baijamjuree-regular.ttf?1770602471682) format('truetype');
}
@font-face {
    font-family: 'Bai Jamjuree';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../100/512/769/themes/945127/assets/baijamjuree-semibold.ttf?1770602471682) format('truetype');
}
html {
    box-sizing: border-box;
    font-size: 62.5%;
    height: 100%;
}
:root {
    /*
     replace font family and font weight
   */
    --font-body-family: "Bai Jamjuree", sans-serif;
    --font-body-weight: 400;
    --font-headings-family: "Bai Jamjuree", sans-serif;
    --font-headings-weight: 600;

    /* For text color */
    --color-foreground: #333333;

    /* For background color */
    --color-background: #ffffff;

    --color-background-body: #f0f3f7;

    /* For primary color : button, link  */

    --color-primary: #1fad4a;

    /* base on design  */
    --color-secondary: #fe0000;

    --color-link: #fe0000;
    /* For cta color */
    --color-accent: #ffe711;

    --color-neutral-50: #ebebeb;
    --color-neutral-100: #bfbfbf;
    --color-neutral-200: #999999;
    --color-neutral-300: #666666;
    --color-neutral-400: #464646;

    /* For line border color or shadow color */
    --color-label: var(--color-neutral-200);
    --color-price: #1fad4a;
    --color-price-compare: #999999;
    --color-sale-bg: #fdd7d7;
    --color-sale: #fe0000;
    --color-addtocart: #ffffff;
    --color-addtocart-bg: #ee1926;
    --color-coupon-primary: #1fad4a;
    --color-coupon-secondary: #0056e7;

    /* For error state */
    --color-error: #ee1926;

    /* For success state */
    --color-success: #2bad14;

    /* For warning state */
    --color-warning: #f2bc1b;

    /* header */
    --color-header: var(--color-foreground);
    --color-header-bg: var(--color-background);
    --header-height: 8.4rem;
    --logo-width: 14.4rem;
    --color-cart-bubble: #ffffff;
    --color-cart-bubble-bg: #ee1926;
    --color-search: var(--color-primary);
    --color-sub-header-bg: #1fad4a;
    --color-sub-header: #ffffff;
    --color-sub-header-link: #f2ff0f;

    /* Font size for body text */
    --font-size-body: 1.4rem;

    /* Font size for text h1 - h6 */
    --font-size-h1: 4.8rem;
    --font-size-h2: 4rem;
    --font-size-h3: 3.2rem;
    --font-size-h4: 2.5rem;
    --font-size-h5: 2rem;
    --font-size-h6: 1.6rem;

    /*  if any title different
   --font-title-1: 3rem;
   --font-title-2: 2.25rem;
   */

    /* Rounded config */
    --rounded: 0.8rem;
    --rounded-lg: calc(var(--rounded) * 1.5);
    --rounded-sm: calc(var(--rounded) / 2);
    --rounded-xs: calc(var(--rounded) / 4);
    --rounded-full: 9999px;

    --rounded-button: 9999px;
    --rounded-input: 0.4rem;

    /* Spacing */

    /**
      * ---------------------------------------------------------------------
      * SPACING VARIABLES
      *
      * We are using a spacing inspired from frameworks like Tailwind CSS.
      * ---------------------------------------------------------------------
      */
    --spacing-0-5: 0.2rem; /* 2px */
    --spacing-1: 0.4rem; /* 4px */
    --spacing-1-5: 0.6rem; /* 6px */
    --spacing-2: 0.8rem; /* 8px */
    --spacing-2-5: 1rem; /* 10px */
    --spacing-3: 1.2rem; /* 12px */
    --spacing-3-5: 1.4rem; /* 14px */
    --spacing-4: 1.6rem; /* 16px */
    --spacing-4-5: 1.8rem; /* 18px */
    --spacing-5: 2rem; /* 20px */
    --spacing-5-5: 2.2rem; /* 22px */
    --spacing-6: 2.4rem; /* 24px */
    --spacing-6-5: 2.6rem; /* 26px */
    --spacing-7: 2.8rem; /* 28px */
    --spacing-7-5: 3rem; /* 30px */
    --spacing-8: 3.2rem; /* 32px */
    --spacing-8-5: 3.4rem; /* 34px */
    --spacing-9: 3.6rem; /* 36px */
    --spacing-9-5: 3.8rem; /* 38px */
    --spacing-10: 4rem; /* 40px */
    --spacing-11: 4.4rem; /* 44px */
    --spacing-12: 4.8rem; /* 48px */
    --spacing-14: 5.6rem; /* 56px */
    --spacing-16: 6.4rem; /* 64px */
    --spacing-18: 7.2rem; /* 72px */
    --spacing-20: 8rem; /* 80px */
    --spacing-24: 9.6rem; /* 96px */

    /* Container */

    --container-padding: var(--spacing-3);
    --grid-gutter: var(--spacing-2);

    --shadow-l: 0px 2rem 4.8rem 0px rgba(51, 51, 51, 0.2);
    --navigation-width: 40rem;

    --swatch-xanh-duong: #232fff;

    --swatch-hong: #fe77f1;

    --swatch-den: #000000;

    --swatch-trang: #ffffff;
}

@media (max-width: 767px) {
    :root {
        --logo-width: 11.7rem;
        --header-height: 6.8rem;
    }
}

body {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    grid-template-columns: 100%;
    min-height: 100%;
    margin: 0;
    font-size: var(--font-size-body);
    letter-spacing: -0.004em;
    line-height: calc(20 / 14);
    font-family: var(--font-body-family);
    font-weight: var(--font-body-weight);
    background-color: var(--color-background-body);
    scroll-behavior: smooth;
}
.section {
    padding: var(--section-padding, 0);
    margin: var(--section-margin, 2rem 0 0 0);
}

@media (max-width: 975px) {
    .section {
        padding: var(--section-padding-mb, 0);
        margin: var(--section-margin-mb, 2rem 0 0 0);
    }
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
.z-1  {
    z-index: 1 !important;
}
.bk-btn {
    margin-top: 10px;
}
.bk-promotion {
    max-width: 100%;
}
.bk-btn-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.bk-btn .bk-btn-paynow {
    width: 100%;
    margin-right: 0px;
    line-height: 1.6rem;
    border-radius: 20px;
}

.bk-btn .bk-btn-installment {
    width: 100%;
    line-height: 1.6rem;
    margin-left: 10px;
    margin-right: 0px;
    border-radius: 20px;
}
.bk-btn .bk-btn-installment-amigo {
    display: inline-flex !important;
    width: 100%;
    line-height: 1.6rem;
    margin-left: 10px;
    margin-right: 0px;
    border-radius: 20px;
}
.bk-insta-content span {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media only screen and (max-width: 320px) {
    .bk-btn-box {
        display: block;
    }
    .bk-btn .bk-btn-paynow {
        width: 100%;
    }
    .bk-btn .bk-btn-installment {
        margin-left: 0px;
        width: 100%;
    }
    .bk-btn .bk-btn-installment-amigo {
        margin-left: 0px;
        width: 100%;
    }
}

@media only screen and (max-width:439px) and (min-width:321px) {
    .bk-btn-box {
        display: block;
    }
    .bk-btn .bk-btn-paynow {
        width: 100%;
    }

    .bk-btn .bk-btn-installment {
        margin-left: 0px;
        width: 100%;
    }
    .bk-btn .bk-btn-installment-amigo {
        margin-left: 0px;
        width: 100%;
    }
}

@media only screen and (min-width: 414px) and (max-width: 667px) {
    .bk-btn-box {
        display: block;
    }
    .bk-btn .bk-btn-paynow {
        width: 100%;
    }

    .bk-btn .bk-btn-installment {
        margin-left: 0px;
        width: 100%;
    }
    .bk-btn .bk-btn-installment-amigo {
        margin-left: 0px;
        width: 100%;
    }
}

@media only screen and (max-width:767px) and (min-width:576px) {
    .bk-btn-box {
        display: block;
    }
    .bk-btn .bk-btn-paynow {
        width: 100%;
    }
    .bk-btn .bk-btn-installment {
        margin-left: 0px;
        width: 100%;
    }
    .bk-btn .bk-btn-installment-amigo {
        margin-left: 0px;
        width: 100%;
    }
}
@media only screen and (max-width:1023px) and (min-width:768px) {
    .bk-btn-box {
        display: block;
    }
    .bk-btn .bk-btn-paynow {
        min-width: 100%;
    }
    .bk-btn .bk-btn-installment {
        margin-left: 0px;
        min-width: 100%;
    }
    .bk-btn .bk-btn-installment-amigo {
        margin-left: 0px;
        width: 100%;
    }
}
@media only screen and (max-width:1366px) and (min-width:1024px) {
    .bk-btn-box {
        display: block;
    }
    .bk-btn .bk-btn-paynow {
        width: 100%;
    }
    .bk-btn .bk-btn-installment {
        margin-left: 0px;
        width: 100%;
    }
    .bk-btn .bk-btn-installment-amigo {
        margin-left: 0px;
        width: 100%;
    }
}
.uk-close:after {
    display: block;
    content: "\ea0e" !important;
    font-family: 'ega-iconfont' !important;
}
.loader{
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    background: #00000070;
    z-index: 10000;
}

.lds-spinner {
    color: official;
    position: fixed;
    width: 80px;
    height: 80px;
    top: 45%;
    left: 49%;
  }
  .lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
  }
  .lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: var(--color-primary);
  }
  .lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
  }
  .lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
  }
  .lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
  }
  .lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
  }
  .lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
  }
  .lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
  }
  .lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
  }
  .lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
  }
  .lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
  }
  .lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
  }
  .lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
  }
  .lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
  }
  @keyframes lds-spinner {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
@media screen and (max-width: 767px) {
    .logo-wrapper img{
        width: 50px;
    }
}
.row-vi-sao > .col > .col-inner {
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    padding: 16px;
    margin-top: 10px;
}
.row-vi-sao > .col > .col-inner h3 {
    text-transform: uppercase;
    font-size: 15px;
    color: var(--color-primary);
}
.row-vi-sao .icon-box {
    margin-bottom: 10px;
    align-items: center;
}
.text-left {
    text-align: left;
}
.icon-box-left, .icon-box-right {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
}
.icon-box-left .icon-box-img, .icon-box-right .icon-box-img {
    flex: 0 0 auto;
    margin-bottom: 0;
    max-width: 200px;
}
.icon-box-img img, .icon-box-img svg {
    padding-top: .2em;
    width: 100%;
}
.row-vi-sao .icon-box .icon-box-text {
    padding-left: 8px;
}
.row-vi-sao .icon-box .icon-box-text p {
    font-size: 14px;
}