/* star rating css */
:root {
  --star-size: 20px;
  --star-color: lightgrey;
  --star-background: #fc0;
}

.Stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: var(--star-size);
  font-family: Times;
  line-height: 1;
}
  .Stars::before {
    content: '★★★★★';
    letter-spacing: 0px;
    background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}
.star-rating{
  display: none;
}

.zoom img{
  transform-origin: 50% 65%;
    transition: transform 5s, filter 3s ease-in-out;
    filter: brightness(150%);
    -ms-transform: scale(1.2); /* IE 9 */
    -webkit-transform: scale(1.2); /* Safari 3-8 */
    transform: scale(1.2);
}

/* --------- SLIDER--------- */
#carousel-slider-section .owl-carousel .owl-item img {
  clip-path: circle(50% at 50% 50%);

  width: 80%;
}

.slide_btn a,.cat_btn a {
    background: #1cc5dc;
    color: #ffffff;
    font-weight: bold;
}
.slide_btn a:hover{
    background: #fff;
    color: #1cc5dc;;
}
#slider .carousel-control i{
    padding: 18px 20px;
    background: #3ec5dc;
    color: #fff;
    border-radius: 50%;
}
#slider .carousel-control .nav1 {
    display: block;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}
#slider .carousel-control .nav2 {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
}
#slider span.carousel-control-prev-icon,#slider span.carousel-control-next-icon{
    background-image: none;
}
#slider span.carousel-control-prev-icon i {
    background-color: rgba(28, 190, 220, 0.5) !important;
}
.inner_carousel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    right: 20%;
}
#slider .col-lg-6.col-md-6.col-6.slide-txt {
    background: #d1e1f1;
}
#slider .slider-box h1{
    font-size: 60px;
    font-weight: 900;
}

#carousel-slider-section {
  background-color: #7DC8DA;
  color: white;
}
.slider-text-position{
  position: absolute;
  top: 30%;
  left: 15%;
}
#carousel-slider-section .rounded-circle{
  position: absolute;
  top:43%;
  right: 6%;
  background-color: #FA3D3D;
  height: 156px;
  width: 156px;
  z-index: 2;
}
#carousel-slider-section .container{
  color: white;
}
#carousel-slider-section span{
  font-size: 1rem;
}
#carousel-slider-section p{
  font-size: 1rem;
}
#carousel-slider-section table{
  border: 0;
}
#carousel-slider-section td{
  width: 70px;
}

.test{
  display: block;
  }
.owl-prev{
  position: absolute;
  top: 50%;
  left: 1%;
  border-radius: 50%;
  background-color: white;
  width: 50px;
  height: 50px;
  text-align: center;
  border: none;
  color: #7DC8DA;
}
.owl-next{
  position: absolute;
  top: 50%;
  right: 1%;
  border-radius: 50%;
  background-color: white;
  width: 50px;
  height: 50px;
  text-align: center;
  border: none;
  color: #7DC8DA;
}
/* slider animation */
.iframely-embed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;

}

