/*=========================================================
	01 -> GENERAL
===========================================================*/

/*----------------------------*\
	Typography
\*----------------------------*/

@font-face {
  font-family: 'TTNormsProMedium';
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: TTNormsProMedium, Roboto, sans-serif;
  font-weight: 400;
  color: #4d4d4d;
}

.box-shadow {
  box-shadow: rgba(0, 0, 0, 0.12) 0px 3px 3px 0px;
}
.notification {
  padding: 10px;
  text-align: center;
  background: #efefef;
}

.text-notif {
  font-size: 14px;
  font-weight: 500;
}

.text-notif a {
  color: #006ce1;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1030;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

/* Tampilkan overlay */
.overlay.active {
  opacity: 1;
  visibility: visible;
}

h1, h2, h3, h4, h5, h6 {
  color: #2B2D42;
  margin: 0 0 10px;
}

hr {
  margin: 0;
  border: 1px solid #e3e3e3;
}

a {
  color: #4d4d4d;
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover, a:focus {
  color: #000;
  text-decoration: none;
  outline: none;
}

ul, ol {
  margin: 0;
  padding: 0px;
  list-style: none;
}

.text-light {
  color: #fff;
}

.text-white {
  color: #fff;
}

.text-dark {
  color: #000;
}

.text-black {
  color: #000;
}

.text-oled {
  background: linear-gradient(to right, #f29759, #ffeb7c, #80c47d, #56beb8, #319fc5, #668cc8, #8e66a9, #b971ac, #d96b9a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  -webkit-animation-duration: 7s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: oledAnimation;
  -webkit-animation-timing-function: linear;
}

@-webkit-keyframes oledAnimation {
  0% {
    background-position: -268px 0;
  }
  
  100% {
    background-position: 268px 0; 
  }
}

.bg-liner-gradient {
  background: linear-gradient(to bottom, #f6f6f6, transparent);
}

/*----------------------------*\
	PreLoader
\*----------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader img {
  width: 100px;
  height: 100px;
}

/*----------------------------*\
	Loading Image
\*----------------------------*/
.loading {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 20px;
  border-radius: 8px;
  background: #f6f7f8;
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 400px 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: placeholderShimmer;
  -webkit-animation-timing-function: linear;
}

@-webkit-keyframes placeholderShimmer {
  0% {
    background-position: -468px 0;
  }
  
  100% {
    background-position: 468px 0; 
  }
}

/*----------------------------*\
	ScrollTOP
\*----------------------------*/
.scrollTop {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 35px;
  height: 35px;
  background-color: #000;
  color: #bfbfbf;
  border-radius: 50%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0.25;
  transition: opacity 0.3s;
}

.scrollTop:hover {
  opacity: 1;
}

/*----------------------------*\
	Margin
\*----------------------------*/

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  /* margin-top: 30px; */
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mx-1 {
  margin-right: 10px;
  margin-left: 10px;
}

.mx-2 {
  margin-right: 20px;
  margin-left: 10px;
}

.mx-3 {
  margin-right: 30px;
  margin-left: 10px;
}

.pt-1 {
  padding-top: 10px;
}

.pt-2 {
  padding-top: 20px;
}

.pt-3 {
  padding-top: 30px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.px-1 {
  padding-right: 10px;
  padding-left: 10px;
}

.px-2 {
  padding-right: 20px;
  padding-left: 10px;
}

.px-3 {
  padding-right: 30px;
  padding-left: 10px;
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #0051A8;
  border: none;
  border-radius: 40px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-btn:hover, .primary-btn:focus {
  opacity: 0.9;
  color: #FFF;
}

.btn-footer {
  display: inline-block;
  padding: 8px 20px;
  background-color: #006ce1;
  border-radius: 4px;
  color: #FFF;
  /*text-transform: uppercase;*/
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.btn-footer:hover {
  color: #fff;
  background: #000;
}

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  width: 100%;
}

textarea.input {
  padding: 15px;
  min-height: 90px;
}

/*-- Number input --*/

.input-number {
  position: relative;
}

.input-number input[type="number"]::-webkit-inner-spin-button, .input-number input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-number input[type="number"] {
  /* -moz-appearance: textfield; */
  height: 40px;
  width: 100%;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  padding: 0px 35px 0px 15px;
}

.input-number .qty-up, .input-number .qty-down {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-number .qty-up {
  right: 0;
  top: 0;
  border-bottom: 0px;
}

.input-number .qty-down {
  right: 0;
  bottom: 0;
}

.input-number .qty-up:hover, .input-number .qty-down:hover {
  background-color: #E4E7ED;
  color: #0051A8;
}

/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: #FFF;
  border: 1px solid #E4E7ED;
  height: 40px;
}

/*-- checkbox & radio input --*/

.input-radio, .input-checkbox {
  position: relative;
  display: block;
}

.input-radio input[type="radio"]:not(:checked), .input-radio input[type="radio"]:checked, .input-checkbox input[type="checkbox"]:not(:checked), .input-checkbox input[type="checkbox"]:checked {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.input-radio label, .input-checkbox label {
  font-weight: 500;
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}

.input-radio input[type="radio"]+label span, .input-checkbox input[type="checkbox"]+label span {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid #E4E7ED;
  background: #FFF;
}

.input-radio input[type="radio"]+label span {
  border-radius: 50%;
}

.input-radio input[type="radio"]+label span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-color: #FFF;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-checkbox input[type="checkbox"]+label span:after {
  content: 'ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â';
  position: absolute;
  top: -2px;
  left: 1px;
  font-size: 10px;
  color: #FFF;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span, .input-checkbox input[type="checkbox"]:checked+label span {
  background-color: #0051A8;
  border-color: #0051A8;
}

.input-radio input[type="radio"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.input-radio .caption, .input-checkbox .caption {
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height;
  transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked~.caption, .input-checkbox input[type="checkbox"]:checked~.caption {
  max-height: 800px;
}

/*----------------------------*\
	Section
\*----------------------------*/

.section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-title {
  display: flex;
  position: relative;
  margin-bottom: 15px;
  margin-top: 15px;
  justify-content: space-between;
}

.section-title .title {
  display: inline-block;
  margin: 0px;
}

.section-title .section-nav {
  float: right;
}

.section-title .section-nav .section-tab-nav {
  display: inline-block;
}

.section-tab-nav li {
  display: inline-block;
  margin-right: 15px;
}

.section-tab-nav li:last-child {
  margin-right: 0px;
}

.section-tab-nav li a {
  font-weight: 700;
  color: #8D99AE;
}

.section-tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #0051A8;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-tab-nav li.active a {
  color: #0051A8;
}

.section-tab-nav li a:hover:after, .section-tab-nav li a:focus:after, .section-tab-nav li.active a:after {
  width: 100%;
}

.section-title .section-nav .products-slick-nav {
  top: 0px;
  right: 0px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
  padding: 30px 0px;
  background: #FBFBFC;
  border-bottom: 1px solid #E4E7ED;
  margin-bottom: 30px;
}

#breadcrumb .breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
  display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li+li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
  content: '/';
  display: inline-block;
  color: #8D99AE;
  margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: #8D99AE;
}

#breadcrumb .breadcrumb-tree li a:hover {
  color: #0051A8;
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
  color: #333;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fff;
  transition: opacity 0.5s, visibility 0.5s;
}

#top-header.visible {
  opacity: 1;
  visibility: visible;
}

#top-header.hidden {
  opacity: 0;
  visibility: hidden;
}

.header-links {
  display: flex;
  justify-content: center;
}

.header-links li {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
}

.header-links li:last-child {
  margin-right: 0px;
}

.header-links li a {
  color: #333;
}

.header-links li a:hover {
  color: #0051A8;
}

.header-links li i {
  color: #0051A8;
  margin-right: 5px;
}

.menu-nav {
  float: right;
}

/*----------------------------*\
	Header Small
\*----------------------------*/
.header-small {
  display: none;
  align-items: center;
  justify-content: space-between;
}

/*----------------------------*\
	Search Global
\*----------------------------*/
.search-container-global {
  display: flex;
  align-items: center;
  position: relative;
}

.search-icon-global,
.clear-icon-global {
  position: absolute;
  cursor: pointer;
  font-size: 18px;
  right: 10px;
}

.clear-icon-global {
  display: none;
}

.search-input-global {
  width: 280px;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.search-display {
  height: 100%;
  width: 0;
  position: fixed;
  bottom: -100%;
  right: 0;
  background: #fff;
  overflow-x: hidden;
  transition: bottom 0.3s ease-in-out;
  z-index: 1040;
}

.search-popup {
  position: fixed;
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #efefef;
  background: #fff;
}

.search-results {
  margin-top: 45px;
}

#search-popup-close {
  cursor: pointer;
  padding: 15px;
}

.search-display.active {
  bottom: 0;
  width: 100%;
  height: 100%;
}

.search-display a {
  padding: 10px 15px;
  font-size: 14px;
  display: block;
  transition: 0.3s;
}

.search-display a:hover {
  color: #006ce1;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100%;
    max-height: 300px; /* Batas maksimum tinggi dropdown */
    overflow-y: auto; /* Tambahkan scrollbar jika konten lebih dari max-height */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/*----------------------------*\
	Menu Small
\*----------------------------*/

.menu {
  padding: 5px;
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #f6f6f6;
}
.menu-item {
  text-align: center;
}
.menu-item img {
  width: 54px;
  background-color: #fff;
  border-radius: 50%;
  padding: 4px;
  margin-top: 5px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
}
.menu-item p {
  margin: 5px 0px;
  font-size: 10px;
}

/*----------------------------*\
	Nav Tab Small
\*----------------------------*/
.new-produk {
  display: inline-block;
  color: #c74200;
  font-family: 'Righteous', serif;
  font-size: 14px;
  animation: jump-shaking 1.83s infinite;
  /*transform: translate(0px, 0px) rotateX(1deg) rotateZ(356deg);*/
}
@keyframes jump-shaking {
  0% { transform: translateX(0) rotate(0)}
  35% { transform: translateY(0) rotate(0)}
  85% { transform: translateY(0) rotate(0) }
  89% { transform: translateY(-2px) rotate(-17deg) }
  93% { transform: translateY(-3px) rotate(17deg) }
  98% { transform: translateY(-4px) rotate(-17deg) }
  100% { transform: translateY(0) rotate(0) }
}
.nav-tabs {
  border-bottom: 0px;
  display: flex;
  justify-content: center;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
  color: #000;
  font-weight: 700;
  border-top: none;
  border-left: none;
  border-right: none;
}
.nav-tabs>li.active>a:after {
  content: "";
  display: block;
  width: 100%;
  height: 2.2px;
  margin-top: 10px;
  margin-bottom: -10px;
  background-color: #000;
}
.nav-tabs li.active .new-produk-line:after {
  content: "";
  display: block;
  width: 100%;
  height: 2.2px;
  margin-top: 10px;
  background-color: #c74200;
}
.nav-tabs li.active .oled-produk-line:after {
  content: "";
  display: block;
  width: 100%;
  height: 2.2px;
  margin-top: 10px;
  background: linear-gradient(to right, #f29759, #ffeb7c, #80c47d, #56beb8, #319fc5, #668cc8, #8e66a9, #b971ac, #d96b9a);
    -webkit-animation-duration: 30s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: oledAnimation;
    -webkit-animation-timing-function: linear;
}
.nav-tabs li.active .best-deal-line:after {
  content: "";
  display: block;
  width: 100%;
  height: 2.2px;
  margin-top: 10px;
  background-color: #006ce1;
}
.nav-tabs>li>a:hover {
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 0px;
  background-color: #f6f6f6;
}

/*----------------------------*\
	Logo
\*----------------------------*/

#header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fff;
  border-top: 2px solid #f6f6f6;
  border-bottom: 2px solid #f6f6f6;
}

#header.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

#productTabs {
  position: absolute;
  right: 0;
  left: 0;
  background-color: #fff;
  border-bottom: 2px solid #f6f6f6;
  z-index: 1029;
}

#productTabs.fixed-top {
  position: fixed;
  top: 50px;
  right: 0;
  left: 0;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 3px 3px 0px;
}

#titlePage {
  position: absolute;
  right: 0;
  left: 0;
  background-color: #fff;
  border-bottom: 2px solid #f6f6f6;
  z-index: 1029;
}

#titlePage.fixed-top {
  position: fixed;
  top: 50px;
  right: 0;
  left: 0;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 3px 3px 0px;
}

