/*=============== GOOGLE FONTS ===============
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=PT+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');
*/
/*=============== VARIABLES CSS ===============*/
 
/*
@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}
*/
/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 54%, 12%);
  --title-color: hsl(var(--hue-color), 24%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 29%, 12%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/*========== Button Dark/Light ==========*/
.nav__dark {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  position: absolute;
  left: 3rem;
  bottom: 4rem;
}

.change-theme, .change-theme-name {
  color: var(--text-color);
}

.change-theme {
  cursor: pointer;
  font-size: 1rem;
}

.scrolling-wrapper {
     overflow-x: scroll;
}

.discount-badge{
    position: absolute;
    right:-20px;
    top:10px;
    background:red;
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color:white;
    padding:5px 10px;
    font-size:20px;
}

.change-theme-name {
  font-size: var(--small-font-size);
}

/*=============== BASE ===============
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}
*/
/*
body {
  margin: var(--header-height) 0 0 0;
  
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  
  background-color: var(--body-color);
  color: var(--text-color);
}*/
/*
h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
   font-family: var(--title-font); 
}
*/

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  /*height: auto; */
}

button,
input , select{
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  border-radius: .5rem;
}

button {
  cursor: pointer;
  border-radius: .5rem;
}
.button{
  border-radius: .5rem;
}
input{
  /*outline: none;*/
}

.main {
  overflow-x: hidden;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2.5rem;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo, .nav__toggle{
  /* color: var(--white-color); */
  color: var(--first-color-second);
}

.nav__logo {
  font-family: Roboto, sans-serif;
  margin-left: auto;
    margin-right: auto;
  font-weight: var(--font-semi-bold);
  text-align: center;
  
}
.nav__logo img{
  /*top: 1rem;*/
    top: 0.8rem;
    left: 2rem;
    position: absolute;
    width: 40px;
    /*border: 1px solid whitesmoke;*/
    /*border-radius: 5px 0 5px 0;*/
    padding: 1px;
    /*box-shadow: 1px 1px 1px rgb(14 55 63 / 15%);*/
}

.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav__menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem;
    transition: .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  /* color: var(--text-color-light); 
  color: var(--first-color-second);
  text-transform: uppercase;*/
  font-weight: var(--font-semi-bold);
  
}

.nav__link:hover {
  color: var(--text-color);
}

.nav__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 0 7px rgba(14, 55, 63, 0.15);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: var(--title-color);
}

/* Active link */
.active-link {
  position: relative;
  color: var(--title-color);
}

.active-link::before {
  content: '';
  position: absolute;
  background-color: var(--title-color);
  width: 100%;
  height: 2px;
  bottom: -.75rem;
  left: 0;
}

/*=============== HOME ===============*/
.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 83%;
}

.home__container {
  position: relative;
  height: calc(100vh - var(--header-height));
  align-content: center;
  row-gap: 3rem;
}

.home__data-subtitle, 
.home__data-title, 
.home__social-link, 
.home__info {
  color: var(--white-color);
}

.home__data-subtitle {
  display: block;
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__data-title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-2-5);
}