/* .app {
  // opacity: 0 !important;
  // visibility: hidden;
  z-index: 10;
}
.app:hover {
  opacity: 1;
}
.app {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
} */
#carousel-slider-section body {
  display: grid;
}
.title {
  grid-column: 1 / -1;
  grid-row: 1;
  width: 100%;
  z-index: 2;
}
.title .title-inner {
  display: inline-block;
}
@keyframes text-clip {
  from {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes outer-left {
  from {
    transform: translateX(50%);
  }
  to {
    transform: none;
  }
}
@keyframes inner-left {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: none;
  }
}
.cafe, .mozart {
  animation: outer-left 1s 1s cubic-bezier(0.5, 0, 0.1, 1) both;
}
.title-inner {
  display: inline-block;
  animation: inner-left 1s 1s ease both;
}
.cafe-inner {
  display: inline-block;
  animation: inner-left 1s 1s ease both,
    text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
}
.mozart-inner {
  animation: inner-left 1s 1s ease both,text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
}
#carousel-slider-section .title {
  animation: outer-left 1s 1s ease both;
}
.cafe .cafe-inner {
  display: inline-block;
}
.mozart {
  display: inline-block;
}
.offer-animation{
  grid-row: 1;
  grid-column: 2;
  animation: inner-left 1s 1s cubic-bezier(0.5, 0, 0.1, 1) both;
}
.image {
  grid-row: 1;
  grid-column: 2;
  animation: image-in 1s cubic-bezier(0.5, 0, 0.1, 1) 2s backwards;
}
@keyframes image-in {
  from {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.image  img{
  display: block;
  width: 100%;
  height: auto;
}
body:active * {
  animation: none !important;
}


/* million of hours */
.tinv-wraper.woocommerce.tinv-wishlist.tinvwl-after-add-to-cart.tinvwl-loop-button-wrapper{
  position: absolute;
  right: 0;
}
.post a{
  color: white;
  display: block;
}
.border-rounded{
  border: 1px solid lightgrey;
  border-radius: 3rem;
}
.wishlist i {
    border-radius: 50%;
    border: 1px solid;
    border-color: lightgrey;
    color: lightgrey;
    padding: 10px 0;
    border: 1px solid;
    width: 35px;
    height: 35px;
    text-align: center;
}
.sale-tag{
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #FF4362;
  color: white;
  border-radius: 5px;
}
.wishlist-button{
  position: absolute;
  top: 10px;
  right: 10px;
  color: grey;
}
.wishlist-button a{
  color: lightgrey;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  text-align: center;
  border: 1px solid lightgrey;
  padding: 7px;
}
.tinvwl_add_to_wishlist_button .tinvwl-icon-heart{
  text-align: center;
}
.tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button{
  margin-top: 0;
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before, .woocommerce ul.products li.product a.tinvwl-button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before, .woocommerce-page ul.products li.product a.tinvwl-button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before, a.wishlist_products_counter.top_wishlist-heart:before, span.wishlist_products_counter.top_wishlist-heart:before, a.sidr-class-wishlist_products_counter.sidr-class-top_wishlist-heart:before{
  font-size: 26px;
}
.wishlist-button a:hover{
  color: white;
  background-color: #3A4343;
}
.tinvwl_add_to_wishlist-text{
  display: none;
}
.price-color{
  color: #FF4362;
}
.price-size{
  font-size: 13px;
}
.quickview_text{
  display: inline-block;
}
.yith-wcqv-button{
  color: white;
}
.add_to_cart_button {
  color: white;
}
/* countdown css */
.countdown{
  position: absolute;
  top: -50px;
  right: 100px;
  z-index: 1;
  width: 100%;
}
.countdown .border-rounded{
  background-color: white;
  min-width: 380px;
  height: 100px;
  padding: 10px;
}
.bg-color-countdown{

}
.countdown-number{
  font-size: 30px;
  color: #AEA679;
  font-weight: 500;
}
.p-10{
  padding: 10px;
}
.position-days{
  position: absolute;
  top: 58px;
  left: 52px;
}
.position-hours{
  position: absolute;
  top: 58px;
  left: 146px;
}
.position-minutes{
  position: absolute;
  top: 58px;
  left: 222px;
}
.position-seconds{
  position: absolute;
  top: 58px;
  left: 302px;
}
/* latest arrival */

.category-tab{
  background-color: transparent;
  font-family: "Roboto";
  font-size: 20px;
  color: black;
  border: none;
  outline: none !important;
}
button:focus{
  border-bottom: 2px solid #AEA679 !important;
  color: #AEA679;
}
.product-img{
  text-align: center;
  border: 1px solid lightgrey;
  position: relative;
}
.product-img:hover{
  border: 1px solid lightgrey;
}

#latest-arrival .tabcontent{
  display: none;
}
/* latest arrival animations */

#latest-arrival .box, #millions-of-hours .box{
   overflow: hidden;
   position: relative;
}
#latest-arrival .box:before, #millions-of-hours .box:before{
   border-radius: 0 50px 50px 0;
   opacity: 0;
   position: absolute;
   bottom: 20px;
   left: 0;
   z-index: 1;
   transition: all 0.5s ease 0s;
}
#latest-arrival .box:hover:before,#millions-of-hours .box:hover:before{
   width: calc(100% - 85px);
   opacity: 0.9;
}
#latest-arrival .box img,#millions-of-hours .box img{
   width: 100%;
   height: auto;
   height: auto;transform-origin: 50% 65%;
   transition: transform 1s, filter 3s ease-in-out;
   padding: 15px 25px;
}
#latest-arrival .box img:hover,#millions-of-hours .box img:hover {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
}
#latest-arrival .box:hover img,#millions-of-hours .box:hover img{ opacity: 1; }
#latest-arrival .box .box-content,#millions-of-hours .box .box-content{
   color: white;
   background-color: #4E5668;
   opacity: 0;
   position: absolute;
   bottom: 0;
   z-index: 1;
   transition: all 0.4s ease 0.2s;
   width: 100%;
}
#latest-arrival .box:hover .box-content,#millions-of-hours .box:hover .box-content{
   opacity: 1;
}
#latest-arrival .box .title,#millions-of-hours .box .title{
   text-shadow: 0 0 3px rgba(0,0,0,0.9);
}
#latest-arrival .box .post,#millions-of-hours .box .post{
   display: block;
   text-shadow: 0 0 3px rgba(0,0,0,0.9);
}