#productTabsContent {
  margin-top: 50px;
  padding-bottom: 50px;
}

.logo {
  display: flex;
}

.header-logo {
  float: left;
}

.header-logo a {
  padding: 5px 0px;
}

.header-logo .logo:hover svg g,
.header-logo .logo:hover svg text {
  fill: #0051A8;
}

.header-logo label {
  margin: 0px;
  padding-left: 5px;
  font-weight: 500;
}

.header-logo label:hover {
  cursor: pointer;
  color: #0051A8;
}

.header-logo .logo img {
  display: block;
}
.header-text {
  align-content: center;
}
.header-text h1, h2 {
  color: #333;
  margin: 0px;
}

@media (min-width: 992px) {
    .header-body {
        width:970px
    }
}

@media (min-width: 1200px) {
    .header-body {
        width:1170px
    }
}

/*----------------------------*\
    Sidebar
\*----------------------------*/
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1040;
  top: 0;
  right: 0;
  background: #fff;
  overflow-x: hidden;
  transition: 0.3s;
  /* padding-top: 60px; */
}

.sidebar a {
  padding: 10px 15px;
  font-size: 14px;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #006ce1;
}

.sidebar .dropdown {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.sidebar .dropdown.active {
  display: block;
  max-height: 500px;
  padding: 10px 0;
}

.sidebar .dropdown a {
  font-size: 14px;
  padding-left: 30px;
}

.sidebar-nav .dropdown i {
  font-size: 10px;
}

.sidebar-toggle {
  display: block;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  max-width: 60px;
  float: right;
}

.row .col-md-0 {
  display: none;
}

.sidebar .dropdown-toggle {
  display: flex; 
  justify-content: space-between;
  align-items: center;
}

/* Ikon + */
.sidebar .dropdown-toggle i {
  margin-left: 10px;
  font-size: 14px;
  transition: transform 0.3s;
}

/* Rotasi ikon saat dropdown aktif */
.sidebar .dropdown-toggle.active i {
  transform: rotate(45deg);
}

/* Tambahkan CSS untuk menampilkan sidebar */
.sidebar.active {
  width: 250px;
}

/* Animasi Dropdown */
.sidebar .dropdown li {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.sidebar .dropdown.active li {
  opacity: 1;
  transform: translateY(0);
}

.sidebar .dropdown.active li:nth-child(1) {
  transition-delay: 0.1s;
}

.sidebar .dropdown.active li:nth-child(2) {
  transition-delay: 0.2s;
}

.sidebar .dropdown.active li:nth-child(3) {
  transition-delay: 0.3s;
}

.sidebar .sidebar-close {
  font-size: 16px;
  border-bottom: 1px solid #e3e3e3;
}

.sidebar .sidebar-close .btn-close {
  max-width: 60px;
  padding: 15px 25px;
  cursor: pointer;
}

/*----------------------------*\
	Search
\*----------------------------*/
.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  font-size: 14px;
  border: 1px solid #818181;
  border-radius: 8px;
  padding: 5px 30px 5px 12px;
}

.search-icon, .clear-icon {
  position: relative;
  transform: translateY(-50%);
  cursor: pointer;
}

.search-icon {
  right: 30px;
  top: 10px;
}

.clear-icon {
  right: 30px;
  top: 10px;
  display: none;
}

.search-icon i:hover {
    color: #000;
}

.clear-icon i:hover {
    color: #000;
}

/*----------------------------*\
	Filter Produk
\*----------------------------*/
.filter-select select {
	font-size: 14px;
    border: 1px solid #818181;
    border-radius: 8px;
    padding: 5px 12px;
    color: #006ce1;
    font-weight: 600;
}

.filter-select span {
	font-weight: 600;
}

.garis-pembatas {
	height: 10px;
	border-bottom: 1px solid #ddd;
}
/*----------------------------*\
	Menu Small
\*----------------------------*/
.menu-small {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.search-menu,
.whatsapp-menu,
.location-menu {
  display: none;
  font-size: 16px;
  text-align: center;
  color: #333;
  cursor: pointer;
  max-width: 60px;
}

/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
  background: #FFF;
}

/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav>li+li {
  margin-left: 30px;
}

.main-nav>li>a {
  color: #4d4d4d;
  padding: 5px 0px;
}

.main-nav>li>a:hover, .main-nav>li>a:focus, .main-nav>li.active>a {
  color: #000;
  background-color: transparent;
}

.main-nav>li>a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #000;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-nav>li>a:hover:after, .main-nav>li>a:focus:after, .main-nav>li.active>a:after {
  width: 100%;
}