.home__social {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.home__social-link {
  font-size: 1.2rem;
  width: max-content;
}

.home__info {
  background-color: var(--first-color);
  display: flex;
  padding: 1.5rem 1rem;
  align-items: center;
  column-gap: .5rem;
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: 228px;
}

.home__info-title {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__info-button {
  font-size: var(--smaller-font-size);
}

.home__info-overlay {
  overflow: var(--img-hidden);
}

.home__info-img {
  width: 145px;
  transition: var(--img-transition);
}

.home__info-img:hover {
  transform: var(--img-scale);
}

.description{
  background: linear-gradient(rgba(14, 55, 63, 0.15) 50%, #fff , var(--body-color));
  padding-bottom: 3rem;
  padding-top: 3rem;
  /* margin-top: 3rem; */
}

.title__description{
  padding-left: 1rem;
  font-size: var(--h1-font-size);
}
.title_second {
  text-align: center;
}

.subtitle__description{
  background-color: rgba(255, 255, 255, 0.445);
  padding: 2rem;
  border-radius: .3rem .4rem;
  text-align: justify;
}
/*========== MENU ==========*/
.menu{
  display: flex;
  justify-content: center;
  align-items: center;

}
.menu__container{
  position: relative;
  width: 1100px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-wrap: wrap; */
  margin-bottom: var(--mb-6);
}

.menu__content{
  position: relative;
  /*width: 6rem;*/
  /*height: 6rem;*/
  width: 7rem;
  height: 7rem;
  /*margin: 30px 10px;*/
  margin: 30px 3px;
  margin-top: var(--mb-6);
  padding: 19px 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 2px 10px rgb(31 28 28 / 50%);
  transition: 0.3s ease-in-out;
  border-radius: .5rem;
}
.menu__contentX{
  position: relative;
  /*width: 6rem;*/
  /*height: 6rem;*/
  width: 5rem;
  height: 4rem;
  /*margin: 30px 10px;*/
  margin: 30px 3px;
  margin-top: var(--mb-6);
  padding: 19px 8px;
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 1px 4px 9px 0 rgb(0 142 198 / 26%), 7px 9px 9px -11px rgb(0 142 198);
    box-shadow: 1px 4px 9px 0 rgb(0 142 198 / 26%), 7px 9px 9px -11px rgb(0 142 198);
    text-shadow: 2px 1px 0 rgb(255 255 255 / 66%);
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -webkit-transform: rotateX(-4.010704565915762deg) rotateY(1.1459155902616465deg);
    transform: rotateX(-4.010704565915762deg) rotateY(1.1459155902616465deg);
  border-radius: .5rem;
}

.menu__content:hover{
  /*height: 120px;*/
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.menu__contentX:hover{
  /*height: 120px;*/
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.menu__img{
  position: relative;
  /*width: 5rem;*/
  /*height: 5rem;*/
  width: 7rem;
  height: 6rem;
  top: -10px;
  left: 0px;
  z-index: 1;
  border-radius: 0.3rem;
}
.menu__imgX{
  position: relative;
  /*width: 5rem;*/
  /*height: 5rem;*/
  width: 7rem;
  height: 3rem;
  top: -10px;
  left: 0px;
  z-index: 1;
  border-radius: 0.3rem;
}
.menu__img img{
  max-width: 100%;
  /*border-radius: 4px;*/
  /*box-shadow: 0 1px 2px rgba(0,0,0,0.2);*/

}
.menu__imgX img{
  max-width: 100%;
  /*border-radius: 4px;*/
  /*box-shadow: 0 1px 2px rgba(0,0,0,0.2);*/

}
/*.menu__detail{*/
/*  position: relative;*/
/*  margin-top: -140px;*/
/*  padding: 30px 15px;*/
/*  text-align: center;*/
/*  color: #111;*/
/*  visibility: hidden;*/
/*  opacity: 0;*/
/*  transition: 0.3s ease-in-out;*/
/*  font-size: .5rem;*/
/*}*/


/*.menu__content:hover .menu__detail{*/
/*  visibility: visible;*/
/*  opacity: 1;*/
/*  margin-top: -40px;*/
/*  transition-delay: 0.3s;*/
/*}*/
 
.menu__button:hover{
  box-shadow: 5px 5px 5px 5px rgba(3,74,40,.15);
}

.menu__name, .menu__preci{
  align-self: center;
  font-weight: var(--font-semi-bold);
  color: white;
}

.menu__name{
  font-size: .938rem;
}

.menu__button{
  position: absolute;
  right: 5rem;
  left: 4rem;
  bottom: -2rem;
  padding: .5rem 1rem;
  background-color: rgba(248, 194, 58, 0.938);
  color: #FFF;
  border-radius: .5rem;
  text-align: center;
}

.menu__button i{
  font-size: 1.5rem;
}

/*=============== MENU BOTTOM ===============*/
.menu__bottom {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: var(--z-fixed);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  /* flex-direction: row; */
  background-color: #fff;
  box-shadow: 0 -1px 8px 0 rgba(0, 0, 0, 0.11);
}

.nav__bottom {
  height: var(--header-height);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  text-align: center;
}

.nav__list__bottom{
    display: flex;
    /* row-gap: 2rem; */
    align-items: center;
    /* flex-direction: column; */
    /* row-gap: 2.5rem; */
}

.bottom{
  display: flex;
  flex-direction: column;
  padding: 0.9rem;
  font-size: small;
  
}

.nav__item__bottom i{
  font-size: 1.5rem;
}
/*========== BERITA ==========*/
.news__container{
  margin: var(--mb-1);
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}

.news__content{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: .75rem;
}

.news__img{
  width: 200px;
  height: 100px;
  align-self: center;
  margin-bottom: var(--mb-1);
  border-radius: .5rem;
}

.news__img img{
  box-shadow: 0 0px 4px rgba(3,74,40,.15);
  object-fit: fill;
}

.news__name, .news__preci{
  font-weight: var(--font-semi-bold);
  color: #393939;
}

.news__name{
  font-size: .938rem;
}

.news__detail, .news__preci{
  font-size: .813rem;
}

.news__detail{
  margin-bottom: .5rem;

}

.news__name, .news__detail{
  cursor: pointer;
}

.news__button{
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  border-radius: .5rem 0 .5rem 0;
}

 /* Keuntungan */
.luck__container{
  margin: var(--mb-1);
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  margin-bottom: var(--mb-6);
}

.luck__content{
  position: relative;
  display: flex;
  justify-content: center;
}

.luck__img{
  width: 200px;
  height: 130px;
  align-self: center;
  /* margin-bottom: var(--mb-1); */
  border-radius: .5rem;
}

.luck__img img{
  box-shadow: 0 0px 4px rgba(3,74,40,.15);
  object-fit: fill;
}

.luck__name, .luck__preci{
  font-weight: var(--font-semi-bold);
  color: #393939;
}

.luck__name{
  font-size: .938rem;
}

.luck__detail, .luck__preci{
  font-size: .813rem;
}

.luck__detail{
  margin-bottom: .5rem;

}

.luck__name, .luck__detail{
  cursor: pointer;
}

.luck__button{
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  /* padding: .625rem .813rem; */
  border-radius: .5rem 0 .5rem 0;
}
 

/*========== PROPERTI ==========*/
.property__container{
  margin: var(--mb-1);
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}

.property__content{
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: rgba(255,255,255,0.8);
  border-radius: .5rem;
  box-shadow: 0 2px 6px rgba(3,74,40,.15);
  padding: .75rem;
  /* row-gap: 1rem; */
}

.property__content:hover{
  box-shadow: 0 2px 4px rgba(3, 75, 63, 0.671);
}

.property__img{
  width: 200px;
  height: 100px;
  align-self: center;
  margin-bottom: var(--mb-1);
  border-radius: .5rem;
}

.property__img img{
  box-shadow: 0 0px 4px rgba(3,74,40,.15);
  object-fit: fill;
}

.property__name, .property__preci{
  text-align: center;
  font-weight: var(--font-semi-bold);
  color: #393939;
}

.property__name{
  font-size: .938rem var(--body-color);
}

.property__detail, .property__preci{
  font-size: .813rem;
}

.property__detail{
  margin-bottom: .5rem;

}

.property__name, .property__detail{
  cursor: pointer;
}

.property__button{
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  /* padding: .625rem .813rem; */
  border-radius: .5rem 0 .5rem 0;
}

.download__button{
  cursor: pointer;
  text-align: center;
  color: #FFF;
  padding: .625rem .813rem;
  margin-top: .2rem;
  margin-bottom: .2rem;
  background: var(--first-color-second);
  border-radius: 1rem;
  font-size: small;
}


/* NEWS SLIDER */
.news__sliders{
  position: relative;
  background: #000116;
  width: 100%;
  height: 220px;
  overflow: hidden;
   border-radius: 17px;
 /*margin-top: 12px !important;*/
}

.news__sliders .slide{
  position: absolute;
  /* display: block; */
  width: 100%;
  height: 100%;
  clip-path: circle(0% at 0 50%);
}

.news__sliders .slide.active{
  clip-path: circle(150% at 0 50%);
  transition: 2s;
}

.news__sliders .slide img{
  position: absolute;
  /* display: block; */
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.news__sliders .slide .news__info{
  position: absolute;
  color: black;
  background: rgba(255,255,255,0.8);
  /* background: rgba(255,255,255,0.3); */
  width: 75%;
  margin-top: 50px;
  margin-left: 50px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 5px 25px rgb(1 1 1 / 5%);
}

.news__navigation{
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.news__sliders:hover .news__navigation{
  opacity: 1;
}

.prev-btn, .next-btn{
  z-index: 999;
  font-size: 3em;
  background: rgba(255,255,255,0.8);
  padding: 3px;
  cursor: pointer;
}

.prev-btn{
  /*border-top-right-radius: 3px;*/
  /*border-bottom-right-radius: 3px;*/
  border-radius: .5rem;
  margin-left: 1rem;
}

.next-btn{
  /*border-top-left-radius: 3px;*/
  /*border-bottom-left-radius: 3px;*/
   border-radius: .5rem;
  margin-right: 1rem;
}

.news__navigation-visibility{
  z-index: 999;
  display: flex;
  justify-content: center;
}

.news__navigation-visibility .slide-icon{
  z-index: 999;
  /*background: rgba(255, 255, 255, 0.883);*/
  width: 20px;
  height: 10px;
  transform: translateY(-50px);
  margin: 0 6px;
  border-radius: 2px;
  box-shadow: 0 5px 25px rgb(1 1 1 /20%);
}

.news__navigation-visibility .slide-icon.active{
  /*background: #4286f4;*/
}


/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
}

.button__secondary{
  display: inline-block;
  background-color: #409096;
  color: var(--white-color);
  padding: 0.5rem 1rem 0.5rem 1rem;
  margin: .5rem;
  font-weight: var(--font-medium);
  border-radius: .3rem;
  text-align: center;

}
.button__reserve{
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);   
  padding: 0.8rem 1rem 0.8rem 1rem;
    margin: .5rem;
    font-weight: bolder;
    font-size: 1rem;
    border-radius: .3rem;
    box-shadow: 2px 2px 10px rgb(31 28 28 / 50%);
}
.button__reserve:hover {
 box-shadow: none;
}
.button__share{
  display: inline-block;
  background-color: #bae7eb;
  color: #409096;
  padding: 0.8rem 1rem 0.8rem 1rem;
  border: 1px solid #409096;
  margin: .5rem;
  font-weight: var(--font-medium);
  border-radius: .3rem;
  text-align: center;
}

.button__logout {
  display: inline-block;
  background-color: #409096;
  color: var(--white-color);
  padding: 0.5rem 1rem 0.5rem 1rem;
  margin: 1rem;
  font-weight: var(--font-medium);
  border-radius: 0.3rem;
}
.button__updateprofile {
  display: inline-block;
  background-color: var(--first-color-second);
  color: var(--white-color);
  padding: 0.5rem 1rem 0.5rem 1rem;
  margin: 1rem;
  font-weight: var(--font-medium);
  border-radius: 0.3rem;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button--flex {
  display: flex;
  align-items: center;
  column-gap: .25rem;
}

.button--link {
  background: none;
  padding: 0;
}

.button--link:hover {
  background: none;
}

.button__group{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* TABLE */
.table{
  border: 1px solid var(--first-color-second);
  border-collapse: collapse;
  margin: var(--mb-2) 0 var(--mb-2) 0;
}

.table th,.table td{
  padding: .8rem 1.5rem .8rem 1.5rem;
  text-align: justify;
}

.tb__profile{
    border-collapse: collapse;
}

.tb__profile th, .tb__profile td{
 /*padding: 0 1rem 0rem 1rem;*/
 margin: 0.5rem;
  text-align: justify;
}

.hide__update{
    display: none;
}
/* DETAIL UNIT */
.detail__unit__container {
  display: flex;  
  justify-content: center;
  flex-wrap: wrap;
  margin: var(--mb-2) 0 var(--mb-2) 0;
  row-gap: 2.5rem;
  box-shadow: 3px 0px 12px 6px rgba(0, 0, 0, 0.1);
  padding: var(--mb-2);
  border-radius: .5rem;
}

.detail__unit__img{
  display: flex;
  /* position: relative; */
  /* width: 10rem;
  height: 11rem; */
  margin-bottom: 6rem;
}

/* DETAIL PAYMENT */
.detail__payment__container, .payment__simulation {
  row-gap: 2.5rem;
  box-shadow: 3px 0px 12px 6px rgba(0, 0, 0, 0.1);
  padding: var(--mb-2);
  border-radius: .5rem;
  margin-bottom: var(--mb-2);
  margin-top: var(--mb-2);
}

.payment__simulation{
  display: none;
}
.active{
  display: block;
}

.payment__title{
  font-size: var(--mb-2);
  margin-bottom: var(--mb-2);
}

/*=============== ABOUT ===============*/
.about__data {
  text-align: center;
}

.about__container {
  row-gap: 2.5rem;
}

.about__description {
  margin-bottom: var(--mb-2);
  text-align: justify;
}

figure.table{
  border: none;
}

.about__description table tr td{
  padding: 0.5rem 0 0 0.2rem;
}

.about__img {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  transform: var(--img-scale);
  margin-top: var(--mb-2);
  margin-bottom: 4rem;
}

.about__img-overlay {
  overflow: var(--img-hidden);
}

.about__img-one {
  width: 130px;
}

.about__img-two {
  width: 180px;
}

.about__img-one, 
.about__img-two {
  transition: var(--img-transition);
}

.about__img-one:hover, 
.about__img-two:hover {
  transform: var(--img-scale);
}

/* UNIT */
.unit__container{
  margin: var(--mb-1);
}
.unit__content__right{
  position: relative;
  /* background-color: rgba(14, 55, 63, 0.15); */
  background: linear-gradient(to right,rgba(14, 55, 63, 0.15) 70%, #fff );
  /* linear-gradient(to right, #000046, #1cb5e0);    */
  display: flex;
  justify-content: flex-start;
  height: 10rem;
  border-radius: .3rem;
  margin-left: 3rem;
}
.unit__content__left{
  position: relative;
  /* background-color: rgba(14, 55, 63, 0.15); */
  background: linear-gradient(to left,rgba(14, 55, 63, 0.15) 70%, #fff );
  /* linear-gradient(to right, #000046, #1cb5e0);    */
  display: flex;
  justify-content: flex-end;
  height: 10rem;
  border-radius: .3rem;
  padding-left: 3rem;
  margin-right: 3rem;
}

.unit__content__right img, .unit__content__left img{
  /* position: absolute; */
  width: 160px;
  height: 160px;
  object-fit: fill;
  border-radius: .3rem;
}

.unit__data{
  margin: 1rem;
  font-size: var(--normal-font-size);
  font-weight: bolder;
}

.unit{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.unit__item{
  position: relative;
  text-align: center;
  width: 4rem;
  padding: .5rem;
  border: 1px solid var(--white-color);
  border-collapse: collapse;
  border-radius: .3rem;
  color: white;
  margin: 0.1rem;
  cursor: pointer;
  font-size: 90%;
}

.ribbon {
  width: 56px;
  height: 50px;
  overflow: hidden;
  position: absolute;
}
.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  border: 3px solid #ffd405;
}
.ribbon span {
  position: absolute;
  display: block;
  font-size: 9px;
  width: 45px;
  height: 20px;
  /* padding: 1px 0; */
  color: rgb(255, 0, 0);
  font-weight: 700;
  background-color: #ffd405;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* top right*/
.ribbon-top-right {
  top: -1px;
  right: 9px;
}
.ribbon-top-right::before,
.ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon-top-right::before {
  top: 0;
  left: 0;
}
.ribbon-top-right::after {
  bottom: 0;
  right: 0;
}
.ribbon-top-right span {
  left: -13px;
  /* top: 30px; */
  top: -2px;
  transform: rotate(-45deg);
}


.reserved{
  background: #fffb20dc;
  color: black;
}
.ready{
  background: #ff0808dc;
}
.sold{
  background: #000000dc;
}

/*=============== DISCOVER ===============*/
.discover{
  /* margin-top: 2rem; */
  background-color: rgba(14, 55, 63, 0.15);
  padding-bottom: var(--mb-2);
}

.discover h2{
  text-align: center;
  padding-top: var(--mb-2);
  margin-bottom: var(--mb-2);
  font-size: x-large;
}

.discover__card {
  position: relative;
  border-radius: .5rem;
  width: 200px;
  overflow: var(--img-hidden);
}

.discover__data {
  position: absolute;
  bottom: 3.5rem;
  left: 1rem;
  /* background-color: rgba(3, 74, 40, 0.568); */
}

.discover__title, 
.discover__description {
  /* color: var(--white-color); */
  color: rgb(255, 186, 11);
  text-shadow: 0 5px 25px greenyellow;
}

.discover__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.discover__description {
  display: block;
  font-size: var(--smaller-font-size);
}

.discover__img {
  height: 20em;
  transition: var(--img-transition);
}

.discover__img:hover {
  transform: var(--img-scale);
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: none;
}

/*=============== EXPERIENCE ===============*/
.experience__container {
  row-gap: 2.5rem;
  justify-content: center;
  justify-items: center;
}

.experience__content {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  justify-items: center;
  padding: 0 2rem;
}

.experience__number {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-5);
}

.experience__description {
  font-size: var(--small-font-size);
}

.experience__img {
  position: relative;
  padding-bottom: 2rem;
}

.experience__img-one, 
.experience__img-two {
  transition: var(--img-transition);
}

.experience__img-one:hover, 
.experience__img-two:hover {
  transform: var(--img-scale);
}

.experience__overlay {
  overflow: var(--img-hidden);
}

.experience__overlay:nth-child(1) {
  width: 263px;
  margin-right: 2rem;
}

.experience__overlay:nth-child(2) {
  width: 120px;
  position: absolute;
  top: 2rem;
  right: 0;
}

/*=============== VIDEO ===============*/
.video__cluster {
  background-color: #000116;
  background-position: center;
  overflow: hidden;
  border-radius: 0.3rem;
  /* height: 20rem; */
  /* margin-bottom: 3rem; */
}
.video__data iframe {
  z-index: 000;
  border-radius: .3rem;
  /* position: absolute; */
  /*top: 0;*/
  /*left: 0;*/
  width: 100%;
  height: 13rem;
  margin-top: 0.5rem;
  object-fit: cover;
}
/*.video{*/
/*  margin-top: 2rem;*/
/*  margin-bottom: 1rem;*/
/*  background-color: rgba(14, 55, 63, 0.15);*/
/*}*/

/*.video__container {*/
/*  padding-bottom: 1rem;*/
/*}*/

/*.video__description {*/
/*  text-align: center;*/
/*  margin-bottom: var(--mb-2-5);*/
/*  color: var(--first-color-second);*/
/*}*/

/*.video__content {*/
/*  position: relative;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  padding: 1rem;*/
/*  background-color: var(--first-color-second);*/
/*  border-radius: .5rem;*/
/*  margin: var(--mb-2);*/
  /* width: fit-content;
  height: max-content; */

/*}*/

/*.video__button {*/
/*  position: absolute;*/
/*  right: 1rem;*/
/*  bottom: -1rem;*/
/*  padding: .5rem 1rem;*/
/*  background-color: goldenrod;*/
/*}*/

/*.video__button-icon {*/
/*  font-size: 2rem;*/
  /* color: #393939; */
/*}*/

/*=============== PLACES ===============*/


.place__card, .place__img {
  height: 230px;
}

.place__container {
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
}

.place__card {
  position: relative;
  border-radius: .5em;
  overflow: var(--img-hidden);
}

.place__card:hover .place__img {
  transform: var(--img-scale);
}

.place__img {
  transition: var(--img-transition);
}

.place__content, .place__title {
  color: var(--white-color);
}

.place__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: .75rem .75rem 1rem;
}

.place__rating {
  align-self: flex-end;
  display: flex;
  align-items: center;
}

.place__rating-icon {
  font-size: .75rem;
  margin-right: var(--mb-0-25);
}

.place__rating-number {
  font-size: var(--small-font-size);
}

.place__subtitle, .place__price {
  display: block;
}

.place__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.place__subtitle {
  font-size: var(--smaller-font-size);
  margin-bottom: var(--mb-1-25);
}

.place__button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: .75rem 1rem;
}

/* DETAIL */
.detail__form{
  border-collapse: 1;
  text-align: justify;

}

/*=============== SUBSCRIBE ===============*/
.subscribe__bg {
  background-color: var(--first-color-second);
  padding: 2.5rem 0;
  border-radius: .5rem;
}

.subscribe__title, 
.subscribe__description {
  color: var(--white-color);
}

.subscribe__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.subscribe__form {
  background-color: var(--input-color);
  padding: .5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: .5rem;
}

.subscribe__input {
   /* width: 70%; */
  height: 2em;
  padding-right: 0.5rem;
  /* background-color: var(--input-color); */
  color: var(--text-color);
  margin: var(--mb-1);
  border: 1px solid var(--text-color);
  outline: none;
  padding: 5px;
  /* width: 100%; */
  min-width: 150px;
  /* font-size: 1.1em; */
}

.subscribe__label{
  margin-left: var(--mb-1);
}

.subscribe__input::placeholder {
  color: #39393986;
}

/*=============== SPONSORS ===============*/
.sponsor{
  margin-bottom: 5rem;
}
.sponsor__container {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  justify-items: center;
  row-gap: 3.5rem;
}

.sponsor__content:hover .sponsor__img {
  /* filter: invert(0.5); */
}

.sponsor__img {
  width: 90px;
  /* filter: invert(0.7); */
  transition: var(--img-transition);
}

/* SITEPLAN */
.siteplan{
  margin: var(--mb-2);
}

/*=============== FOOTER ===============*/
.footer{
  display: none;
}
.footer__container {
  row-gap: 5rem;
}

.footer__content {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__title, 
.footer__subtitle {
  font-size: var(--h3-font-size);
}

.footer__title {
  margin-bottom: var(--mb-0-5);
}

.footer__description {
  margin-bottom: var(--mb-2);
}

.footer__social {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-right: var(--mb-1-25);
}

.footer__subtitle {
  margin-bottom: var(--mb-1);
}

.footer__item {
  margin-bottom: var(--mb-0-75);
}

.footer__link {
  color: var(--text-color);
}

.footer__link:hover {
  color: var(--title-color);
}

.footer__rights {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  text-align: center;
}

.footer__copy, .footer__terms-link {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.footer__terms {
  display: flex;
  column-gap: 1.5rem;
  justify-content: center;
}

.footer__terms-link:hover {
  color: var(--text-color);
}

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--first-color);
  padding: .5rem;
  display: flex;
  opacity: .9;
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

.scrollup__icon {
  color: var(--white-color);
  font-size: 1.2rem;
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}

/* Live Chat */
.chat {
  position: fixed;
  /* display: flex;
  flex-direction: row; */
  border: 1px solid var(--white-color);
  border-collapse: collapse;
  background: var(--first-color-second);
  border-radius: .3rem;
  color: var(--white-color);
  /* margin: 20rem; */
  /* bottom: 33rem;
  left: 13rem; */
  bottom: 39rem;
  left: 33rem;
  /* bottom: -20%; */
  /* background-color: var(--first-color); */
  padding: .8rem 1.5rem .8rem 1.5rem;
  /* display: flex; */
  /* opacity: .9; */
  /* z-index: var(--z-tooltip); */
  transition: .4s;
}
/* Lihat VR */
.vr {
  /* display: none; */
  position: fixed;
  /* display: flex;
  flex-direction: row; */
  border: 1px solid var(--white-color);
  border-collapse: collapse;
  background: var(--first-color-second);
  border-radius: .3rem;
  color: var(--white-color);
  /* margin: 20rem; */
  bottom: 35rem;
  left: 33rem;
  /* bottom: -20%; */
  /* background-color: var(--first-color); */
  padding: .8rem 1.5rem .8rem 1.5rem;
  /* display: flex; */
  /* opacity: .9; */
  /* z-index: var(--z-tooltip); */
  transition: .4s;
}

.vr i{
  /* width: 20px;
  height: 10px;
  font-size: 1.3rem; */
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .60rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .place__container {
    grid-template-columns: max-content;
    justify-content: center;
  }
  .experience__content {
    padding: 0;
  }
  .experience__overlay:nth-child(1) {
    width: 190px;
  }
  .experience__overlay:nth-child(2) {
    width: 80px;
  }
  .home__info {
    width: 190px;
    padding: 1rem;
  }
  .experience__img,
  .video__container {
    padding: 0;
  }

}

@media screen and (min-width: 410px) {
  .video__cluster {
    margin-top: 3rem;
    height: 16rem;
  }
  .video__data iframe {
    height: 15rem;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .video__container {
    display: grid;
    grid-template-columns: .6fr;
    justify-content: center;
  }
  /*  .video__cluster {*/
  /*  height: 30rem;*/
  /*}*/
  /*.video__data iframe {*/
  /*  height: 30rem;*/
  /*}*/
  .place__container {
    grid-template-columns: repeat(3, max-content);
  }
  .subscribe__form {
    width: 470px;
    margin: 0 auto;
  }
  .menu__container{
    grid-template-columns: repeat(3, 1fr);
    /* column-gap: 4rem; */
  }
  .menu__content{
    margin: 30px 10px;
    width: 11rem;
    height: 11rem;
  }
  
 
  .menu__img{
    /*top: -15px;*/
    height: 10rem;
    width: 10rem;
  }

  .menu__detail{
    font-size: small;
    top: -10px;
  }

  /*.menu__content:hover{*/
  /*  height: 180px;*/
  /*}*/
  .detail__unit__container {
    grid-template-columns: repeat(2, 1fr);
     column-gap: 6rem;
  }
 

  .chat{
    display: none;
    bottom: 39rem;
    left: 26rem;
    }
    .vr{
      display: none;
    bottom: 35rem;
    left: 26rem;
    }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__link {
    color: var(--white-color);
    text-transform: initial;
  }
  .nav__link:hover {
    color: var(--white-color);
  }
  .nav__dark {
    position: initial;
  }
  .nav__menu {
    display: flex;
    column-gap: 1rem;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }
  .nav__toggle, .nav__close, .menu__bottom {
    display: none;
  }
  .change-theme-name {
    display: none;
  }
  .change-theme {
    color: var(--white-color);
  }
  .active-link::before {
    background-color: var(--white-color);
  }
  .scroll-header .nav__link {
    color: var(--text-color);
  }
  .scroll-header .active-link {
    color: var(--title-color);
  }
  .scroll-header .active-link::before {
    background-color: var(--title-color);
  }
  .scroll-header .change-theme {
    color: var(--text-color);
  }
  .section {
    padding: 7rem 0 2rem;
  }
  .video__cluster {
    height: 30rem;
  }
  .video__data iframe {
    height: 30rem;
  }
  .home__container {
    height: 100vh;
    grid-template-rows: 1.8fr .5fr;
  }
  .home__data {
    align-self: flex-end;
  }
  .home__social {
    flex-direction: row;
    align-self: flex-end;
    margin-bottom: 3rem;
    column-gap: 2.5rem;
  }
  .home__info {
    bottom: 3rem;
  }
  .detail__unit__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 9rem;
    margin: 7rem 0 2rem 0;
  }
  .about{
      margin-top: 2rem;
  }
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 2rem;
    /* align-items: center;  */
  }
  .about__data, .about__title {
    text-align: initial;
  }
  .about__title {
    margin-bottom: var(--mb-1-5);
  }
  .about__description {
    margin-bottom: var(--mb-2);
  }
  .discover__container {
    /* width: 610px; */
    margin-left: auto;
    margin-right: auto;
  }
  .discover__container,
  .place__container {
    padding-top: 2rem;
  }
  .experience__overlay:nth-child(1) {
    width: 363px;
    margin-right: 4rem;
  }
  .experience__overlay:nth-child(2) {
    width: 160px;
  }
  .subscribe__bg {
    background: none;
    padding: 0;
  }
  .subscribe__form{
    /* grid-template-columns: repeat(4, 210px); */
  }
  .subscribe__container {
    background-color: var(--first-color-second);
    padding: 3.5rem 0;
  }
  .subscribe__input {
    padding: 0 .5rem;
  }
  .footer__rights {
    flex-direction: row;
    justify-content: space-between;
  }
  .menu__container{
    margin-top: var(--mb-6);
  }

  .menu__container{
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
    margin-bottom: var(--mb-6);
  }
  /* .menu__content, .menu__img{
    width: 15rem;
    height: 10rem;
  } */
  .menu__content{
     margin: 30px 3px;
    width: 13rem;
    height: 215px;
  }
  
  /*.menu__content:hover{*/
  /*  height: 230px;*/
  /*}*/

  .menu__img{
    /*top: -30px;*/
    /*height: 13rem;*/
    height: 12.3rem;
    width: 12rem;
  }

  .menu__detail{
    font-size: small;
    top: -20px;
  }
  .menu__button{
    right: 3rem;
    left: 2rem;
  }
  /* .video__container{
    margin-top: 10rem;
  } */
  .news__container{
    margin-top: var(--mb-6);
  }

  .news__container{
    grid-template-columns: repeat(3, 210px);
    column-gap: 4rem;
  }
  .news__content{
    padding: 1.5rem;
  }
  .news__img{
    width: 500px;
  }

  .news__navigation{
    height: 600px;
  }
  .luck__container{
    margin-top: var(--mb-6);
    margin-bottom: var(--mb-6);
  }

  .luck__container{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
  }
  .luck__content{
    /* padding: 1.5rem; */
  }
  .luck__img{
    width: 400px;
    height: 300px;
  }
  .property__container{
    margin-top: var(--mb-6);
  }

  .property__container{
    grid-template-columns: repeat(3, 210px);
    column-gap: 4rem;
  }
  .property__content{
    padding: 1.5rem;
  }
  .property__img{
    width: 500px;
  }
  
  .news__sliders{
    
  min-height: 600px;
  margin-top: 4.5rem;
  }

  .slide img{
    object-fit: fill;
  }

  .unit__content__left, .unit__content__right{
    height: 100%;
    column-gap: 3rem;
  }
  
  .unit__content__right img, .unit__content__left img{
    width: 300px;
    height: 300px;
  }

  .unit__data{
 margin-left: 1rem;
  padding: 4rem;
  font-size: var(--h2-font-size);
  }

  .chat{
    display: block;
  bottom: 2rem;
  left: 2rem;
  }
  .vr{
    display: block;
  bottom: 2rem;
  left: 11rem;
  }

  .footer{
    display: block;
  }
  .detail__payment__container{
    margin-top: 7rem;
  }
  .siteplan{
    margin: 5rem;
    align-items: center;
  }
  .siteplan img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
  
  .nav__logo{
    margin-left: 5rem;
  }
  .nav__logo img{
    top: 0.8rem;
    left: 1rem;
    width: 70px;
    height: 40px;
  }
  
  .video__cluster{
      margin-top: 4.5rem;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .home__container {
    grid-template-rows: 2fr .5fr;
  }
  .home__info {
    width: 328px;
    grid-template-columns: 1fr 2fr;
    column-gap: 2rem;
  }
  .home__info-title {
    font-size: var(--normal-font-size);
  }
  .home__info-img {
    width: 240px;
  }
  .about__img-one {
    width: 230px;
  }
   .video__cluster {
    height: 40rem;
  }
  .video__data iframe {
    height: 40rem;
  }
  .about__img-two {
    width: 290px;
  }
  .discover__card {
    width: 237px;
  }
  .discover {
    margin-top: 9em;
  }
  .discover h2{
    /*font-size: var(--mb-2);*/
  }
  .discover__data {
    /*left: 1.5rem;*/
    /*bottom: 2rem;*/
  }
  .discover__title {
    font-size: var(--h2-font-size);
  }
  .experience__content {
    margin: var(--mb-1) 0;
    column-gap: 3.5rem;
  }
  .experience__overlay:nth-child(1) {
    width: 463px;
    margin-right: 7rem;
  }
  .experience__overlay:nth-child(2) {
    width: 220px;
    top: 3rem;
  }
  .video__container {
    grid-template-columns: .7fr;
    
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 7rem;
  }
  .video__description {
    padding: 0 8rem;
  }
  .place__container {
    gap: 3rem 2rem;
  }
  .place__card, .place__img {
    height: 263px;
  }
  .footer__content {
    justify-items: center;
  }

  .unit__content__right img, .unit__content__left img{
    width: 500px;
    height: 500px;
  }

  .unit__data{
    font-size: var(--h1-font-size);
  margin: 4rem;
  padding: 4rem;

  }

  .menu__container{
    /* margin-top: var(--mb-6); */
  }

  .menu__container{
    grid-template-columns: repeat(3, 210px);
    column-gap: 2rem;
  }
  .menu__content{
    width: 18rem;
    height:  18rem;
    /*height: 250px;*/
  }
 
  .menu__img{
    /*height: 15rem;*/
    height: 17rem;
    width: 17rem;
  }

  .menu__detail{
    font-size: medium;
    top: -20px;
  }

  /*.menu__content:hover{*/
  /*  height: 290px;*/
  /*}*/

  .detail__unit__container {
     column-gap: 10rem;
  }
  /* .detail__unit__img{
    width: 40%;
  } */

  .nav__logo img{
    left: 4rem;
    width: 70px;
    height: 40px;
  }

}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1024px;
  }
  
  
  .nav__logo img{
    left: 6rem;
  }

  .news__container{
    margin-top: var(--mb-6);
  }

  .news__container{
    grid-template-columns: repeat(4, 210px);
    column-gap: 2rem;
  }
  .news__content{
    /* padding: 2.5rem; */
  }
  .news__img{
    width: 400px;
    height: 130px;
  }

  
  .luck__container{
    /* margin-top: var(--mb-6); */
  }

  .luck__container{
    grid-template-columns: repeat(2, 1fr);
    /* column-gap: 2rem; */
  }
  .luck__content{
    /* padding: 2.5rem; */
  }
  .luck__img{
    width: 500px;
    height: 400px;
  }
  
  .property__container{
    margin-top: var(--mb-6);
  }

  .property__container{
    grid-template-columns: repeat(4, 210px);
    column-gap: 2rem;
  }
  .property__content{
    /* padding: 2.5rem; */
  }
  .property__img{
    width: 400px;
    height: 130px;
  }

}
/* start */

.collapse_icon {
	width: 24px;
    height: 24px;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/up.svg);
	transform: rotate(0deg);
	transition: transform 300ms cubic-bezier(0.2, 0.64, 0.21, 1) 0s;
}
.loc_home {
	font-size: 24px;
	padding-right: 1.3rem !important;
	width: 24px;
    height: 24px;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/loc_home.png);
	transition: transform 300ms cubic-bezier(0.2, 0.64, 0.21, 1) 0s;
}

/* cek inet */
.offline-ui, .offline-ui *, .offline-ui:before, .offline-ui:after, .offline-ui *:before, .offline-ui *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.offline-ui {
  display: none;
  position: fixed;
  background: white;
  z-index: 2000;
  margin: auto;
  bottom: 0;
  left: 0;
  right: 0;
}
.offline-ui .offline-ui-content:before {
  display: inline;
}
.offline-ui .offline-ui-retry {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: none;
}
.offline-ui .offline-ui-retry:before {
  display: inline;
}
.offline-ui.offline-ui-up.offline-ui-up-5s {
  display: block;
}
.offline-ui.offline-ui-down {
  display: block;
}
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-retry {
  display: block;
}
.offline-ui.offline-ui-down.offline-ui-reconnect-failed-2s.offline-ui-waiting .offline-ui-retry {
  display: none;
}

@-webkit-keyframes offline-dropin {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 0;
  }


  1% {
    transform: translateY(-800px);
    -webkit-transform: translateY(-800px);
    -moz-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    -o-transform: translateY(-800px);
    opacity: 0;
  }


  2% {
    transform: translateY(-800px);
    -webkit-transform: translateY(-800px);
    -moz-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    -o-transform: translateY(-800px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
  }
}

@-moz-keyframes offline-dropin {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 0;
  }


  1% {
    transform: translateY(-800px);
    -webkit-transform: translateY(-800px);
    -moz-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    -o-transform: translateY(-800px);
    opacity: 0;
  }


  2% {
    transform: translateY(-800px);
    -webkit-transform: translateY(-800px);
    -moz-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    -o-transform: translateY(-800px);
    opacity: 1;
  }


  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
  }
}

@-ms-keyframes offline-dropin {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 0;
  }


  1% {
    transform: translateY(-800px);
    -webkit-transform: translateY(-800px);
    -moz-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    -o-transform: translateY(-800px);
    opacity: 0;
  }


  2% {
    transform: translateY(-800px);
    -webkit-transform: translateY(-800px);
    -moz-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    -o-transform: translateY(-800px);
    opacity: 1;
  }


  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
  }
}

