:root{
    /* --main-color:#ce0f1c; */
    --main-color:#24408C;
    --checkout-font-lg: 28px;
    --checkout-font-md: 22px;
    --checkout-font: 18px;
}
h1{
    margin: unset;
}
body {
    position: relative;
}
.bg_highlight {
    background-color: var(--main-color);
}
.eshop .section_banner_title {
    font-size: 35px;
    position: absolute;
    top: 50%;
    text-align: center;
}
.shop_close {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000d5;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50000;
    height: 100vh;
    width: 100vw;
}
.shop_close_msg {
    padding: 7rem;
    background-color: white;
    box-shadow: 0px 0px 40px #000000d8;
    text-align: center;
    font-size: 20px;
    line-height: 1.6em;
}
.shop_close a {
    color: #9d9cd0;
    display: inline-flex;
    transition: all 300ms;
}

.shop_close a:hover {
    color: var(--main-color);
}
.font_highlight {
    color: var(--main-color);
}
.container {
    width: auto;
}
/*main*/
.navbar-toggle,
.navbar-collapse.collapse,
.btn_tab,
.sub_section {
    display: none !important;
}

.navbar-brand {
    display: inline-block;
    float: none !important;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.navbar-inverse {
    background-color: initial;
    border-color: initial;
}

.navbar-brand>img {
    width: 100%;
    opacity: 1;
}

.logo-img {
    width: 230px;
    margin-top: -10px;
}

h1 {
    font-weight: 600;
    color: #707070;
    margin-top: 3rem;
    margin-bottom: 30px;
}

/* CHRISTMAS */

.navbar-toggle, #nav-menu, .footer_nav a{
    display:none !important;
}
.navbar-header{text-align: center;}
.navbar-brand{
    padding-left:0;
    text-align: center;
}

.logo-img{
    width:195px;
}

.header_icon {
    bottom: 10px;
 }
.copy-btn {
    position: relative;
    border-radius: 7px;
    border: unset;
    padding: 14px 18px;
    color: white;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    margin-top: 15%;
    margin-bottom: 10px;
    /* background: linear-gradient(293deg, rgba(62, 102, 253, 1) 0%, rgba(194, 199, 253, 1) 80%); */
    background: linear-gradient(293deg, #ff9ca0 20%, #fe2413 80%);
    gap: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copy-btn span {
    background: white;
    padding: 2px 12px;
    border-radius: 5px;
    color: var(--main-color);
    font-size: 16px;
    margin-top: 3px;
}
.copy-btn::before {
    content: '';
    width: 70%;
    aspect-ratio: 98/31;
    background-image: url(/eshop/2025_BKN/images/cny_tag_xs.png);
    background-size: cover;
    position: absolute;
    bottom:90%;
    left: 0;
}
.copy-btn.xmas::before {
  background-image: url(/eshop/2025_BKN/images/xmas_tag_xs.png);
} 

.copy-btn:hover {
    /* background: linear-gradient(293deg, rgba(62, 102, 253, 1) 20%, rgba(194, 199, 253, 1) 100%); */
    background: linear-gradient(293deg, #ff9ca0 20%, #fe2413 100%);
}
.navbar-header {
    display: block;
}
.scrolling-text-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 5px 0;
  position: absolute;
  top: 85%;
  background-color: var(--main-color);
  color: white;
  font-size: 18px;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 35s linear infinite;
}
.scrolling-text span {
  margin: 0 100px;
}

@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* CHRISTMAS End */

.checkout-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

.product-wrapper {
    padding: 2rem;
    background-color: #F5F5F5;
    font-weight: 600;
}

.product-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-img {
    width: 100%;
    max-width: 400px;
    margin: 20px 0;
}

.product-title {
    font-size: 24px;
    line-height: 1.3em;
    margin-bottom: 5px;
}

.price {
    color: #8E8E8E;
    font-size: 28px;
}

#phoneForm {
    margin-left: 2rem;
}

.form-title {
    background-color: #707070;
    color: white;
    padding: 14px;
    text-align: center;
    margin-bottom: 15px;
}

.form-title h3 {
    font-weight: 700;
    margin: unset;
}

.field01,
.select01 {
    height: 46px;
    line-height: 36px;
    margin-top: 2px;
    font-weight: 400;
}

.field_row {
    font-weight: 600;
    color: #999999;
}

.field_row .text-sm {
    font-size: smaller;
    line-height: 1em;
}

/* required valify fail*/
.valify-fail {
    border-color: red !important;
}

input::placeholder,
.field_row .default {
    font-weight: lighter;
    color: #999999;
}

.btn-submitForm-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-submitForm:hover {
    filter: opacity(0.6);
}
.btn-submitForm {
    color: white;
    background-color: #AFAFAF;
    border: 0;
    border-radius: 13px;
    padding: 12px 40px;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 300ms;
}
.btn-submitForm:hover {
    background-color: #979797;
}
#checkout-result h1 {
    font-size: 45px;
    margin-bottom: 0;
}

#checkout-result hr {
    border-top: 1px solid #707070;
    border-bottom: 0;
    width: 70%;
}

.result-img {
    width: 80%;
    max-width: 160px;
}

.flex-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#success {
    color: #707070;
    background-color: #F8F8F8;
    padding: 5rem 0;
    margin-top: 110px;
    display: none;
}

#error {
    background-color: #CACACA;
    padding: 5rem 0;
    margin-top: 110px;
    display: none;
}

#error h1,
#error .for_seo {
    color: white;
}

#error hr {
    border-top: 1px solid white;
    border-bottom: 0;
}