.header-ctn li.nav-toggle {
  display: none;
}

/*----------------------------*\
  dropdown nav
\*----------------------------*/

.main-nav .dropdown {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  min-width: 160px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
}

.main-nav li:hover > .dropdown {
  display: block;
}

.main-nav .dropdown li {
  position: relative;
}

.main-nav .dropdown li a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #4d4d4d;
  white-space: nowrap;
}

.main-nav .dropdown li a:hover {
  background-color: #ddd;
}

.main-nav .dropdown li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #000;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-nav .dropdown li a:hover:after, .main-nav .dropdown li a:focus:after, .main-nav .dropdown li a:active:after {
  width: 100%;
}

.main-nav>li:hover > a,
.main-nav>li:focus > a,
.main-nav>li.active > a,
.main-nav>li:hover > .dropdown li:hover > a,
.main-nav li:hover > a { 
  color: #000;
  background-color: transparent;
}

.main-nav>li>a:hover:after,
.main-nav>li:hover>a:after,
.main-nav>li:hover>.dropdown:hover>a:after { 
  width: 100%; 
}

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
  }
  .header-text h1, h2 {
    text-align: center;
  }
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: #15161D;
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  .main-nav {
    margin: 0px;
    float: none;
  }
  .main-nav>li {
    display: block;
    float: none;
  }
  .main-nav>li+li {
    margin-left: 0px;
  }
  .main-nav>li>a {
    padding: 15px;
    color: #FFF;
  }
}