@-o-keyframes offline-dropin {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 0;
  }


  1% {
    transform: translateY(-800px);
    -webkit-transform: translateY(-800px);
    -moz-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    -o-transform: translateY(-800px);
    opacity: 0;
  }


  2% {
    transform: translateY(-800px);
    -webkit-transform: translateY(-800px);
    -moz-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    -o-transform: translateY(-800px);
    opacity: 1;
  }


  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
  }
}

@keyframes offline-dropin {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 0;
  }


  1% {
    transform: translateY(-800px);
    -webkit-transform: translateY(-800px);
    -moz-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    -o-transform: translateY(-800px);
    opacity: 0;
  }


  2% {
    transform: translateY(-800px);
    -webkit-transform: translateY(-800px);
    -moz-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    -o-transform: translateY(-800px);
    opacity: 1;
  }


  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes offline-dropout {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }


  100% {
    transform: translateY(-800px);
    -webkit-transform: translateY(-800px);
    -moz-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    -o-transform: translateY(-800px);
  }
}

@-moz-keyframes offline-dropout {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }


  100% {
    transform: translateY(-800px);
    -webkit-transform: translateY(-800px);
    -moz-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    -o-transform: translateY(-800px);
  }
}

@-ms-keyframes offline-dropout {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }


  100% {
    transform: translateY(-800px);
    -webkit-transform: translateY(-800px);
    -moz-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    -o-transform: translateY(-800px);
  }
}