#checkout-result .for_seo {
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 22px;
}

#checkout-result .wts-btn {
    margin-top: 50px;
    padding: 12px 22px 12px 76px;
    background-color: #50CC5C;
    color: white;
    font-size: 23px;
    font-weight: 600;
    border-radius: 10px;
    letter-spacing: 2px;
    transition: all 300ms;
    position: relative;
}

#checkout-result .wts-btn::before {
    content: '';
    background-image: url(../../images/header/icon_ws_m.png);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 5px;
    left: 22px;
    bottom: 5px;
    aspect-ratio: 1/1;
}

#checkout-result .wts-btn:hover {
    background-color: #37b343;
}

#checkout-result .header_icon {
    display: none;
}
#loading {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    z-index: 9999;
}

.loading-img {
    width: 100px;
    display: flex;
    justify-content: center;
    transition: all 250ms;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.loading-deco {
    position: absolute;
}

.loading-deco {
    animation: spin 4s linear infinite;
}
#msgModal {
    padding: 2rem 0;
    text-align: center;
    font-size: 18px;
}
#msgModal a {
    color: #9d9cd0;
    text-decoration: underline;
    display: inline-flex;
}
#msgModal .whatsapp_btn:after {
    content: "";
    display: inline-block;
    vertical-align: text-top;
    background: url(../../images/share/icon_ws.png) no-repeat center center / contain;
    width: 18px;
    padding-bottom: 18px;
    margin-left: 3px;
    filter: brightness(0) invert(1);
    filter: invert(89%) sepia(20%) saturate(4439%) hue-rotate(
196deg) brightness(89%) contrast(84%);
    transition: all 0.3s ease-out;
}

#VLine .bg_highlight , #VI .bg_highlight, #VIO .bg_highlight {
    background-color: #24408C;
}
#VLine .font_highlight, #VI .font_highlight, #VIO .font_highlight {
    color: #24408C;
}
#VLine .btn-submitForm, #VI .btn-submitForm, #VIO .btn-submitForm {
    border-radius: 0;
    background-color: #24408C;
}

#Onda .bg_highlight {
    background-color: #F27C8E;
}
#Onda .font_highlight {
    color: #F27C8E;
}
#Onda .btn-submitForm {
    border-radius: 0;
    background-color: #F27C8E;
}

.main_container {
 margin-top: 120px;
 padding-top: 3rem;
}

.checkout-title-gp{
    display: block!important;
    margin-bottom: 1rem;
}
.checkout-title-product {
    font-size: var(--checkout-font-lg);
}
#phoneForm {
    margin-left: unset;
    margin-top: 2rem;
}
form {
    padding: 3rem;
    background-color: #F4F4F4;
}

.checkout-info {
    padding: 1rem;
    background-color: white;
}
.btn-submitForm-wrapper {
    justify-content: flex-start;
    margin-top: 20px;
}
#Titanium .btn-submitForm {
    border-radius: 0;
    background-color: var(--main-color);
}
/* Hide Titanium 
#Titanium .shop_close.hide {
    display: flex!important;
}
#Titanium {
    overflow: hidden;
}*/
.checkout-title {
    font-weight: 700;
    font-size: 45px;
}

.product-info {
    padding: 0 3rem;
    font-size: var(--checkout-font);
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 25px;
    line-height: 1.6em;
}
.product-info .title{
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3em;
}
.product-info .tag {
    display: inline;
    color: white;
    padding: 5px 15px;
    font-size: 24px;
    font-weight: 500;

}
.special-price span{
    font-size: var(--checkout-font-md);
    font-weight: 600;
}
.stat-box {
    font-size: var(--checkout-font-md);
    align-items: end;
    font-size: 25px;
}
.stat-box big {
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    margin-right: 8px;
}
.note {
    font-size: 14px;
}

/* Slides */
.slides-wrappers {
    max-width: 550px;
    margin-bottom: 2rem;
}
/* Hide the images by default */
.imageSlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* columns side by side */
.column {
  float: left;
  width: 20%;
}
.slides_thumbnail {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}
/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media screen and (min-width:1460px) {
    .navbar-fixed-top.scrolled .navbar-header {
        padding-top: 26px;
    }
}

@media screen and (max-width:1199px) {
    #phoneForm {
        margin-left: unset;
    }
}

@media screen and (min-width:992px) {}

@media screen and (max-width:991px) {
    .scrolling-text-container {
        padding: 10px 0;
        font-size: 20px;
    }
    .copy-btn {
        font-size: 22px;
    }
    .slides-wrappers {
        width: 100%;
        max-width: unset;
    }
    .checkout-row {
        padding: 0 2rem;
    }
}

@media all and (max-width:640px) and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {}

@media screen and (min-width:641px) {}

@media screen and (max-width:640px) {
    .main_container {
        margin-top: 100px;
    }
    #VIO .product-img {
        max-width: unset;
    }
    #VIO .product-img img {
        content: url("../images/bikini_s_mobile.png");
    }
    .product-info {
        padding: unset;
    }
    #Titanium #phoneForm {
        padding: 1rem;
    }
    .checkout-row {
        padding:unset;
    }
    .product-info {
        padding: 0 5%;
        line-height: 2em;
        font-size: 24px;
    }
    .product-info .title {
        line-height: 1.5em;
        font-size: 35px;
    }
    .product-info .title br {
    display: none;
    }
    .percentage {
        font-size: 55px;
        line-height: 1.3em;
    }
    .note {
        font-size: 18px;
        line-height: 1.5em;
    }
}