/*=========================================================
	04 -> CATEGORY GROUP
===========================================================*/
.gambar-promo {
  display: none !important;
}

.group {
  position: relative;
  overflow: hidden;
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
}

.group .group-img-big {
  position: relative;
  background: #f6f6f6;
}

.group .group-img-big img {
  width: 100%;
  display: block;
}

.group .group-img {
  position: relative;
  background: #f6f6f6;
}

.group .group-img>img {
  width: 100%;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.group:hover .group-img>img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.group .group-body {
  position: absolute;
  bottom: 0;
  padding: 30px;
  z-index: 10;
}

.group .group-body h3 {
  color: #000;
}

.tombol-big {
  position: relative;
  display: inline-block;
  padding: 10px 15px;
  color: #000;
  border: none;
  cursor: pointer;
  overflow: hidden;
  font-size: 16px;
  transition: all 0.3s ease;
}

.tombol-big::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: height 0.5s ease, background-color 0.3s ease;
  z-index: -1;
}

.tombol-big:hover::before {
  height: 100%;
}

.tombol-big::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -1;
  transition: all 0.3s ease;
  transform: translateY(100%);
}

.tombol-big:hover::after {
  transform: translateY(0);
}

.tombol-big:hover {
  color: #fff;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.tombol {
  position: relative;
  display: inline-block;
  padding: 10px 15px;
  margin-bottom: 10px;
  color: #fff;
  border: none;
  cursor: pointer;
  overflow: hidden;
  font-size: 16px;
  transition: all 0.3s ease;
}

.tombol::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: height 0.5s ease, background-color 0.3s ease;
  z-index: -1;
}

.tombol:hover::before {
  height: 100%;
}

.tombol::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: all 0.3s ease;
  transform: translateY(100%);
}

.tombol:hover::after {
  transform: translateY(0);
}

.tombol:hover {
  color: #000;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
  padding: 60px 0px;
  margin: 30px 0px;
  background-color: #E4E7ED;
  background-image: url('../img/aes_lippomallpuri.png');
  background-position: center;
  background-repeat: no-repeat;
}

.hot-deal {
  text-align: center;
}

.hot-deal .hot-deal-countdown {
  margin-bottom: 30px;
}

.hot-deal .hot-deal-countdown>li {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #0051A8e6;
  text-align: center;
  border-radius: 50%;
  margin: 0px 5px;
}

.hot-deal .hot-deal-countdown>li>div {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown>li>div h3 {
  color: #FFF;
  margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown>li>div span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #FFF;
}

.hot-deal p {
  text-transform: uppercase;
  font-size: 24px;
}

.hot-deal .cta-btn {
  margin-top: 15px;
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/
.product {
  position: relative;
  margin: 15px 0px;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 1px 4px 8px rgba(0,0,0,.1);
  box-shadow: 1px 4px 8px rgba(0,0,0,.1);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  min-height: 343px;
}

.product:hover {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-box-shadow: 1px 4px 8px rgba(0,0,0,.2);
  box-shadow: 1px 4px 8px rgba(0,0,0,.2);
  cursor: pointer;
}

.product .product-img {
  position: relative;
  text-align: center;
}

.product .product-img>img {
  width: 60%;
  transition: 0.2s all;
}

.product .product-img .product-label {
  position: absolute;
  top: 15px;
  right: 15px;
}

.product .product-img .product-label>span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}

.product .product-img .product-label>span.sale {
  border-color: #006ce1;
  color: #006ce1;
  border-radius: 5px;
  background-color: #FFF;
}

.product .product-img .product-label>span.new {
  border-color: #c74200;
  color: #c74200;
  border-radius: 5px;
  background-color: #FFF;
}

.product .product-body {
  position: relative;
  padding: 10px 30px 0px;
  margin-top: -10%;
  /*text-align: center;*/
  z-index: 20;
  border-radius: 10px;
  height: 380px;
}

.product .product-body .product-description {
  -ms-overflow-style: none;  /* IE dan Edge */
  scrollbar-width: none;  /* Firefox */
  padding: 10px 0px;
  overflow-y: scroll;
  max-height: 270px;
}

.product-description ul {
  list-style-type: none;
}

.product-description ul li {
  display: flex;
  align-items: flex-start;
}

.product-description ul li::before {
  content: "•";
  margin-right: 5px;
  font-size: 16px;
}

.product .product-body .product-description::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.product .product-body .product-category, .product-inch {
  /*text-transform: uppercase;*/
  font-size: 12px;
  color: #8D99AE;
}

.product .product-body .product-name {
  /*text-transform: uppercase;*/
  font-size: 14px;
}

.product .product-body .product-name>a {
  font-weight: 700;
}

.product .product-body .product-name>a:hover, .product .product-body .product-name>a:focus {
  color: #c74200;
}

.product .product-body .product-price {
  color: #c74200;
  font-size: 18px;
}

.product .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product .product-body .product-rating {
  position: relative;
  margin: 15px 0px 10px;
  height: 20px;
}

.product .product-body .product-rating>i {
  position: relative;
  width: 14px;
  margin-right: -4px;
  background: #FFF;
  color: #E4E7ED;
  z-index: 10;
}

.product .product-body .product-rating>i.fa-star {
  color: #f3960a;
}

.product .product-body .product-rating:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #E4E7ED;
}