@-o-keyframes offline-dropout {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }


  100% {
    transform: translateY(-800px);
    -webkit-transform: translateY(-800px);
    -moz-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    -o-transform: translateY(-800px);
  }
}

@keyframes offline-dropout {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }


  100% {
    transform: translateY(-800px);
    -webkit-transform: translateY(-800px);
    -moz-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    -o-transform: translateY(-800px);
  }
}

@-webkit-keyframes offline-rotation {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }


  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg);
  }
}

@-moz-keyframes offline-rotation {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }


  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg);
  }
}

@-ms-keyframes offline-rotation {

  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }


  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg);
  }
}

@-o-keyframes offline-rotation {

  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }


  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg);
  }
}

@keyframes offline-rotation {

  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }


  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg);
  }
}


.offline-ui {
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 0 1em rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 0 1em rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 0 1em rgba(0, 0, 0, 0.3);
  padding-bottom: 0;
  font-weight: 700;
  font-family: source sans pro, sans-serif;
  padding: 1em;
  width: 38em;
  max-width: 100%;
  background-color: #d84558!important;
  color: #fff!important;
  border-radius: 12px;
  overflow: hidden;
}

.offline-ui .offline-ui-content {
  padding-left: 2em;
}

.offline-ui .offline-ui-content:before {
  line-height: 1.25em;
}