/* best-deal */
#best-deal .best-deal-height{
  height: 220px;

}
.color-1{
  color: #F5806A;
}
.color-2{
  color: #88A4FB;
}
.color-3{
  color: #74CAC7;
}
.bg-1{
  background-color: #F5806A;
}
.side-bg-1{
  background-color: #FDE6E1;
}
.bg-2{
  background-color: #88A4FB;
}
.side-bg-2{
  background-color: #CAD7FF;
}
.bg-3{
  background-color: #74CAC7;
}
.side-bg-3{
  background-color: #D8F2F6;
}
.position-right{
  position: absolute;
  top: 0;
  right: 0.5rem;
  padding: auto;
  border-radius: 50% 0 0 50%;
  height: 220px;
  width: 160px;
  background: rgba(0, 0, 0, 0) radial-gradient(120deg, #4f4f4f 68%, #ed0009 32%) repeat scroll 0 0;
}
.position-right img{
  align-items: right;
}
.position-left{
  position: absolute;
  top: 0;
  border-radius: 0 0 25px 0;
}
.best-deal-position{
  position: absolute;
  top: 30%;
  color: white!important;
}
.best-deal-position a{
  color: white;
}
.font-small-size{
  font-size: 14px;
}
#best-deal h5{
  color: white;
}
/* best deal animations */
.container {
  max-width: 1320px;
}
section {
  overflow: hidden;
}
.section-bg {
  background: #f5f8fd;
}
.section-header h3 {
  font-size: 36px;
  color: #413e66;
  text-align: center;
  font-weight: 700;
  position: relative;
  font-family: "Montserrat", sans-serif;
}
.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #535074;
  width: 50%;
}
@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}
/* best-deal animation */
#best-deal .col-xl-4 {
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}
#best-deal .col-xl-4:hover {
  transform: scale(1.05);
}
/* find with category */
#find-with-category .box{
   overflow: hidden;
   position: relative;
}
#find-with-category .box img{
   width: 100%;
   height: auto;transform-origin: 50% 65%;
   transition: transform 1s, filter 3s ease-in-out;

}
#find-with-category .box img:hover{
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#find-with-category .box .box-content{
   color: white;
   background: #4E5668;
   text-align: center;
   padding: 5px 0 0 0;
   opacity: 0;
   transform: translateY(-50%) translateX(-50%) scale(2);
   position: absolute;
   top: 80%;
   left: 50%;
   z-index: 2;
   transition: all 0.3s ease-out 0s;
   height: 60px;
}
#find-with-category .box:hover .box-content{
   opacity: 1;
   transform: translateY(-50%) translateX(-50%) scale(1);
}
#find-with-category .box .title{
   font-weight: 400;
   margin: 0 0 3px;
}

@keyframes flash{
   0%{ opacity: 0.1; }
   100%{ opacity: 1; }
}


/* our speciality */
#our-speciality{
  background-color: #F2F2F2;
}
#our-speciality .service-css{
  background-color: white;
  box-shadow: 5px  5px 2rem 0rem lightgrey;
}
/* service animations */

#our-speciality body {
  background: #007bff !important;
}
#our-speciality .main {
  position: relative;
  cursor: pointer;
}
.service {
  z-index: 1;
  transition: transform .8s;
}
/* Mengatur posisi logo service */
.service-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Membuat border title */
.service h4 {
  position: relative;
}

.service h4::after,
.service h4::before {
  content: '';
 position: absolute;
 z-index: -1;
}

.service h4::after {
  background: linear-gradient(to right, #fff, #007bff);
  right: -2px;
  top: -2px;
}

.service h4::before {
  background: linear-gradient(to right, #007bff, #fff);
  left: -2px;
  bottom: -2px;
}


/* membuat shadow untuk service */
.main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  z-index: -1;
  box-shadow: 0 0 20px -15px #030380;
  transition: transform .8s;
}
.main::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18%;
  z-index: -2;
}

.main:hover .service {
  transform: translateY(-10px);
}

.main:hover::after {
  transform: translateY(-10px);
}

.service-logo img {
  transition: transform 1s;
}

.main:hover .service-logo img {
  transform: rotate(360deg);
}

/* Our popular platform */
#our-popular-platform{
  background-color: #F2F2F2;
}
.partner-bg-color{
  background-color: white;
  box-shadow: 5px  5px 2rem 0rem lightgrey;
}
.partner-bg-color img{
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.partner-bg-color:hover{

-ms-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.partner-bg-color img:hover{
  -webkit-filter: inherit;
filter: inherit;
}
/* Instagram */
#sb_instagram.sbi_col_4 #sbi_images .sbi_item{
  width: 14%;
}
#sb_instagram .sbi_photo_wrap {
    position: relative;
    width: 200px;
    height: 200px;
}
#sbi_load,.sb_instagram_header.sbi_no_avatar{
  display: none;
}
/* support */
#support{
  background-color: #F9FAFB;
}
.support-button-color{
  background-color: #AEA679 !important;
}
.support-button-color:hover{
  background-color: #4E5668 !important;
}