.product .product-body .product-btns>button {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover {
  background-color: #E4E7ED;
  color: #c74200;
  border-radius: 50%;
}

.product .product-body .product-btns>button .tooltipp {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  width: 150px;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
  background: #1e1f29;
  color: #FFF;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
}

.product .product-footer {
  display: flex;
  position: relative;
  text-align: center;
  z-index: 99;
  height: 70px;
  align-items: center;
  justify-content: center;
}

/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
  position: relative;
}

.product-widget+.product-widget {
  margin: 30px 0px;
}

.product-widget .product-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
}

.product-widget .product-img>img {
  width: 100%;
}

.product-widget .product-body {
  padding-left: 75px;
  min-height: 60px;
}

.product-widget .product-body .product-category {
  text-transform: uppercase;
  font-size: 10px;
  color: #8D99AE;
}

.product-widget .product-body .product-name {
  text-transform: uppercase;
  font-size: 12px;
}

.product-widget .product-body .product-name>a {
  font-weight: 700;
}

.product-widget .product-body .product-name>a:hover, .product-widget .product-body .product-name>a:focus {
  color: #0051A8;
}

.product-widget .product-body .product-price {
  font-size: 14px;
  color: #0051A8;
}

.product-widget .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-widget .product-body .product-price .qty {
  font-weight: 400;
  margin-right: 10px;
}

.product-widget .delete {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  text-align: center;
  font-size: 10px;
  padding: 0;
  background: #1e1f29;
  border: none;
  color: #FFF;
}

/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
  padding-bottom: 60px;
  margin-bottom: -60px;
  z-index: 2;
}

.products-slick .product.slick-slide {
  margin: 15px;
}

.products-tabs>.tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  padding-bottom: 60px;
  margin-bottom: -60px;
}

.products-tabs>.tab-pane.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.products-slick-nav {
  position: absolute;
  right: 15px;
  z-index: 10;
}

.products-slick-nav .slick-prev, .products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 20px;
  height: 20px;
  display: inline-block !important;
  margin: 0px 2px;
}

.products-slick-nav .slick-prev:before, .products-slick-nav .slick-next:before {
  font-size: 14px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside+.aside {
  margin-top: 30px;
}

.aside>.aside-title {
  text-transform: uppercase;
  font-size: 18px;
  margin: 15px 0px 30px;
}

/*-- checkbox Filter --*/

.checkbox-filter>div+div {
  margin-top: 10px;
}

.checkbox-filter .input-radio label, .checkbox-filter .input-checkbox label {
  font-size: 12px;
}

.checkbox-filter .input-radio label small, .checkbox-filter .input-checkbox label small {
  color: #8D99AE;
}

/*-- Price Filter --*/

#price-slider {
  margin-bottom: 15px;
}

.noUi-target {
  background-color: #FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
}

.noUi-connect {
  background-color: #0051A8;
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: #0051A8;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 50%;
}

.noUi-handle:before, .noUi-handle:after {
  display: none;
}

.price-filter .input-number {
  display: inline-block;
  width: calc(50% - 7px);
}

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
  margin-bottom: 15px;
  margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
  display: inline-block;
}

.store-sort label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
  float: right;
}

.store-grid li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-grid li+li {
  margin-left: 5px;
}

.store-grid li:hover {
  background-color: #E4E7ED;
  color: #0051A8;
}

.store-grid li.active {
  background-color: #0051A8;
  border-color: #0051A8;
  color: #FFF;
  cursor: default;
}

.store-grid li a {
  display: block;
}

/*-- Store Pagination --*/

.store-pagination {
  float: right;
}

.store-pagination li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-pagination li+li {
  margin-left: 5px;
}

.store-pagination li:hover {
  background-color: #E4E7ED;
  color: #0051A8;
}

.store-pagination li.active {
  background-color: #0051A8;
  border-color: #0051A8;
  color: #FFF;
  font-weight: 500;
  cursor: default;
}

.store-pagination li a {
  display: block;
}

.store-qty {
  margin-right: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  left: 15px;
}

#product-main-img .slick-next {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  right: 15px;
}

#product-main-img .slick-prev, #product-main-img .slick-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-main-img:hover .slick-prev, #product-main-img:hover .slick-next {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

#product-main-img .zoomImg {
  background-color: #FFF;
}