.offline-ui .offline-ui-content:after {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1em;
  margin: auto;
  height: 1em;
  width: 1em;
}

.offline-ui .offline-ui-retry {
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(216, 69, 88, 1);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(216, 69, 88, 1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(216, 69, 88, 1);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d84558), color-stop(38%, #d84558), color-stop(100%, #ec9393));
  background-image: -webkit-linear-gradient(#d84558, #d84558 38%, #ec9393);
  background-image: -moz-linear-gradient(#d84558, #d84558 38%, #ec9393);
  background-image: -o-linear-gradient(#d84558, #d84558 38%, #ec9393);
  background-image: linear-gradient(#d84558, #d84558 38%, #ec9393);
  position: absolute;
  right: 4em;
  top: 1em;
  bottom: 1em;
  border: 1px solid rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 0 #f0f0f0;
  padding: 0 1em;
  line-height: 1.6em;
  height: 1.7em;
  margin: auto;
  font-size: 12px;
  text-decoration: none;
  color: inherit;
}

.offline-ui.offline-ui-up {
  -webkit-animation: offline-dropout forwards 0.5s 2s;
  -moz-animation: offline-dropout forwards 0.5s 2s;
  -ms-animation: offline-dropout forwards 0.5s 2s;
  -o-animation: offline-dropout forwards 0.5s 2s;
  animation: offline-dropout forwards 0.5s 2s;
  -webkit-backface-visibility: hidden;

  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 0 1em rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 0 1em rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 0 1em rgba(0, 0, 0, 0.3);
  padding-bottom: 0;
  font-weight: 700;
  font-family: source sans pro, sans-serif;
  padding: 1em;
  width: 38em;
  max-width: 100%;
  background-color: #8cc152!important;
  color: #fff!important;
  border-radius: 12px;
  overflow: hidden;
}

.offline-ui.offline-ui-up .offline-ui-content:after {
  background: #89f611;
}

.offline-ui.offline-ui-down {
  -webkit-animation: offline-dropin 0.5s;
  -moz-animation: offline-dropin 0.5s;
  -ms-animation: offline-dropin 0.5s;
  -o-animation: offline-dropin 0.5s;
  animation: offline-dropin 0.5s;
  -webkit-backface-visibility: hidden;
}
.offline-ui.offline-ui-down .offline-ui-content:after {
  background: #ec8787;
}

.offline-ui.offline-ui-down.offline-ui-connecting, .offline-ui.offline-ui-down.offline-ui-waiting {
  padding-right: 3em;
}

.offline-ui.offline-ui-down.offline-ui-connecting .offline-ui-content:after, .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content:after {
  background: #ec8787;
}

.offline-ui.offline-ui-down.offline-ui-connecting:after, .offline-ui.offline-ui-down.offline-ui-waiting:after {
  -webkit-animation: offline-rotation 0.7s linear infinite;
  -moz-animation: offline-rotation 0.7s linear infinite;
  -ms-animation: offline-rotation 0.7s linear infinite;
  -o-animation: offline-rotation 0.7s linear infinite;
  animation: offline-rotation 0.7s linear infinite;
  -webkit-backface-visibility: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  content: " ";
  display: block;
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1em;
  width: 1em;
  border: 2px solid rgba(0, 0, 0, 0);
  border-top-color: rgba(0, 0, 0, 0.5);
  border-left-color: rgba(0, 0, 0, 0.5);
  opacity: 0.7;
}

.offline-ui.offline-ui-down.offline-ui-waiting {
  padding-right: 11em;
}

.offline-ui.offline-ui-down.offline-ui-waiting.offline-ui-reconnect-failed-2s {
  padding-right: 0;
}

.offline-ui .offline-ui-retry:before {
  content: "Reconnect";
}
.offline-ui.offline-ui-up .offline-ui-content:before {
  content: "Your computer is connected to the internet.";
}
@media (max-width: 1024px) {
  .offline-ui.offline-ui-up .offline-ui-content:before {
    content: "Your device is connected to the internet.";
  }
}
@media (max-width: 568px) {
  .offline-ui.offline-ui-up .offline-ui-content:before {
    content: "Your device is connected.";
  }
}
.offline-ui.offline-ui-down .offline-ui-content:before {
  content: "Your computer lost its internet connection.";
}
@media (max-width: 1024px) {
  .offline-ui.offline-ui-down .offline-ui-content:before {
    content: "Your device lost its internet connection.";
  }
}
@media (max-width: 568px) {
  .offline-ui.offline-ui-down .offline-ui-content:before {
    content: "Your device isn't connected.";
  }
}
.offline-ui.offline-ui-down.offline-ui-connecting .offline-ui-content:before, .offline-ui.offline-ui-down.offline-ui-connecting-2s .offline-ui-content:before {
  content: "Attempting to reconnect...";
}
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="second"]:before {
  content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " seconds...";
}
@media (max-width: 568px) {
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="second"]:before {
    content: "Reconnecting in " attr(data-retry-in-value) "s...";
  }
}
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="second"][data-retry-in-value="1"]:before {
  content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " second...";
}
@media (max-width: 568px) {
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="second"][data-retry-in-value="1"]:before {
    content: "Reconnecting in " attr(data-retry-in-value) "s...";
  }
}
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="minute"]:before {
  content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " minutes...";
}
@media (max-width: 568px) {
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="minute"]:before {
    content: "Reconnecting in " attr(data-retry-in-value) "m...";
  }
}
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="minute"][data-retry-in-value="1"]:before {
  content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " minute...";
}
@media (max-width: 568px) {
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="minute"][data-retry-in-value="1"]:before {
    content: "Reconnecting in " attr(data-retry-in-value) "m...";
  }
}
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="hour"]:before {
  content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " hours...";
}
@media (max-width: 568px) {
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="hour"]:before {
    content: "Reconnecting in " attr(data-retry-in-value) "h...";
  }
}
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="hour"][data-retry-in-value="1"]:before {
  content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " hour...";
}
@media (max-width: 568px) {
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="hour"][data-retry-in-value="1"]:before {
    content: "Reconnecting in " attr(data-retry-in-value) "h...";
  }
}
.offline-ui.offline-ui-down.offline-ui-reconnect-failed-2s.offline-ui-waiting .offline-ui-retry {
  display: none;
}
.offline-ui.offline-ui-down.offline-ui-reconnect-failed-2s .offline-ui-content:before {
  content: "Connection attempt failed.";
}

/*flash sale*/
.flash-sale {
	position: relative;
	padding-top: 2px;
}

.flash-sale::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	/* border-radius: 0% 0% 100% 100% / 0% 57% 90% 90%;*/
	z-index: -1000;
	width: 100%;
	height: 80%;
	background: url(../img/bg-flash-sale.png);
	background-size: cover;
	background-position: center 22%;
}
 
.flash-sale .swiper-slide {
	width: 40%;
}

 
.flash-sale .content img {
	width: 100%;
	border-radius: 0.3rem 0.3rem 0 0;
}
.flash-sale-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    /* border: 1px solid rgba(0,0,0,.125); */
    border-radius: 0.5rem;
}
}
.flash-sale-card .card-thumbnail {
	max-height: 120px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
    transition: 1s;
}
.flash-sale-shadow {
	box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.13) !important;
}
.flash-disc {
    font-weight: 700;
    color: #1948ff;
    text-align: center;
    display: block;
	padding: 6px;
    z-index: 7;
    background: #ffd405;
    border-radius: 0.3rem 12px 0;
    position: absolute;
    top: 0;
}
.flash-harga {
	width: 100%;
    text-align: left;
    padding: 0.5rem 0.5rem;
	float: left;
}
.flash-harga .normal{
	color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
    font-size: 1.1rem;
    font-weight: 700;
}
.flash-harga .discount{
	line-height: normal;
    display: block;
    text-decoration: line-through;
    color: #ccc;
    font-size: 14px;
    font-weight: normal;
    padding-top: 2px;
}
.flash-harga .lokasi{
	line-height: normal;
    display: block;
    color: #6a6969;
    font-size: 14px;
    font-weight: normal;
    padding-top: 7px;
}
.flash-timerTes {
	color: white;
	background: #ea3a3c;
    margin: 0;
    padding: 4px 0 1px;
    border-radius: 30px;
    z-index: 2;
    border: none;
    text-align: center;
    position: relative;
    max-width: 300px;
}
.flash-timerTes::after {
	    content: "";
    position: absolute;
    background: #fff;
    opacity: 0.4;
    height: 15px;
    width: 1px;
    top: 6px;
    left: auto;
    right: 7px;
    bottom: auto;
}
.flash-timerTes-counter {
	display: inline-block;
    background: transparent;
}
.flash-timerTes-counter .timer {
	display: inline-block;
    position: relative;
    float: none;
    background: transparent;
    border: none;
    font-size: 0;
    line-height: 26px;
    width: auto;
}
.timer-aa {
	color: #fff;
    font-size: 12px;
    display: inline-block;
    font-weight: 600;
    margin: 0 3px;
    border: none;
}
.flash-timer-counter .timer .timer-bb {
	color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
}
/* ---- */
.flash-timer {
	float: right;
    position: relative;
    padding: 3px 20px 3px 40px;
	/* padding: 4px 0 1px; */
    border-radius: 3px 3px 0 0;
    background: #ea3a3c;
    margin: 0;
	
    /*
	color: white;
	background: #ea3a3c;
    margin: 0;
    padding: 4px 0 1px;
    border-radius: 30px;
    z-index: 2;
    border: none;
    text-align: center;
    position: relative;
	
	background: #ea3a3c;
    margin: 0 12% !important;
    padding: 4px 0 1px;
    border-radius: 30px;
    font-size: 0;
    z-index: 2;
    text-align: center;
    position: relative; 
	
	max-width: 300px;
	*/
	}
  .flash-timer .jangka_flashsale:before {
    content: "\f017";
    font-family: fontawesome;
    position: absolute;
    font-size: 14px;
    top: 3px;
    bottom: auto;
    color: #fff;
    left: 10px;
    right: auto; }
  .flash-timer .jangka_flashsale:after {
    content: "";
    position: absolute;
    background: #fff;
    opacity: 0.4;
    height: 12px;
    width: 1px;
    top: 10px;
    left: 33px;
    right: auto;
    bottom: auto; }
  .flash-timer .jangka_flashsale .time-item {
    float: left;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-transform: capitalize;
    color: #fff;
    margin-left: 5px; }
  .flash-timer .jangka_flashsale .time-item .num-time {
    float: left;
    margin-right: 2px; }
  .flash-timer .jangka_flashsale .time-item .name-time {
    float: left; }
  .cslider-item-timer .jangka_flashsale {
/*	background: #ea3a3c;
    margin: 0;
   padding: 3px 20px 3px 40px;	padding: 3px 10px 3px 0;
    border-radius: 30px;
    z-index: 2;
    border: none;
    text-align: center;
    position: relative;
*/	
    float: right;
    position: relative;
    padding: 4px 7px 3px 15px;
    border-radius: 15px;
    background: #ea3a3c;
    margin: 0;
	
    /*float: right;*/
    /*position: relative;*/
    /*padding: 3px 5px 3px 15px;*/
    /*border-radius: 3px 3px 0 0;*/
    /*background: #ea3a3c;*/
    /*margin: 0;*/
	
	}
  .cslider-item-timer .jangka_flashsale:before {
    content: "\f017";
    font-family: fontawesome;
    position: absolute;	/* ini */
    font-size: 14px;
    top: 3px;
    bottom: auto;
    color: #fff;
    left: 5px;
    right: auto; }