#product-imgs .product-preview {
  margin: 0px 5px;
  border: 1px solid #E4E7ED;
}

#product-imgs .product-preview.slick-current {
  border-color: #0051A8;
}

#product-imgs .slick-prev {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-next {
  top: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
  content: "\f106";
}

#product-imgs .slick-next:before {
  content: "\f107";
}

.product-preview img {
  width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
  text-transform: uppercase;
  font-size: 18px;
}

.product-details .product-rating {
  display: inline-block;
  margin-right: 15px;
}

.product-details .product-rating>i {
  color: #E4E7ED;
}

.product-details .product-rating>i.fa-star {
  color: #0051A8;
}

.product-details .review-link {
  font-size: 12px;
}

.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #0051A8;
}

.product-details .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-details .product-available {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 30px;
  color: #0051A8;
}

.product-details .product-options {
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-details .product-options label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .product-options .input-select {
  width: 90px;
}

.product-details .add-to-cart {
  margin-bottom: 30px;
}

.product-details .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #0051A8;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #0051A8;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #0051A8;
  border-color: #0051A8;
  padding: 0px 30px 0px 50px;
}

.product-details .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

.product-details .add-to-cart .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number {
  width: 90px;
  display: inline-block;
}

.product-details .product-btns li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-btns li+li {
  margin-left: 15px;
}

.product-details .product-links {
  margin-top: 15px;
}

.product-details .product-links li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-links li+li {
  margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
  margin-top: 60px;
}

#product-tab .tab-nav {
  position: relative;
  text-align: center;
  padding: 15px 0px;
  margin-bottom: 30px;
}

#product-tab .tab-nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #E4E7ED;
  z-index: -1;
}

#product-tab .tab-nav li {
  display: inline-block;
  background: #FFF;
  padding: 0px 15px;
}

#product-tab .tab-nav li+li {
  margin-left: 15px;
}

#product-tab .tab-nav li a {
  display: block;
  font-weight: 700;
  color: #8D99AE;
}

#product-tab .tab-nav li.active a {
  color: #0051A8;
}

#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #0051A8;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after, #product-tab .tab-nav li a:focus:after, #product-tab .tab-nav li.active a:after {
  width: 100%;
}