/*	
  .cslider-item-timer .jangka_flashsale:after {
    content: "";
    position: absolute;
    background: #fff;
    opacity: 0.4;
    height: 12px;
    width: 1px;
    top: 10px;
    left: 33px;
    right: auto;
    bottom: auto; }
*/	
  .cslider-item-timer .jangka_flashsale .time-item {
    float: left;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-transform: capitalize;
    color: #fff;
    margin-left: 5px; }
  .cslider-item-timer .jangka_flashsale .time-item .num-time {
    float: left;
    margin-right: 2px; }
  .cslider-item-timer .jangka_flashsale .time-item .name-time {
    float: left; }
  .item-time .item-timer {
    border: 1px dashed #df0024;
    font-weight: 600;
    height: 100%;
    line-height: 28px;
    display: inline-block;
    width: 100%; }
  .item-time .item-timer .time-item {
    float: left;
    font-size: 92.3%;
    color: #383838;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    width: 25%;
    line-height: 28px;
    border: none; }
  .item-time .item-timer .time-item .num-time {
    display: block; }
  .item-time .item-timer .time-item .name-time {
    display: block; }
	
.navbar {
  background: transparent;
}
.navbar .navbar-inner {
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
}
.navbar .navbar-inner .title {
  font-size: 15px;
}
.navbar .navbar-inner .right a {
  color: #fff;
}
.navbar-home .navbar-inner .title {
  width: 100%;
  text-align: left;
}
.navbar-home .navbar-inner .right a {
  position: relative;
}
.navbar-home .navbar-inner .right a span {
  display: inline-block;
  background: #ff3643;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
}
.searchbar {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.03);
}
.searchbar .searchbar-input-wrap input {
  font-size: 13px !important;
  background: #eee;
  border-radius: 4px !important;
}
.searchbar:before {
  display: none;
}
.searchbar:after {
  display: none;
}
.searchbar .searchbar-disable-button {
  color: #ff3643;
  font-size: 14px;
}

/* end */
/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  body {
    margin: 0;
  }
  .home__container, .home__img {
    height: 640px;
  }
}

.notif .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 13px !important;
  padding: 5px 10px;
  border-radius: 50%;
  background: #fa083c;
  color: white;
}

.notifications {
  
  width: 300px;
  max-height: 400px;
  opacity: 0;
  position: absolute;
  top: 63px;
  right: 15px;
  border-radius: 5px 0px 5px 5px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  overflow-y: scroll;
}

.notifications h2 {
  font-size: 14px;
  padding: 10px;
  border-bottom: 1px solid #eee;
  color: #999;
}

.notifications h2 span {
  color: #f00;
}

.notifications-item {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 6px 9px;
  margin-bottom: 0px;
  cursor: pointer;
}

.notifications-item:hover {
  background-color: #eee;
}

.notifications-item img {
  display: block;
  width: 50px;
  height: 50px;
  margin-right: 9px;
  border-radius: 50%;
  margin-top: 2px;
}

.notifications-item .text h4 {
  color: rgb(68, 68, 68);
  font-size: 16px;
  margin-top: 3px;
}

.notifications-item .text p {
  color: rgb(68, 68, 68);
  font-size: 12px;
}