/* Gaya untuk popup Card */
.popup-card {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 8%;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.popup-content {
  margin: auto;
  padding: 20px;
  width: 100%;
  max-width: 60%;
  max-height: 100%;
  background: rgb(255, 255, 255,  0.2);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 10px;
}

.close {
  color: #888;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.popup-content img {
  max-width: 50%;
  height: auto;
  margin-top: -8%;
  transition: 0.25s;
}

.popup-content img:hover {
  transform: scale(1.2);
}

.popup-description {
  margin-top: -8%;
  padding: 20px;
  background-color: rgb(228 228 228);
  border-radius: 6px;
  border: 1px #b4b2b2 solid;
}

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

/*-- Rating --*/

.rating-avg {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.rating-avg .rating-stars {
  margin-left: 10px;
}

.rating-avg .rating-stars, .rating .rating-stars {
  display: inline-block;
}

.rating-avg .rating-stars>i, .rating .rating-stars>i {
  color: #E4E7ED;
}

.rating-avg .rating-stars>i.fa-star, .rating .rating-stars>i.fa-star {
  color: #0051A8;
}

.rating li {
  margin: 5px 0px;
}

.rating .rating-progress {
  position: relative;
  display: inline-block;
  height: 9px;
  background-color: #E4E7ED;
  width: 120px;
  margin: 0px 10px;
  border-radius: 5px;
}

.rating .rating-progress>div {
  background-color: #0051A8;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}

.rating .sum {
  display: inline-block;
  font-size: 12px;
  color: #8D99AE;
}

/*-- Reviews --*/

.reviews li {
  position: relative;
  padding-left: 145px;
  margin-bottom: 30px;
}

.reviews .review-heading {
  position: absolute;
  width: 130px;
  left: 0;
  top: 0;
  height: 70px;
}

.reviews .review-body {
  min-height: 70px;
}

.reviews .review-heading .name {
  margin-bottom: 5px;
  margin-top: 0px;
}

.reviews .review-heading .date {
  color: #8D99AE;
  font-size: 10px;
  margin: 0;
}

.reviews .review-heading .review-rating {
  margin-top: 5px;
}

.reviews .review-heading .review-rating>i {
  color: #E4E7ED;
}

.reviews .review-heading .review-rating>i.fa-star {
  color: #0051A8;
}

.reviews-pagination {
  text-align: center;
}

.reviews-pagination li {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.reviews-pagination li:hover {
  background-color: #E4E7ED;
  color: #0051A8;
}

.reviews-pagination li.active {
  background-color: #0051A8;
  border-color: #0051A8;
  color: #FFF;
  cursor: default;
}

.reviews-pagination li a {
  display: block;
}

/*-- Review Form --*/

.review-form .input {
  margin-bottom: 15px;
}

.review-form .input-rating {
  margin-bottom: 15px;
}

.review-form .input-rating .stars {
  display: inline-block;
  vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
  display: none;
}

.review-form .input-rating .stars>label {
  float: right;
  cursor: pointer;
  padding: 0px 3px;
  margin: 0px;
}

.review-form .input-rating .stars>label:before {
  content: "\f006";
  font-family: FontAwesome;
  color: #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.review-form .input-rating .stars>label:hover:before, .review-form .input-rating .stars>label:hover~label:before {
  color: #0051A8;
}

.review-form .input-rating .stars>input:checked label:before, .review-form .input-rating .stars>input:checked~label:before {
  content: "\f005";
  color: #0051A8;
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
  margin-bottom: 30px;
}

.shiping-details {
  margin-bottom: 30px;
}

.order-details {
  position: relative;
  padding: 0px 30px 30px;
  border-right: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-bottom: 1px solid #E4E7ED;
}

.order-details:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -15px;
  height: 30px;
  border-top: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-right: 1px solid #E4E7ED;
}

.order-summary {
  margin: 15px 0px;
}

.order-summary .order-col {
  display: table;
  width: 100%;
}

.order-summary .order-col:after {
  content: "";
  display: block;
  clear: both;
}

.order-summary .order-col>div {
  display: table-cell;
  padding: 10px 0px;
}

.order-summary .order-col>div:first-child {
  width: calc(100% - 150px);
}

.order-summary .order-col>div:last-child {
  width: 150px;
  text-align: right;
}

.order-summary .order-col .order-total {
  font-size: 24px;
  color: #0051A8;
}

.order-details .payment-method {
  margin: 30px 0px;
}

.order-details .order-submit {
  display: block;
  margin-top: 30px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
  border-top: 2px solid #E4E7ED;
  border-bottom: 3px solid #0051A8;
  margin-top: 30px;
}

.newsletter {
  text-align: center;
}

.newsletter p {
  font-size: 24px;
}

.newsletter form {
  position: relative;
  max-width: 520px;
  margin: 30px auto;
}

.newsletter form:after {
  content: "\f003";
  font-family: FontAwesome;
  position: absolute;
  font-size: 160px;
  color: #E4E7ED;
  top: 15px;
  -webkit-transform: translateY(-50%) rotate(15deg);
  -ms-transform: translateY(-50%) rotate(15deg);
  transform: translateY(-50%) rotate(15deg);
  z-index: -1;
  left: -90px;
}

.newsletter form .input {
  width: calc(100% - 160px);
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.newsletter form .newsletter-btn {
  width: 160px;
  height: 40px;
  font-weight: 700;
  background: #0051A8;
  color: #FFF;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

.newsletter .newsletter-follow {
  text-align: center;
}

.newsletter .newsletter-follow li {
  display: inline-block;
  margin-right: 5px;
}

.newsletter .newsletter-follow li:last-child {
  margin-right: 0px;
}

.newsletter .newsletter-follow li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.newsletter .newsletter-follow li a:hover, .newsletter .newsletter-follow li a:focus {
  background-color: #E4E7ED;
  color: #0051A8;
}

/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
  background: linear-gradient(to bottom, #f6f6f6, transparent);
  color: #838383;
}

#bottom-footer {
  background: linear-gradient(to bottom, #f6f6f6, transparent);
  padding-bottom: 20px;
}

.footer {
  margin: 30px 0px;
}

.footer .footer-title {
  color: #333;
  font-style: normal;
  text-transform: uppercase;
  font-size: 18px;
}

.footer-links li+li {
  margin-top: 10px;
}

.footer-links li a {
  color: #838383;
}

.footer-links li i {
  margin-right: 15px;
  color: #0051A8;
  width: 14px;
  text-align: center;
}

.footer-links li a:hover {
  color: #0051A8;
}

.copyright {
  margin-top: 30px;
  display: block;
  font-size: 12px;
}

.footer-payments li {
  display: inline-block;
  margin-right: 5px;
}

.footer-payments li a {
  color: #15161D;
  font-size: 36px;
  display: block;
}

/*----------------------------*\
	Menu Bottom
\*----------------------------*/
.menu-bottom {
    background-color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -3px 3px rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.menu-fot {
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 37px;
}

.menu-fot div {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    right: -5px;
}

.menu-home.active i {
    color: #000;
}

.menu-home.active span {
    color: #000;
}

.menu-home i,
.menu-search i,
.menu-whats i {
    font-size: 24px;
    color: #888;
}

.menu-search i {
    color: #fff;
    font-size: 21px;
}

.menu-whats i {
    color: #35900f;
}

.menu-home span,
.menu-search span,
.menu-whats span {
    color: #888;
    font-size: 12px;
    margin-top: 5px;
}

.menu-search span {
    margin-left: 10px;
}

.menu-search {
    position: relative;
    top: -10px;
}

.search-menu-icon {
    background-color: #000;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.search-icon i {
    color: #8e8e8e;
    font-size: 19px;
}

.clear-icon i {
    color: #8e8e8e;
    font-size: 19px;
}

/*=========================================================
	12 -> SLICK STYLE ver 1.8.2
===========================================================*/
/*----------------------------*\
	Slider
\*----------------------------*/
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/*----------------------------*\
	Icon
\*----------------------------*/
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('../fonts/slick.eot');
    src: url('../fonts/slick.eot?#iefix') format('embedded-opentype'), url('../fonts/slick.woff') format('woff'), url('../fonts/slick.ttf') format('truetype'), url('../fonts/slick.svg#slick') format('svg');
}

/*----------------------------*\
	Arrows
\*----------------------------*/
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #00000000;
    border: none;
    outline: none;
    background: transparent;
    z-index: 1;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
    color: #000;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 50px;
    line-height: 1;
    opacity: 0.5;
    color: #bfbfbf;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}

.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/*----------------------------*\
	Dots
\*----------------------------*/
.slick-dotted.slick-slider
{
    margin-bottom: 0px;
}

.slick-dots
{
    position: absolute;
    bottom: 10px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-loading-dot {
    position: relative;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 3px;
    line-height: 15px;

    position: absolute;
    top: 0;
    left: 0;

    width: 15px;
    height: 15px;

    content: '';
    text-align: center;

    opacity: .25;
    color: black;
    border-radius: 50%;
    background: #E4E7ED;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/*----------------------------*\
	Progress Bar
\*----------------------------*/
.slider-banner-container {
    position: relative;
}

.progressBarContainer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.progressBarContainer div {
    display: block;
    width: 10%;
    min-width: 30px;
    max-width: 100px;
    padding: 0;
    cursor: pointer;
    margin-right: 10px;
    color: white;
}

.progressBarContainer div:last-child {
    margin-right: 0;
}

.progressBarContainer div span.progressBar {
    width: 100%;
    height: 7px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    display: block;
}

.progressBarContainer div span.progressBar .inProgress {
    background-color: #c74200;
    width: 0%;
    min-width: 0%;
    max-width: 100%;
    height: 7px;
    border-radius: 10px;
}

/*=========================================================
	13 -> DISPLAY RESPONSIVE
===========================================================*/
.big-display {
  display: block;
}
.small-display {
  display: none;
}

/*=========================================================
	14 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 1201px) {
    .tombol {
      color: #000;
    }
    
    .tombol::before {
      background-color: #000;
    }
    
    .tombol::after {
      background-color: #000;
    }
    
    .tombol:hover {
      color: #fff;
    }
    .big-display {
      display: block;
    }
    .progressBarContainer {
        display: block;
    }
    .header-small {
      display: none;
    }
    .small-display {
      display: none;
    }
}

@media only screen and (max-width: 991px) {
  #top-header .header-links.pull-left {
    float: none !important;
  }
  #top-header .header-links.pull-right {
    float: none !important;
    margin-top: 5px;
  }
  .header-text h1, h2 {
    text-align: center;
  }
  #product-imgs {
    margin-bottom: 60px;
    margin-top: 15px;
  }
  #rating {
    text-align: center;
  }
  #reviews {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .popup-card {
    backdrop-filter: blur(4px);
  }
  .popup-content {
    max-width: 100%;
    backdrop-filter: none;
  }
  .popup-content img {
    max-width: 60%;
    filter: none;
  }
  .popup-description {
    filter: none;
  }
  .group {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .group .group-body {
	padding-bottom: 10px;
  }
  .tombol {
	color: #fff;
	border-bottom: 3px solid #fff;
  }
  .notification {
    display: none;
  }
  #top-header {
    display: none;
  }
  .search-menu,
  .whatsapp-menu,
  .location-menu {
    display: block;
  }
  .row .col-md-0 {
    display: block;
  }
  .section-title {
    margin-bottom: 10px;
  }
  .section-title .title {
    font-size: 21px;
  }
  .header-big {
    display: none;
  }
  .header-small {
    display: flex;
  }
  .big-display {
    display: none;
  }
  .progressBarContainer {
    display: none;
  }
  .small-display {
    display: block;
  }
  .scrollTop {
    bottom: 65px;
  }
  .menu-bottom {
    display: none;
  }
  .menu-item img {
    width: 74px;
  }
  .menu-item p {
    font-size: 12px;
  }
  .nav-tabs>li>a {
    margin-top: 5px;
    font-size: 14px;
  }
  
  .footer .footer-title {
    font-size: 14px;
  }
  .footer p {
    font-size: 12px;
  }
  .footer-links li+li {
    margin-top: 0px;
  }
  .footer-links li a {
    font-size: 12px;
  }
  
  .product {
    margin: 5px 0px;
    min-height: 0px;
    /*height: 225px;*/
  }
  .product .product-body {
    height: 100px;
    padding: 10px;
  }
  .product .product-body .product-name {
    font-size: 10px;
  }
  .product .product-body .product-price {
    font-size: 14px;
  }
  .product .product-img .product-label>span {
    padding: 2px 5px;
    font-size: 10px;
    font-weight: 700;
  }
  .col-md-4, .col-sm-6, .col-xs-6 {
    padding: 0px 5px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title .section-nav {
    float: none;
    margin-top: 10px;
  }
  .section-tab-nav li {
    margin-top: 10px;
  }
  .group .group-img {
    min-height: auto;
  }
  .popup-card {
    padding-top: 20%;
  }
  .group .group-body {
	padding-bottom: 30px;
  }
  .notification {
    display: none;
  }
  #top-header {
    display: none;
  }
  .section-title .title {
    font-size: 18px;
  }
  .footer .footer-title {
    font-size: 14px;
  }
  .footer p {
    font-size: 12px;
  }
  .footer-links li+li {
    margin-top: 0px;
  }
  .footer-links li a {
    font-size: 12px;
  }
  .menu-bottom {
    display: flex;
  }
  .menu-item img {
    width: 54px;
  }
  .menu-item p {
    font-size: 10px;
  }
  .nav-tabs>li>a {
    font-size: 14px;
  }
  .slick-list {
    overflow: hidden;
    border-radius: 10px;
    margin: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .store-grid {
    float: none;
    margin-top: 10px;
  }
  .store-pagination {
    float: none;
    margin-top: 10px;
  }
  .group .group-img-big {
    /*height: 355px;*/
  }
  .group .group-img {
    /*width: 435px;*/
    /*height: 235px;*/
  }
  .group .group-body {
	padding-bottom: 10px;
  }
  .popup-card {
	padding-top: 40%
  }
  .notification {
    display: none;
  }
  #top-header {
    display: none;
  }
  
  .footer .footer-title {
    font-size: 14px;
  }
  .footer p {
    font-size: 12px;
  }
  .footer-links li+li {
    margin-top: 0px;
  }
  .footer-links li a {
    font-size: 12px;
  }
  
  .menu-bottom {
    display: flex;
  }
  .menu-item img {
    width: 54px;
  }
  .menu-item p {
    font-size: 10px;
  }
  .nav-tabs>li>a {
    font-size: 10px;
  }
}