/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --color-main: #050a30;
  --color-second: #ffd600;
  --color-third: #1f3b35;
}

body {
  font-family: "Poppins", sans-serif;
  color: #707070;
  font-size: 14px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1d1819;
}
.bg-main {
  background-color: #b80007;
  border-color: #b80007;
}
.my-shadow {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.35);
}
.gap-2 {
  gap: 10px;
}
.text-abu {
  color: #868686;
}
.text-secondary {
  color: #3d3d3f;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.font-thin {
  font-weight: 100 !important;
}
.font-extralight {
  font-weight: 200 !important;
}
.font-light {
  font-weight: 300 !important;
}
.font-normal {
  font-weight: 400 !important;
}
.font-medium {
  font-weight: 500 !important;
}
.font-semibold {
  font-weight: 600 !important;
}
.font-bold {
  font-weight: 700 !important;
}

.font-8 {
  font-size: 8px;
}

.font-10 {
  font-size: 10px;
}

.font-12 {
  font-size: 12px;
}

.font-14 {
  font-size: 14px;
}

.font-15 {
  font-size: 15px;
}

.font-16 {
  font-size: 16px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px;
}

.font-22 {
  font-size: 22px;
}

.font-24 {
  font-size: 24px;
}
.justify-normal {
  justify-content: normal;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-stretch {
  justify-content: stretch;
}

.flex {
  display: flex;
}
.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.rounded-none {
  border-radius: 0px;
}

.rounded-sm {
  border-radius: 0.125rem !important; /* 2px */
}

.rounded {
  border-radius: 0.25rem !important; /* 4px */
}

.rounded-md {
  border-radius: 0.375rem !important; /* 6px */
}

.rounded-lg {
  border-radius: 0.5rem !important; /* 8px */
}

.rounded-xl {
  border-radius: 0.75rem !important; /* 12px */
}

.rounded-2xl {
  border-radius: 1rem !important; /* 16px */
}

.rounded-3xl {
  border-radius: 1.5rem; /* 24px */
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-s-none {
  border-start-start-radius: 0px;
  border-end-start-radius: 0px;
}

.rounded-s-sm {
  border-start-start-radius: 0.125rem; /* 2px */
  border-end-start-radius: 0.125rem; /* 2px */
}

.rounded-s {
  border-start-start-radius: 0.25rem; /* 4px */
  border-end-start-radius: 0.25rem; /* 4px */
}

.rounded-s-md {
  border-start-start-radius: 0.375rem; /* 6px */
  border-end-start-radius: 0.375rem; /* 6px */
}

.rounded-s-lg {
  border-start-start-radius: 0.5rem; /* 8px */
  border-end-start-radius: 0.5rem; /* 8px */
}

.rounded-s-xl {
  border-start-start-radius: 0.75rem; /* 12px */
  border-end-start-radius: 0.75rem; /* 12px */
}

.rounded-s-2xl {
  border-start-start-radius: 1rem; /* 16px */
  border-end-start-radius: 1rem; /* 16px */
}

.rounded-s-3xl {
  border-start-start-radius: 1.5rem; /* 24px */
  border-end-start-radius: 1.5rem; /* 24px */
}

.rounded-s-full {
  border-start-start-radius: 9999px;
  border-end-start-radius: 9999px;
}

.rounded-e-none {
  border-start-end-radius: 0px;
  border-end-end-radius: 0px;
}

.rounded-e-sm {
  border-start-end-radius: 0.125rem; /* 2px */
  border-end-end-radius: 0.125rem; /* 2px */
}

.rounded-e {
  border-start-end-radius: 0.25rem; /* 4px */
  border-end-end-radius: 0.25rem; /* 4px */
}

.rounded-e-md {
  border-start-end-radius: 0.375rem; /* 6px */
  border-end-end-radius: 0.375rem; /* 6px */
}

.rounded-e-lg {
  border-start-end-radius: 0.5rem; /* 8px */
  border-end-end-radius: 0.5rem; /* 8px */
}

.rounded-e-xl {
  border-start-end-radius: 0.75rem; /* 12px */
  border-end-end-radius: 0.75rem; /* 12px */
}

.rounded-e-2xl {
  border-start-end-radius: 1rem; /* 16px */
  border-end-end-radius: 1rem; /* 16px */
}

.rounded-e-3xl {
  border-start-end-radius: 1.5rem; /* 24px */
  border-end-end-radius: 1.5rem; /* 24px */
}

.rounded-e-full {
  border-start-end-radius: 9999px;
  border-end-end-radius: 9999px;
}

.rounded-t-none {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.rounded-t-sm {
  border-top-left-radius: 0.125rem; /* 2px */
  border-top-right-radius: 0.125rem; /* 2px */
}

.rounded-t {
  border-top-left-radius: 0.25rem; /* 4px */
  border-top-right-radius: 0.25rem; /* 4px */
}

.rounded-t-md {
  border-top-left-radius: 0.375rem; /* 6px */
  border-top-right-radius: 0.375rem; /* 6px */
}

.rounded-t-lg {
  border-top-left-radius: 0.5rem; /* 8px */
  border-top-right-radius: 0.5rem; /* 8px */
}

.rounded-t-xl {
  border-top-left-radius: 0.75rem; /* 12px */
  border-top-right-radius: 0.75rem; /* 12px */
}

.rounded-t-2xl {
  border-top-left-radius: 1rem; /* 16px */
  border-top-right-radius: 1rem; /* 16px */
}

.rounded-t-3xl {
  border-top-left-radius: 1.5rem; /* 24px */
  border-top-right-radius: 1.5rem; /* 24px */
}

.rounded-t-full {
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}

.rounded-r-none {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.rounded-r-sm {
  border-top-right-radius: 0.125rem; /* 2px */
  border-bottom-right-radius: 0.125rem; /* 2px */
}

.rounded-r {
  border-top-right-radius: 0.25rem; /* 4px */
  border-bottom-right-radius: 0.25rem; /* 4px */
}

.rounded-r-md {
  border-top-right-radius: 0.375rem; /* 6px */
  border-bottom-right-radius: 0.375rem; /* 6px */
}

.rounded-r-lg {
  border-top-right-radius: 0.5rem; /* 8px */
  border-bottom-right-radius: 0.5rem; /* 8px */
}

.rounded-r-xl {
  border-top-right-radius: 0.75rem; /* 12px */
  border-bottom-right-radius: 0.75rem; /* 12px */
}

.rounded-r-2xl {
  border-top-right-radius: 1rem; /* 16px */
  border-bottom-right-radius: 1rem; /* 16px */
}

.rounded-r-3xl {
  border-top-right-radius: 1.5rem; /* 24px */
  border-bottom-right-radius: 1.5rem; /* 24px */
}

.rounded-r-full {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.shadow {
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.shadow-inner {
  box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
}

.shadow-none {
  box-shadow: 0 0 #0000;
}

fieldset {
  margin: 0 0 3rem;
  padding: 0;
  border: none;
}

.form-radio,
.form-group {
  position: relative;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-inline > .form-group,
.form-inline > .btn {
  display: inline-block;
  margin-bottom: 0;
}

.form-help {
  margin-top: 0.125rem;
  margin-left: 0.125rem;
  color: #b3b3b3;
  font-size: 0.8rem;
}
.checkbox .form-help,
.form-radio .form-help,
.form-group .form-help {
  position: absolute;
  width: 100%;
}
.checkbox .form-help {
  position: relative;
  margin-bottom: 1rem;
}
.form-radio .form-help {
  padding-top: 0.25rem;
  margin-top: -1rem;
}

.form-group input {
  height: 1.9rem;
}
.form-group textarea {
  resize: none;
}
.form-group .control-label {
  position: absolute;
  top: 0.25rem;
  pointer-events: none;
  padding-left: 0.125rem;
  z-index: 1;
  color: #b3b3b3;
  font-size: 1rem;
  font-weight: normal;
  -webkit-transition: all 0.28s ease;
  transition: all 0.28s ease;
}
.form-group .bar {
  position: relative;
  border-bottom: 0.0625rem solid #999;
  display: block;
}
.form-group .bar::before {
  content: "";
  height: 0.125rem;
  width: 0;
  left: 50%;
  bottom: -0.0625rem;
  position: absolute;
  background: #337ab7;
  -webkit-transition: left 0.28s ease, width 0.28s ease;
  transition: left 0.28s ease, width 0.28s ease;
  z-index: 2;
}
.form-group input,
.form-group textarea {
  display: block;
  background: none;
  padding: 0.125rem 0.125rem 0.0625rem;
  font-size: 1rem;
  border-width: 0;
  border-color: transparent;
  line-height: 1.9;
  width: 100%;
  color: transparent;
  -webkit-transition: all 0.28s ease;
  transition: all 0.28s ease;
  box-shadow: none;
}
.form-group input[type="file"] {
  line-height: 1;
}
.form-group input[type="file"] ~ .bar {
  display: none;
}
.form-group select,
.form-group input:focus,
.form-group input:valid,
.form-group input.form-file,
.form-group input.has-value,
.form-group textarea:focus,
.form-group textarea:valid,
.form-group textarea.form-file,
.form-group textarea.has-value {
  color: #333;
}
.form-group select ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group input:valid ~ .control-label,
.form-group input.form-file ~ .control-label,
.form-group input.has-value ~ .control-label,
.form-group textarea:focus ~ .control-label,
.form-group textarea:valid ~ .control-label,
.form-group textarea.form-file ~ .control-label,
.form-group textarea.has-value ~ .control-label {
  font-size: 0.8rem;
  color: gray;
  top: -1rem;
  left: 0;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
}
.form-group select:focus ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group textarea:focus ~ .control-label {
  color: #337ab7;
}
.form-group select:focus ~ .bar::before,
.form-group input:focus ~ .bar::before,
.form-group textarea:focus ~ .bar::before {
  width: 100%;
  left: 0;
}
.bg-inherit {
  background-color: inherit;
}

.bg-current {
  background-color: currentColor;
}

.bg-transparent {
  background-color: transparent;
}

.bg-black {
  background-color: rgb(0 0 0);
}

.bg-white {
  background-color: rgb(255 255 255);
}

.bg-slate-50 {
  background-color: rgb(248 250 252);
}

.bg-slate-100 {
  background-color: rgb(241 245 249);
}

.bg-slate-200 {
  background-color: rgb(226 232 240);
}

.bg-slate-300 {
  background-color: rgb(203 213 225);
}
.select-material {
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  position: relative;
  width: 100%;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.select-text {
  position: relative;
  font-family: inherit;
  background-color: transparent;
  width: 100%;
  padding: 3px 10px 4px 0;
  font-size: 1rem;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #999;
  color: #333;
}

/* Remove focus */
.select-text:focus {
  outline: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}

/* Use custom arrow */
.select-material .select-text {
  appearance: none;
  -webkit-appearance: none;
}

.select-material:after {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

/* LABEL ======================================= */
.select-label {
  color: #b3b3b3;
  font-size: 1rem;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 2px;
  transition: 0.2s ease all;
}

/* active state */
.select-text:focus ~ .select-label,
.select-text:valid ~ .select-label {
  color: #337ab7;
  top: -18px;
  transition: 0.2s ease all;
  font-size: 0.8rem;
}

/* BOTTOM BARS ================================= */
.select-bar {
  position: relative;
  display: block;
  width: 100%;
}

.select-bar:before,
.select-bar:after {
  content: "";
  height: 2.5px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: #337ab7;
  transition: 0.2s ease all;
}

.select-bar:before {
  left: 50%;
}

.select-bar:after {
  right: 50%;
}

/* active state */
.select-text:focus ~ .select-bar:before,
.select-text:focus ~ .select-bar:after {
  width: 50%;
}

/* HIGHLIGHTER ================================== */
.select-highlight {
  position: absolute;
  height: 60%;
  width: 100%;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .font-sm-8 {
    font-size: 8px !important;
  }

  .font-sm-10 {
    font-size: 10px !important;
  }

  .font-sm-12 {
    font-size: 12px !important;
  }

  .font-sm-14 {
    font-size: 14px !important;
  }

  .font-sm-16 {
    font-size: 16px !important;
  }

  .font-sm-18 {
    font-size: 18px !important;
  }

  .font-sm-20 {
    font-size: 20px !important;
  }

  .font-sm-24 {
    font-size: 24px !important;
  }

  .font-sm-28 {
    font-size: 28px !important;
  }

  .font-sm-30 {
    font-size: 30px !important;
  }
}
.text-start {
  text-align: start;
}
/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/*--------------------------
    - Notification Bar Css
----------------------------*/
.topbar-close-btn {
  background-color: transparent;
  border: 0;
  padding: 0;
  color: #ffffff;
  font-size: 20px;
  display: inline-block;
  height: auto;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.topbar-close-btn:hover {
  opacity: 0.7;
}

.notification-bar-area {
  padding: 7px 0;
}

.header-top-area-left-side,
.header-top-area-right-side {
  padding: 8px 0;
  gap: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .header-top-area-left-side,
  .header-top-area-right-side {
    gap: 30px;
    padding: 0px 0;
  }
}
.header-top-area-left-side-item,
.header-top-area-right-side-item {
  position: relative;
}
.header-top-area-left-side-item::after,
.header-top-area-right-side-item::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  background-color: #ebebeb;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 575px) {
  .header-top-area-left-side-item::after,
  .header-top-area-right-side-item::after {
    right: -15px;
  }
}
.header-top-area-left-side-item:last-child::after,
.header-top-area-right-side-item:last-child::after {
  display: none;
}

/*--------------------------
    - Top Bar Menu Css
----------------------------*/
.top-bar-item-menu li {
  position: relative;
}
.top-bar-item-menu li a i {
  font-size: 10px;
}
.top-bar-item-menu li:hover .top-bar-item-menu-dropdow {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.top-bar-item-menu-dropdow {
  position: absolute;
  top: 150%;
  z-index: 999;
  list-style: none;
  left: auto;
  right: 0;
  margin: 0;
  border-radius: 0;
  background: #fff;
  text-align: left;
  padding: 0;
  border: 0;
  min-width: 160px;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  border: 1px solid #e2e2e2;
  transition: all 0.3s ease-in-out;
}
.top-bar-item-menu-dropdow a {
  padding: 7px 19px;
  line-height: 24px;
  display: block;
  color: #333;
}
.top-bar-item-menu-dropdow a:hover,
.top-bar-item-menu-dropdow a.active {
  background-color: #f5f5f5;
}
.top-bar-item-menu.top-bar-menu-left .top-bar-item-menu-dropdow {
  left: 0;
  right: auto;
}

/*--------------------------
    - Logo Css
----------------------------*/
.logo a {
  display: inline-block;
  padding: 10px 0;
  padding-bottom: 0;
}
.logo a img {
  /* max-width: 110px; */
  width: 100%;
}

/*--------------------------
    - Header Action Css
----------------------------*/
.header-action {
  gap: 5px;
}
@media only screen and (min-width: 1550px),
  only screen and (min-width: 1200px) and (max-width: 1549px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-action {
    gap: 22px;
  }
}
.header-action-item {
  position: relative;
  background-color: transparent;
  border: 0;
  padding: 0 2px;
  background: 0 0;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  display: inline-block;
  vertical-align: top;
  color: #313030;
}
.header-action-item .icon-rt-loupe {
  font-size: 21px;
}
.header-action-item-count {
  font-size: 13px;
  margin-left: -9px;
}

@media screen and (min-width: 992px) {
  .bg-lg-transparent {
    background: transparent !important;
  }
}
@media screen and (min-width: 768px) {
  .bg-md-transparent {
    background: transparent !important;
  }
}
@media screen and (min-width: 576px) {
  .bg-sm-transparent {
    background: transparent !important;
  }
}
/*----------------------------------------*/
/*   - Sticky Header CSS
/*----------------------------------------*/
.sticky-header {
  width: 100%;
}
.is-sticky {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  /* -webkit-animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
          animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown; */
  animation: stuckMoveDown 0.6s;
}
.sticky-header.dark-sticky-header.is-sticky {
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.is-sticky .main-menu-link {
  padding: 11px 0px;
  font-size: 14px;
}
.is-sticky .logo a img {
  height: 41px;
}
@keyframes stuckMoveDown {
  0% {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}
/*----------------------------------
- Main Menu
-----------------------------------*/
.main-menu {
  display: flex;
}
.main-menu-item {
  padding: 0px 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu-item {
    padding: 0 10px;
  }
}
.main-menu-item:first-child {
  padding-left: 0;
}
.main-menu-item.active .main-menu-link {
  color: #ffffff;
}
.main-menu-item.active .main-menu-link::after {
  width: 100%;
}
.main-menu-link {
  display: block;
  color: #ffffff;
  padding: 22px 0px;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.18;
  transition: all 0s ease-in-out;
  text-transform: uppercase;
}
.main-menu-link::before {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.main-menu-link:hover {
  color: #000000;
}
.main-menu-link:hover::before {
  width: 100%;
}

.nav-menu-white .main-menu-item.active .main-menu-link {
  color: #ffffff;
}
.nav-menu-white .main-menu-link {
  color: #ffffff;
}
.nav-menu-white .main-menu-link::before {
  background-color: #ffffff;
}
.nav-menu-white .main-menu-link:hover {
  color: #ffffff;
}
.nav-menu-white .main-menu-link:hover::before {
  width: 100%;
}

.menu-label {
  font-size: 11px;
  text-transform: capitalize;
  position: absolute;
  top: -9px;
  padding: 0 5px;
  color: #f1f1f1;
  border-radius: 2px;
  line-height: 20px;
  font-weight: 400;
  z-index: 100;
  white-space: nowrap;
  background: #282828;
}
.menu-label::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top-width: 4px;
  border-bottom-width: 0;
  border-right-width: 7px;
  border-left-width: 0;
  border-top-color: transparent;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  border-color: #282828;
}

/*----------------------------------
- Submenu
-----------------------------------*/
.has-children {
  position: relative;
}
.has-children:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.has-children:hover .megamenu--mega-lavel-2.megamenu {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.has-children--mega {
  position: inherit;
}
.has-children--mega:hover .megamenu {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.has-children > .main-menu-link,
.has-children--mega > .main-menu-link {
  position: relative;
}
/* .has-children > .main-menu-link::after,
.has-children--mega > .main-menu-link::after {
  position: static;
  margin-left: 5px;
  font-family: "remixicon!important";
  content: "\ea4e";
  font-weight: 600;
  font-size: 8px;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
} */

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  transform: translateY(50px);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.2s;
  transition-duration: 0.4s;
  visibility: hidden;
  opacity: 0;
  min-width: 220px;
  padding: 20px 0;
  border: 1px solid #eaeaea;
  z-index: 3;
}
.submenu-link {
  padding: 2px 15px;
  color: #000000;
  font-size: 16px;
  display: block;
  position: relative;
}
.submenu > .has-children {
  position: relative;
}
.submenu > .has-children::after {
  position: absolute;
  margin-left: 5px;
  font-family: "roadthemes-icon";
  content: "\e92d";
  font-weight: 600;
  font-size: 10px;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.submenu .submenu {
  top: 0px;
  left: 100%;
  right: auto;
}
.submenu .submenu > .has-children {
  position: relative;
}
.submenu .submenu > .has-children::after {
  position: static;
  margin-left: 5px;
  font-family: "roadthemes-icon";
  content: "\e92b";
  font-weight: 600;
  font-size: 10px;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}
.submenu > li {
  position: relative;
}
.submenu > li:hover > .submenu {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  z-index: 9;
}

/*---------------------------
 - Megamenu CSS
-----------------------------*/
.megamenu {
  position: absolute;
  left: 0;
  border: 1px solid #eaeaea;
  box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  transform: translateY(50px);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.2s;
  transition-duration: 0.4s;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
}
.megamenu--mega {
  width: 100%;
  left: 0;
  right: 0;
}
.megamenu--mega-inner {
  max-width: 1400px;
  margin: auto;
  padding: 35px 15px 30px;
  display: flex;
}
.megamenu--mega-lavel-2 {
  width: 580px;
  padding: 20px 15px;
  display: flex;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .megamenu--mega-lavel-2 {
    margin-left: -134px;
  }
}
.megamenu .megamenu-item {
  flex-grow: 1;
  flex-basis: 0;
  padding: 15px;
}
.megamenu-title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
}
.megamenu-link {
  padding: 2px 0px;
  color: #000000;
  font-size: 16px;
  display: block;
  position: relative;
}

.mobile-menu-item {
  display: block;
  border-top: 1px solid #eee;
}
.mobile-menu-item:first-child {
  border-top: 0;
}
.mobile-menu-link {
  display: block;
  padding: 10px 0px;
  line-height: 24px;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  position: relative;
}
.mobile-menu-link:hover > .menu-expand,
.mobile-menu-link.active > .menu-expand {
  background-color: #313030;
  color: #fff;
}
.mobile-menu-link > .menu-expand {
  position: absolute;
  right: 0;
  background: #eee;
  width: 30px;
  height: 27px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
  color: #333;
  font-size: 10px;
}
.mobile-menu--mega,
.mobile-menu .sub-menu {
  display: none;
  padding: 0 0 0 15px;
  border-top: 1px solid #eee;
}
.mobile-menu--mega li:first-child .mega-menu-link,
.mobile-menu--mega li:first-child .sub-menu-link,
.mobile-menu .sub-menu li:first-child .mega-menu-link,
.mobile-menu .sub-menu li:first-child .sub-menu-link {
  border-top: 0;
}
.mobile-menu--mega li .menu-expand,
.mobile-menu .sub-menu li .menu-expand {
  position: absolute;
  right: 0;
  background: #eee;
  width: 25px;
  height: 24px;
  line-height: 26px;
  text-align: center;
  border-radius: 4px;
  color: #333;
  font-size: 10px;
}
.mobile-menu--mega li .mega-menu-link,
.mobile-menu--mega li .sub-menu-link,
.mobile-menu .sub-menu li .mega-menu-link,
.mobile-menu .sub-menu li .sub-menu-link {
  display: block;
  padding: 8px 0px;
  line-height: 24px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  border-top: 1px solid #eee;
}
.mobile-menu--mega li .mega-menu-link:hover > .menu-expand,
.mobile-menu--mega li .mega-menu-link.active > .menu-expand,
.mobile-menu--mega li .sub-menu-link:hover > .menu-expand,
.mobile-menu--mega li .sub-menu-link.active > .menu-expand,
.mobile-menu .sub-menu li .mega-menu-link:hover > .menu-expand,
.mobile-menu .sub-menu li .mega-menu-link.active > .menu-expand,
.mobile-menu .sub-menu li .sub-menu-link:hover > .menu-expand,
.mobile-menu .sub-menu li .sub-menu-link.active > .menu-expand {
  background-color: #313030;
  color: #fff;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wrap-icon i {
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  color: #292929;
}
.header-midel-area i {
  color: black;
}
.wrap-footer-menu a {
  color: #fff;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
  padding: 10px 0;
  width: 100%;
  display: block;
}
.copyright-color {
  color: hsla(0, 0%, 100%, 0.5);
}
.payment-icon {
  border-radius: 5px;
  display: inline-block;
  margin: 3px 3px 0;
  opacity: 0.6;
  padding: 3px 5px 5px;
  transition: opacity 0.3s;
  background-color: hsla(0, 0%, 100%, 0.1);
}
.payment-icon img {
  height: 20px;
  vertical-align: middle;
  width: auto !important;
}
.payment-icon svg {
  fill: #fff;
}
.payment-icon svg {
  height: 20px;
  vertical-align: middle;
  width: auto !important;
}
.payment-icon:hover {
  opacity: 1;
}
/*=============================================
=           Contact             =
=============================================*/

#google-map {
  height: 400px;
  margin-bottom: 40px;
}

h3.contact-page-title {
  font-size: 25px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 25px;
  color: #292929;
}

.single-contact-block {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.single-contact-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.single-contact-block h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #222;
}

.single-contact-block h4 img {
  margin: 5px 20px 20px 0;
}

.single-contact-block p {
  font-size: 14px;
  line-height: 29px;
  margin-bottom: 0;
  color: #666;
}

span.required {
  color: red;
}

/*----------  contact form  ----------*/

.contact-form-content .form-messege {
  display: none;
}

.contact-form-content .form-messege.success,
.contact-form-content .form-messege.error {
  display: block;
  margin-top: 15px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  font-size: 12px;
  font-weight: 400;
  line-height: 29px;
  display: block;
  margin-bottom: 0;
  color: #888;
}

.contact-form input {
  line-height: 50px;
  width: 100%;
  height: 50px;
  padding-left: 20px;
  border: 1px solid #e0e0e0;
  outline: none;
  background-color: #fff;
}

.contact-form textarea {
  line-height: 50px;
  width: 100%;
  height: 200px;
  padding-left: 20px;
  border: 1px solid #e0e0e0;
  outline: none;
  background-color: #fff;
}

/*----------  contact page side content  ----------*/

.contact-page-side-content {
  padding: 30px;
  background-color: #f2f2f2;
}

.contact-page-message {
  line-height: 20px;
}

.contact-button {
  font-weight: 400;
  width: 140px;
  padding: 10px 20px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #292929;
  border-color: #292929;
  background-color: #292929;
}

.contact-button:hover {
  border-color: #ed6600;
  background-color: #ed6600;
}

/*=============================================
=           Testimoni             =
=============================================*/
.snip1533 {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #9e9e9e;
  display: inline-block;
  font-size: 16px;
  margin: 35px 0px 0px;
  position: relative;
  text-align: center;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  border-top: 5px solid #b80007;
}

.snip1533 *,
.snip1533 *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.snip1533 figcaption {
  padding: 13% 10% 12%;
}

.snip1533 .icon {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  font-size: 32px;
  font-style: normal;
  left: 50%;
  line-height: 60px;
  position: absolute;
  top: -30px;
  width: 60px;
}
.snip1533 .icon i {
  color: #b80007;
}
.snip1533 h3 {
  color: #3c3c3c;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  margin: 10px 0 5px;
}

.snip1533 h4 {
  font-weight: 400;
  margin: 0;
  opacity: 0.5;
}

.snip1533 blockquote {
  font-style: italic;
  font-weight: 300;
  margin: 0 0 20px;
}

main {
  min-height: 49.9vh;
}
.submenu {
  min-width: 300px;
}
.megamenu--mega-lavel-2 ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.megamenu--mega-lavel-2 > ul > li {
  flex: 50%;
}

.font-besar {
  font-size: 60px;
  color: black;
}

.carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  background-color: #b80007;
  border-radius: 50%;
}

/*----------------------------------------*/
/*   - Quick View Modal Style CSS
/*----------------------------------------*/
.product-quick-view-modal.modal-dialog {
  max-width: 920px;
}
.product-quick-view-modal .modal-content {
  border-radius: 0;
}

/*----------------------------------------*/
/*   - Sign In Modal Style CSS
/*----------------------------------------*/
.sign-in-modal.modal-dialog {
  max-width: 550px;
}
.sign-in-modal .modal-content {
  border-radius: 0;
}
/* ==========================
    - Login Form CSS
==============================*/
.sign-in-tablist {
  border-bottom: 2px solid #ebebeb;
}
.sign-in-tab--item {
  display: flex;
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
  position: relative;
}
.sign-in-tab--item .sign-in-tab--link.active:after {
  content: "";
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  bottom: -2px;
  height: 2px;
  background: #313030;
}
.sign-in-tab--link {
  padding: 10px 0;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  width: 100%;
  position: relative;
}

.account-form-box {
  margin-top: 20px;
}

.single-input-gruop ~ .single-input-gruop {
  margin-top: 10px;
}
.single-input-fild {
  border: 1px solid #ebebeb;
  padding: 10px 15px;
  width: 100%;
  border-radius: 0px;
  font-size: 16px;
  color: #333;
}
.single-input-fild:focus {
  outline: none;
  border-color: #313030;
}
.single-input-label {
  display: block;
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}
.btn-full {
  width: 100%;
}
.btn-md {
  padding: 10px 25px;
  font-size: 16px;
}
a {
  color: #111;
}
a:hover {
  color: #b80007;
}

footer a:hover {
  color: #111;
}
/*=============================================
=            Login Register            =
=============================================*/

/*-- Login Title --*/

.login-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 30px;
  text-decoration: underline;
  text-transform: capitalize;
}

/*-- Login Form --*/

.login-form {
  padding: 20px;
  background-color: #fff;
  /*-webkit-box-shadow: 0 5px 4px 0 rgba(0, 0, 0, .1);*/
  /*box-shadow: 0 5px 4px 0 rgba(0, 0, 0, .1);*/
}

.login-form label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.login-form .nice-select {
  font-size: 14px;
  line-height: 23px;
  width: 100%;
  height: 45px;
  margin-bottom: 20px;
  margin-bottom: 15px;
  padding: 10px 20px;
  color: #707070;
  border: 1px solid #999;
  border-radius: 0;
  background-color: transparent;
}

.login-form .nice-select::after {
  right: 20px;
  width: 6px;
  height: 6px;
  border-width: 1px;
  border-color: #707070;
}

.login-form .nice-select .current {
  line-height: 23px;
  display: block;
  color: #707070;
}

.login-form .nice-select .list {
  width: 100%;
}

.login-form input {
  font-size: 13px;
  line-height: 23px;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px 20px;
  color: #707070;
  border: 1px solid #c2c2c2;
  border-radius: 0;
  background-color: transparent;
}
.login-form textarea {
    font-size: 13px;
    line-height: 23px;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px 20px;
    color: #707070;
    border: 1px solid #c2c2c2;
    border-radius: 0;
    background-color: transparent;
}
.login-form input[type="checkbox"] {
  width: auto;
}

.login-form .check-box {
  float: left;
  margin-right: 70px;
}

.login-form .check-box:last-child {
  margin-right: 0;
}

.login-form .check-box input[type="checkbox"] {
  display: none;
}

.login-form .check-box input[type="checkbox"] + label {
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  margin: 0;
  padding-left: 30px;
  color: #292929;
}

.login-form .check-box input[type="checkbox"] + label::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: 2px solid #999;
}

.login-form .check-box input[type="checkbox"] + label::after {
  font-family: Fontawesome;
  font-size: 12px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  content: "\f00c";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-align: center;
  opacity: 0;
  color: #292929;
}

.login-form .check-box input[type="checkbox"]:checked + label::before {
  border: 2px solid #292929;
}

.login-form .check-box input[type="checkbox"]:checked + label::after {
  opacity: 1;
}

/*-- Place Order --*/

.register-button2 {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  display: block;
  /* float: left; */
  width: 210px;
  height: 36px;
  margin-top: 20px;
  padding: 6px 20px;
  /*text-transform: uppercase;*/
  color: #fff;
  border: none;
  background-color: #1d1819;
}

.register-button3 {
  font-weight: 300;
  line-height: 24px;
  display: block;
  float: left;
  width: 425px;
  height: 36px;
  margin-top: -5px;
  padding: 6px 20px;
  /*text-transform: uppercase;*/
  color: #fff;
  border: none;
  background-color: #1d1819;
}

.register-button {
  font-weight: 300;
  line-height: 24px;
  display: block;
  float: left;
  width: 425px;
  height: 36px;
  margin-top: 20px;
  padding: 6px 20px;
  /*text-transform: uppercase;*/
  color: #fff;
  border: none;
  background-color: #1d1819;
}

.register-button:hover {
  background-color: #054b6c;
}

.forget-pass-link:hover {
  color: #ed6600;
}
/*-- Register Button Google --*/

.register-button-google {
  font-weight: 300;
  line-height: 24px;
  display: block;
  float: left;
  width: 425px;
  height: 36px;
  margin-top: 20px;
  padding: 6px 20px;
  color: #fff;
  border: none;
  background-color: #ea4335;
}

.register-button-google:hover {
  background-color: #d43e31;
  color: #fff;
}

/*=====  End of Login Register  ======*/

/*=============================================
=           My Account            =
=============================================*/

.myaccount-tab-menu {
  flex-direction: column;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
}

.myaccount-tab-menu a {
  font-size: 12px;
  font-weight: 500;
  display: block;
  padding: 15px 15px 13px;
  text-transform: uppercase;
  color: #707070;
  border: 1px solid #eee;
  border-bottom: none;
}

.myaccount-tab-menu a:last-child {
  border-bottom: 1px solid #eee;
}

.myaccount-tab-menu a:hover,
.myaccount-tab-menu a.active {
  color: #fff !important;
  background-color: #b80007;
}

.myaccount-tab-menu a i {
  font-size: 14px;
  width: 25px;
  text-align: center;
}

/*-- My Account Content -*/

.myaccount-content {
  font-size: 14px;
  padding: 30px;
  border: 1px solid #eee;
  background-color: #fff;
}

.myaccount-content h3 {
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #eee;
}

.myaccount-content .welcome a {
  color: #000;
}

.myaccount-content .welcome a:hover {
  color: #ed6600;
}

.myaccount-content .welcome strong {
  font-weight: 600;
}

.myaccount-content a.edit-address-btn {
  font-size: 14px;
  font-weight: 400;
  padding: 10px 20px;
  text-transform: uppercase;
  color: #fff;
  border: none;
  border-color: #292929;
  border-radius: 3px;
  background: none;
  background-color: #292929;
}

.myaccount-content a.edit-address-btn i {
  padding-right: 5px;
}

.myaccount-content a.edit-address-btn:hover {
  background-color: #ed6600;
}

.myaccount-content button.save-change-btn {
  font-weight: 400;
  width: 140px;
  padding: 10px 0;
  text-transform: uppercase;
  color: #fff;
  border: none;
  border-color: #292929;
  border-radius: 3px;
  background: none;
  background-color: #292929;
}

.myaccount-content button.save-change-btn:hover {
  background-color: #ed6600;
}

/*-- My Account Table -*/

.myaccount-table {
  font-size: 15px;
  white-space: nowrap;
}

.myaccount-table table th,
.myaccount-table .table th {
  padding: 10px;
}

.myaccount-table table td,
.myaccount-table .table td {
  padding: 20px 10px;
  vertical-align: middle;
}

.myaccount-table table td a:hover,
.myaccount-table .table td a:hover {
  color: #ed6600;
}

.saved-message {
  font-size: 13px;
  font-weight: 600;
  padding: 20px;
  border-top: 3px solid #ed6600;
  border-radius: 5px 5px 0 0;
}

/*-- My Account Details Form -*/

.account-details-form h4 {
  margin: 0;
}

.account-details-form input {
  line-height: 24px;
  display: block;
  width: 100%;
  margin-bottom: 30px;
  padding: 11px 25px;
  color: #656565;
  border: 1px solid #ebebeb;
  border-radius: 0;
}
.myaccount-content h3 {
  font-size: 22px;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn-primary {
  color: #fff;
  background-color: #1d1819;
  border-color: #1d1819;
}
.btn-primary:hover {
  color: #fff;
  background-color: #b80007;
  border-color: #b80007;
}
.btn-check:focus + .btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: #ed6600;
  border-color: #ed6600;
  box-shadow: 0 0 0 0.1rem rgb(237 102 0 / 30%) !important;
}
/*=====  End of My Account  ======*/
/*=============================================
=            shop            =
=============================================*/

.shop-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  margin-top: 30px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.shop-header2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  margin-top: -30px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.shop-header__left__message {
  font-weight: 300;
  line-height: 46px;
  float: left;
  color: #707070;
}

.shop-header__right .single-select-block {
  margin-right: 30px;
}

.shop-header__right .single-select-block:last-child {
  margin-right: 0;
}

.shop-header__right .single-select-block .select-title {
  font-size: 13px;
  line-height: 30px;
  margin-right: 10px;
  color: #707070;
}

.shop-header__right .single-select-block select {
  line-height: 30px;
  padding-left: 10px;
  color: #707070;
  border: none;
}

.js.all-background {
  background-image: linear-gradient(#ffffff,#ffffff94),url(../../images/bg.jpg) !important;
}

.js.all-background {
  background-color: #f2f4f7 !important;
}

/*=============================================
=            Homepage            =
=============================================*/
.section-title {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 215px;
}
.section-title.section-title-bestsellertab {
  margin-bottom: 20px !important;
  margin-top: 20px !important;
}
.section-title h2 {
  font-size: 30px;
  margin-bottom: 0;
  text-transform: capitalize;
  position: relative;
  color: #2c2d3f;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 15px;
}
.section-title h2::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 50px;
  background: #ed6600;
  left: 50%;
  bottom: 0;
  margin-left: -25px;
}
.section-title p {
  font-size: 14px;
  color: #666;
}
.container.container-home-carousel {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff !important;
  webkit-box-shadow:0.1rem 0.1rem 0.5rem rgba(0, 0, 0, 0.1);
  box-shadow:0.1rem 0.1rem 0.5rem rgba(0, 0, 0, 0.1);
  margin-bottom: 15px !important;
  border-radius: 4px;
}
.header-midel-area {
  background-color: #fff;
}
.shadowku {
  box-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.1) !important;
}
.btn-home-list {
  font-size: 13px !important;
  padding: 3px 16px !important;
  width: auto;
  height: auto;
  border-radius: 20px !important;
  background: #b80007;
  color: #fff;
  font-weight: 400 !important;
  line-height: 24px !important;
  color: #fff;
}
.btn-home-list a {
  color: #fff;
}
.btn-home-list:hover a {
  color: #fff;
}
.button-home-carousel {
  text-align: center !important;
  margin-top: 5px;
}
.product-box {
  /* padding: calc(8px + (14 - 8) * ((100vw - 320px) / (1920 - 320))); */
  /* border-right: 1px solid rgba(74,85,104,0.3); */
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin: 10px;
  padding: 10px;
}
.product-box:hover {
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.25);
}
.product-box.product-white-bg {
  background-color: #fff;
  border-radius: calc(9px + (16 - 9) * ((100vw - 320px) / (1920 - 320)));
  /* padding: calc(10px + (14 - 10) * ((100vw - 320px) / (1920 - 320))); */
  /* border: 1px solid #eee; */
}
.product-box .product-image {
  text-align: center;
  /*padding: 20px;*/
  position: relative;
}
.product-box .product-image img {
  width: 100%;
  height: auto;
  /*-o-object-fit: contain;*/
  /*object-fit: contain;*/
  -o-object-fit: cover;
  object-fit: cover;
  /* -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; */
  /* background: url("../../images/image.png");
  background-size: auto 45px;
  background-repeat: no-repeat;
  background-position: center; */
}
.blur-up.lazyloaded {
  -webkit-filter: blur(0);
  filter: blur(0);
}
.product-box .product-image .product-option {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  position: absolute;
  bottom: -5px;
  background-color: #fff;
  width: 90%;
  padding: 10px 5px;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 8px rgba(34, 34, 34, 0.12);
  box-shadow: 0 0 8px rgba(34, 34, 34, 0.12);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  max-width: 320px;
}
.product-box .product-image .product-option li {
  position: relative;
  width: 33.33%;
}
.product-box:hover .product-image .product-option {
  bottom: 15px;
  opacity: 1;
}
.line-clamp-1 {
  -webkit-line-clamp: 1;
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  -webkit-line-clamp: 3;
}
.line-clamp-1,
.line-clamp-2,
.line-clamp-3,
.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.coret {
  font-size: 11px;
  line-height: 20px;
  margin-right: 5px !important;
  color: #555 !important;
  text-decoration: line-through !important;
}
.font-discount {
  background-color: #ce2e2e;
  font-size: 10px;
  position: absolute;
  width: 26px;
  height: 18px;
  text-align: center;
  color: #fff;
  border-radius: 15%;
}
.theme-color {
  color: #ed6600;
}
.product-detail h6.name {
  height: 43px;
}

.product-detail .wrap-price {
  height: 40px;
}
.product-option .ri-heart-3-fill {
  color: #ed6600;
}
.single-grid-product__price .main-price {
  font-size: 15px;
  font-weight: 300;
  line-height: 10px;
  color: #929292;
}
.single-grid-product__price .main-price.discounted {
  text-decoration: line-through;
  font-size: 14px;
}
.single-grid-product__price .discounted-price {
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  margin-right: 10px;
  color: #b80007;
}
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  /*background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;*/
  /* background: linear-gradient(#fB81BE, #fB81BE), url(../img/cta-bg.jpg) fixed center center;
  background-image: linear-gradient(to right, #213977,#1A9EDA); */
  background-size: cover;
  padding: 40px 0;
  background-color: #1d1819;
}

.cta h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ed6600;
  border: 2px solid #ed6600;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
/*=============================================
=           Cart            =
=============================================*/

.cart-table {
  background-color: #fff;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  border-radius: 0.5em;
  border: 1px solid #e8e8e8;
}

.cart-table .table {
  margin: 0;
}

.cart-table .table thead {
  background-color: #e8e8e8;
}

.cart-table .table thead tr th {
  font-size: 16px;
  font-weight: 700;
  padding: 12px 20px;
  text-align: left;
  text-transform: uppercase;
  color: #292929;
  border: none;
}

.cart-table .table tbody tr td {
  padding: 25px 20px;
  text-align: left;
  vertical-align: middle;
  border: none;
  border-bottom: 1px solid #f2f2f2;
}

.cart-table {
  margin-bottom: 20px;
}

.cart-table th.pro-thumbnail,
.cart-table td.pro-thumbnail {
  width: 120px;
  min-width: 120px;
  max-width: 160px;
}

.cart-table th.pro-title,
.cart-table td.pro-title {
  min-width: 200px;
}

.cart-table td.pro-thumbnail a {
  display: block;
}

.cart-table td.pro-thumbnail a img {
  width: 100%;
  background-color: #f6f7f8;
}

.cart-table td.pro-title a {
  font-size: 14px;
  font-weight: 500;
  color: #292929;
}

.cart-table td.pro-title a:hover {
  color: #e33;
}

.cart-table td.pro-price span {
  font-size: 14px;
  font-weight: 500;
  display: block;
  color: #707070;
}

.cart-table td.pro-quantity {
  /*----------  Additional cart quantity style will be placed here  ----------*/
}

.cart-table td.pro-subtotal span {
  font-size: 15px;
  font-weight: 500;
  display: block;
  color: #707070;
}

.cart-table td.pro-addtocart button {
  font-weight: 700;
  line-height: 24px;
  width: 140px;
  height: 36px;
  padding: 5px 20px;
  text-transform: capitalize;
  color: #292929;
  border: 1px solid #e33;
  border-radius: 0;
  background-color: #e33;
}

.cart-table td.pro-remove a {
  font-weight: 500;
  display: block;
  color: #707070;
}

.cart-table td.pro-remove a i {
  font-size: 20px;
}

.cart-table td.pro-remove a:hover {
  color: #ed6600;
}

/*-- Calculate Shipping --*/

.calculate-shipping {
  margin-bottom: 23px;
}

.calculate-shipping h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 30px;
  /*text-decoration: underline;*/
  text-transform: capitalize;
}

.calculate-shipping form .nice-select {
  line-height: 24px;
  width: 100%;
  height: 36px;
  margin-bottom: 25px;
  padding: 5px 20px;
  border: 1px solid #999;
  border-radius: 0;
  background-color: transparent;
}

.calculate-shipping form .nice-select::after {
  border-color: #707070;
}

.calculate-shipping form .nice-select .current {
  font-size: 14px;
  line-height: 24px;
  display: block;
  color: #707070;
}

.calculate-shipping form .nice-select .list {
  width: 100%;
}

.calculate-shipping form input {
  line-height: 24px;
  width: 100%;
  height: 36px;
  margin-bottom: 25px;
  padding: 5px 20px;
  color: #707070;
  border: 1px solid #999;
  border-radius: 0;
  background-color: transparent;
}

.calculate-shipping form input[type="submit"] {
  font-weight: 400;
  width: 140px;
  text-transform: uppercase;
  color: #fff;
  border-color: #292929;
  background-color: #292929;
}

.calculate-shipping form input[type="submit"]:hover {
  border-color: #e33;
  background-color: #e33;
}

/*-- Discount Coupon --*/

.discount-coupon h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 30px;
  text-decoration: underline;
  text-transform: capitalize;
}

.discount-coupon form input {
  line-height: 24px;
  width: 100%;
  height: 36px;
  margin-bottom: 25px;
  padding: 5px 20px;
  color: #707070;
  border: 1px solid #999;
  border-radius: 0;
  background-color: transparent;
}

.discount-coupon form input[type="submit"] {
  font-weight: 400;
  width: 140px;
  text-transform: uppercase;
  color: #fff;
  border-color: #292929;
  background-color: #292929;
}

.discount-coupon form input[type="submit"]:hover {
  border-color: #e33;
  background-color: #e33;
}

/*-- Cart Summary --*/

.cart-summary {
  float: right;
  width: 100%;
  max-width: 410px;
  margin-left: auto;
}

.cart-summary .cart-summary-wrap {
  margin-bottom: 20px;
  padding: 45px 50px;
  background-color: #f2f2f2;
}

.cart-summary .cart-summary-wrap h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 30px;
  text-decoration: underline;
  text-transform: capitalize;
}

.cart-summary .cart-summary-wrap p {
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  color: #292929;
}

.cart-summary .cart-summary-wrap p span {
  float: right;
}

.cart-summary .cart-summary-wrap h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  margin: 0;
  padding-top: 9px;
  color: #000;
  border-top: 1px solid #999;
}

.cart-summary .cart-summary-wrap h2 span {
  float: right;
}

.cart-summary .cart-summary-button {
  overflow: hidden;
  width: 100%;
}

.cart-summary .cart-summary-button button {
  line-height: 24px;
  float: right;
  width: 140px;
  height: 36px;
  margin-top: 10px;
  margin-left: 20px;
  padding: 5px 20px;
  color: #707070;
  border: 1px solid #999;
  border-radius: 0;
  background-color: transparent;
}

.cart-summary .cart-summary-button button:last-child {
  margin-left: 0;
}

.cart-summary .cart-summary-button button:hover {
  color: #fff;
  border-color: #e33;
  background-color: #e33;
}

.cart-summary .cart-summary-button button.checkout-btn {
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  border-color: #292929;
  background-color: #292929;
}

.cart-summary .cart-summary-button button.checkout-btn:hover {
  border-color: #e33;
  background-color: #e33;
}

/*=====  End of Cart  ======*/

/*=============================================
=            Checkout            =
=============================================*/

/*-- Checkout Title --*/

.checkout-title {
  color: #033147;
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 30px;
  text-decoration: underline;
  text-transform: capitalize;
}

/*-- Checkout Form --*/

.checkout-form label {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.checkout-form .nice-select {
  font-size: 14px;
  line-height: 23px;
  width: 100%;
  height: 45px;
  margin-bottom: 15px;
  padding: 10px 20px;
  color: #707070;
  border: 1px solid #999;
  border-radius: 0;
  background-color: #fff;
}

.checkout-form .nice-select::after {
  right: 20px;
  width: 6px;
  height: 6px;
  border-width: 1px;
  border-color: #707070;
}

.checkout-form .nice-select .current {
  line-height: 23px;
  display: block;
  color: #707070;
}

.checkout-form .nice-select .list {
  width: 100%;
}

.checkout-form input {
  font-size: 14px;
  line-height: 23px;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px 20px;
  color: #707070;
  border: 1px solid #999;
  border-radius: 0;
  background-color: #fff;
  appearance: auto;
}

.checkout-form input[type="checkbox"] {
  width: auto;
}

.checkout-form input[type="radio"] {
  width: auto;
}

.checkout-form .check-box {
  float: left;
  margin-right: 70px;
}

.checkout-form .check-box:last-child {
  margin-right: 0;
}

.checkout-form .check-box input[type="checkbox"] {
  display: none;
}

.checkout-form .check-box input[type="radio"] {
  display: none;
}

.checkout-form .check-box input[type="checkbox"] + label {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  margin: 0;
  padding-left: 30px;
  color: #292929;
}

.checkout-form .check-box input[type="radio"] + label {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  margin: 0;
  padding-left: 30px;
  color: #292929;
}

.checkout-form .check-box input[type="checkbox"] + label::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: 2px solid #999;
}

.checkout-form .check-box input[type="radio"] + label::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: 2px solid #999;
}

.checkout-form .check-box input[type="checkbox"] + label::after {
  font-family: Fontawesome;
  font-size: 12px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  content: "\f00c";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-align: center;
  opacity: 0;
  color: #292929;
}

.checkout-form .check-box input[type="radio"] + label::after {
  font-family: Fontawesome;
  font-size: 12px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  content: "\f00c";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-align: center;
  opacity: 0;
  color: #292929;
}

.checkout-form .check-box input[type="checkbox"]:checked + label::before {
  border: 2px solid #292929;
}

.checkout-form .check-box input[type="checkbox"]:checked + label::after {
  opacity: 1;
}

.checkout-form .check-box input[type="radio"]:checked + label::before {
  border: 2px solid #292929;
}

.checkout-form .check-box input[type="radio"]:checked + label::after {
  opacity: 1;
}

/*-- Shipping Form --*/

#shipping-form {
  display: none;
  margin-bottom: 40px;
}

#billing-form {
  margin-bottom: 40px;
}

/*-- Checkout Cart Total --*/

.checkout-cart-total {
  margin-bottom: 10px;
  padding: 25px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 0.5em;
}

.checkout-cart-total h4 {
  font-weight: 500;
  line-height: 23px;
  -webkit-flex-basis: 18px;
  -ms-flex-preferred-size: 18px;
  flex-basis: 18px;
}

.checkout-cart-total h4:first-child {
  margin-top: 0;
  margin-bottom: 25px;
}

.checkout-cart-total h4:last-child {
  margin-top: 15px;
  margin-bottom: 0;
}

.checkout-cart-total h4 span {
  display: block;
  float: right;
}

.checkout-cart-total ul {
  border-bottom: 1px solid #e2e2e2;
}

.checkout-cart-total ul li {
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  display: block;
  margin-bottom: 16px;
  color: #707070;
}

.checkout-cart-total ul li span {
  float: right;
  color: #ee3356;
}

.checkout-cart-total p {
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
  padding: 10px 0;
  color: #505050;
  border-bottom: 1px solid #999;
}

.checkout-cart-total p span {
  float: right;
}

/*-- Checkout Payment Method --*/

.checkout-payment-method {
  padding: 25px;
  background-color: #f2f2f2;
}

/*-- Single Payment Method --*/

.single-method {
  margin-bottom: 20px;
}

.single-method:last-child {
  margin-bottom: 0;
}

.single-method input[type="radio"] {
  display: none;
}

.single-method input[type="radio"] + label {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  margin: 0;
  padding-left: 30px;
  color: #292929;
}

.single-method input[type="radio"] + label::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: 2px solid #999;
}

.single-method input[type="radio"] + label::after {
  position: absolute;
  top: 5px;
  left: 5px;
  display: block;
  width: 10px;
  height: 10px;
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-align: center;
  opacity: 0;
  background-color: #292929;
}

.single-method input[type="radio"]:checked + label::before {
  border: 2px solid #292929;
}

.single-method input[type="radio"]:checked + label::after {
  opacity: 1;
}

.single-method input[type="checkbox"] {
  display: none;
}

.single-method input[type="checkbox"] + label {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  margin: 0;
  padding-left: 30px;
  color: #707070;
}

.single-method input[type="checkbox"] + label::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: 2px solid #999;
}

.single-method input[type="checkbox"] + label::after {
  position: absolute;
  top: 4px;
  left: 4px;
  display: block;
  width: 8px;
  height: 8px;
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-align: center;
  opacity: 0;
  background-color: #292929;
}

.single-method input[type="checkbox"]:checked + label::before {
  border: 2px solid #292929;
}

.single-method input[type="checkbox"]:checked + label::after {
  opacity: 1;
}

.single-method p {
  font-size: 14px;
  line-height: 23px;
  display: none;
  margin-top: 8px;
  color: #707070;
}

/*-- Place Order --*/

.place-order {
  font-weight: 400;
  line-height: 24px;
  float: left;
  width: 200px;
  height: 36px;
  margin-top: 1px;
  padding: 6px 20px;
  text-transform: uppercase;
  color: #fff;
  border: none;
  background-color: #033147;
}

.place-order:hover {
  background-color: #e33;
}

.place-order a:hover {
  color: #fff;
}
/* quantity selection */

.quantity-selection label {
  font-weight: 400;
  line-height: 54px;
  margin-right: 20px;
  margin-bottom: 0;
  color: #292929;
}

.quantity-selection input {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  width: 80px;
  height: 44px;
  padding: 0 20px;
  text-align: center;
  color: #000;
  border: 1px solid #e5e5e5;
  background: #fff;
  margin-top: -5px;
}

.quantity-selection input[type="number"]::-webkit-inner-spin-button,
.quantity-selection input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

/*=====  End of Checkout  ======*/
/*======================================
   Start Shop Blog CSS
========================================*/
.shop-blog.grid .shop-single-blog {
  margin-top: 30px;
}
.shop-blog .shop-single-blog {
  text-align: center;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.shop-blog .shop-single-blog:hover {
  box-shadow: 0px 10px 10px #0000000a;
}
.shop-blog .shop-single-blog img {
  height: 100%;
  width: 100%;
}
.shop-blog .shop-single-blog .content {
  padding: 15px;
}
.shop-blog .shop-single-blog .content .title {
  font-size: 17px;
  font-weight: 600;
  color: #333;
}
.shop-blog .shop-single-blog .content .title:hover {
  color: #b80007;
}
.shop-blog .shop-single-blog .content .date {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #b7b7b7;
}
.shop-blog .shop-single-blog .content .more-btn {
  font-size: 14px;
  font-weight: 400;
  color: #3c3c3c;
  margin-top: 10px;
  display: block;
}
.shop-blog .shop-single-blog .content .more-btn:hover {
  color: #f7941d;
}
.btn.btn-shop-blog {
  font-size: 11px !important;
  padding: 2px 8px !important;
  border: 1px solid #ccc;
  width: auto;
  height: auto;
  border-radius: 8px !important;
  background: var(--primary);
  color: #fff;
  font-family: "Poppins", sans-serif !important;
  font-weight: 500 !important;
  line-height: 24px !important;
  margin-top: 5px;
}
.btn.btn-shop-blog:hover {
  background: #b80007;
}
.is-sticky .main-menu-link::before {
  bottom: 5px;
}
/*======================================
  Detail Produk
========================================*/
.tc-breadcrumb ul {
  display: inline-block
}

.tc-breadcrumb li {
  float: left;
  color: #656565
}

.tc-breadcrumb li a {
  float: left;
  font-weight: 700
}

.tc-breadcrumb li::before {
  float: left;
  line-height: 22px;
  content: "\f3c1";
  font-family: remixicon!important;
  margin: 0 10px;
  font-size: 7px
}

.tc-breadcrumb li:first-child::before {
  display: none;
  margin: 0
}
.share-btn-container{
  display: flex;
  gap: 1rem;
  align-items: center;
}
.text-primary {
  --bs-text-opacity: 1;
  color: #ed6600 !important;
}
.quantity-box {
  overflow: hidden;
  margin: 0 0 20px
}

.quantity-box label {
  float: left;
  margin: 0 10px 0 0;
  line-height: 32px
}

.sp-minus {
  width: 40px;
  height: 40px;
  border: 1px solid #f2f2f2;
  float: left;
  text-align: center;
  color: #999;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.sp-input {
  width: 110px;
  height: 40px;
  border: 1px solid #f2f2f2;
  border-left: 0 solid #000;
  float: left;
  color: #000;
}

.sp-plus {
  width: 40px;
  height: 40px;
  border: 1px solid #f2f2f2;
  border-left: 0 solid #f2f2f2;
  float: left;
  text-align: center;
  color: #999;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.sp-input input {
  height: 100%;
  width: 100%;
  padding: 0;
  text-align: center;
  border: 0
}

.sp-input input:focus {
  border: 1px solid #f2f2f2;
  border: none
}

.sp-minus a,.sp-plus a {
  /* display: block;
  width: 100%;
  height: 100%;
  padding-top: 5px; */
  color: #999
}
.harga-discount {
  display: block;
  color: #555!important;
  font-size: .8em!important;
  margin-right: 5px!important;
  text-decoration: line-through!important
}
.tabs-nav ul li {
  margin: 0 0 6px
}

.tabs-nav ul li:last-child {
  margin: 0
}

.tabs-nav ul li a {
  padding: 15px 20px;
  background: #f9f9f9;
  font-weight: normal;
  display:block;
}

.disc-reviews-tabs .tabs-nav ul li.ui-tabs-active a {
  color: #fff
}

.description {
  margin: 0 0 60px
}

.description p:last-child {
  margin: 0
}

.description .check-list li::before {
  content: "\f046";
  margin: 0 10px 0 0;
  font-family: fontawesome
}

.description .check-list li {
  margin: 0 0 10px
}

.description .check-list li:last-child {
  margin: 0
}

.related-products .product-box {
  margin: 0!important
}

.single-boook-detail {
  margin: 0 0 60px
}

.disc-nd-Description .product-box {
  margin: 0 0 50px
}

.disc-nd-Description .rating-nd-price {
  border-top: 1px solid #e7e7e7;
  padding: 20px 0 0;
  border-bottom: 0
}

.disc-nd-Description .rating-nd-price-2 {
  padding: 20px 0 0;
  border-bottom: 0
}

.book-info-list ul li {
  margin: 0 0 10px
}

.book-info-list ul li:last-child {
  margin: 0
}

.book-info-list ul li span {
  font-weight: 700;
  margin: 0 5px 0 0
}

.book-list-widget {
  position: relative;
  padding: 30px;
  border: 1px solid #ececec;
  overflow: hidden;
  margin: 0 0 40px;
  width: 100%
}

.book-list-widget:last-child {
  margin: 0
}

.book-list-widget .detail {
  position: relative;
  padding: 0 0 0 145px;
  min-height: 165px
}

.book-list-widget .detail>span {
  font-size: 13px;
  display: block;
  margin: 0 0 10px
}

.book-list-widget .detail p:last-child {
  margin: 0
}

.book-list-detail>img {
  position: absolute
}

.book-list-detail {
  padding: 0 0 20px;
  border-bottom: 1px solid #ececec
}
.tab-aktif {
  background-color: #f9f9f9!important;
  color: #1d1819!important;
  font-weight: 700 !important;
}
.tabs-content div{
  scroll-margin-top: 19rem;
}
.slick-slide {
  margin: 0 10px;
}
.slick-track div{
  z-index:1 !important;
}
.w-100{
  width:100%;
}
.slick-slide img {
  width: 100%;
}
.thumb-produk{
  background: #fff;
}
.thumb-produk img{
  height: 75px !important;
  width: auto;
  margin: 0 auto;
  display:block;
}
#slider-utama .slick-slide img {
  width: auto !important;
  height: 330px;
  display: block;
  margin: 0 auto;
}
.btn-info{
  background-color:#3498DB;
  border-color:#3498DB;
}
.buttonLine {
  float: right;
  color: #b80007;
  padding: 0.5em 1.2em;
  border: solid 1px #b80007;
  border-radius: 20px;
}
.buttonLine:hover {
  background: #b80007;
  color: #f7f7f7;
  transition: all ease-in-out .3s;
}
.wrappers {
  width: 100%;
  margin: 2em auto;
}
.a2a_svg {
  display: block;
  overflow: hidden;
  height: 25px !important;
  line-height: 25px !important; 
  padding: 0;
  pointer-events: none;
  width: 25px  !important;
}
.btn.btn-shop-blog {
  color: #b80007;
}
.btn.btn-shop-blog:hover {
  color: #fff;
}
/*======================================
  Paging
========================================*/
.pages,.wp-pagenavi a {
  color: #000;
  background-color: #fff
}
.wp-pagenavi {
  font-size: initial;
  padding: 5px 0;
  margin: 5px auto 80px;
  line-height: 45px;
  float: left
}

.current-pag,.pages {
  width: auto;
  height: auto
}

.pages {
  margin: 0 3px;
  border: 1px solid #e9e9e9;
  padding: 8px
}

.current-pag,.wp-pagenavi a:hover {
  background-color: #000;
  border: 1px solid #e9e9e9;
  color: #fff
}

.current-pag {
  margin: 0 3px 0 0;
  padding: 8px
}

.wp-pagenavi a {
  text-decoration: none;
  border: 1px solid #e9e9e9;
  padding: 8px;
  margin: 5px 0
}

.image-container {
  position: relative;
  width: auto;
  /*height: 140px;*/
  /*margin: 20px; */
}
.curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiIgd2lkdGg9IjMyIiBoZWlnaHQ9IjMyIiBmaWxsPSJ3aGl0ZSI+CiAgPHBhdGggZD0iTTAgNCBMMCAyOCBMMzIgMjggTDMyIDQgeiBNNCAyNCBMMTAgMTAgTDE1IDE4IEwxOCAxNCBMMjQgMjR6IE0yNSA3IEE0IDQgMCAwIDEgMjUgMTUgQTQgNCAwIDAgMSAyNSA3Ij48L3BhdGg+Cjwvc3ZnPg==")
    no-repeat center hsl(228deg 26.32% 96.27%);
  background-size: calc(100% / 3);
  overflow: hidden;
  z-index: 2;
}

.image-container,
.curtain {
  min-height: 164px;
  height: 100%;
}

.shine {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: linear-gradient(-90deg, #efefef 0%, #fcfcfc 50%, #efefef 100%);
  background-size: 400% 400%;
  -webkit-animation: shine 1.3s infinite;
  animation: shine 1.3s infinite;
  opacity: 0.8;
}
.product-box .product-image .product-option {
  z-index: 3;
}
.product-image .image-container .lazyloaded{
  display:none;
}
.curtain img{
  transition: 0.3s;
  background: linear-gradient(-90deg, #efefef 0%, #fcfcfc 50%, #efefef 100%);
  background-size: 400% 400%;
  -webkit-animation: shine 1.3s infinite;
  animation: shine 1.3s infinite;
  opacity: 0.8;
  height: 140px !important;
  padding: 10px;
}

.hide-gbr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiIgd2lkdGg9IjMyIiBoZWlnaHQ9IjMyIiBmaWxsPSJ3aGl0ZSI+CiAgPHBhdGggZD0iTTAgNCBMMCAyOCBMMzIgMjggTDMyIDQgeiBNNCAyNCBMMTAgMTAgTDE1IDE4IEwxOCAxNCBMMjQgMjR6IE0yNSA3IEE0IDQgMCAwIDEgMjUgMTUgQTQgNCAwIDAgMSAyNSA3Ij48L3BhdGg+Cjwvc3ZnPg==) no-repeat center hsl(228deg 26.32% 96.27%); */
  background-size: calc(100% / 3);
  overflow: hidden;
  z-index: 2;
  background-color:#edeef2;
}

@-webkit-keyframes shine {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: -135% 0%;
  }
}
@keyframes shine {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: -135% 0%;
  }
}
/*--------------------------------------------------------------
# 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;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: #fff;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

@media (min-width: 992px) {
  .col-lg-20 {
    flex: 0 0 auto;
    width: 20%;
  }
}
.curtain img{
    object-fit: none !important;
}
.product-box .product-image {
    margin-bottom: 10px;
}
#slider-utama .curtain img {
    object-fit: contain !important;
}
.entry-footer {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
}
.entry-footer {
  margin-top: 10px;
}
.entry-footer {
  padding-left: 0;
  padding-right: 182px;
}
.entry-footer>span {
  display: inline-block;
  font-size: 0.6666em;
  line-height: 1.49;
  color: #999;
  font-style: italic;
}
.entry-footer .cat-tags {
  font-size: 0.6666em;
  color: #333;
  letter-spacing: 1px;
}
.entry-footer>span a {
  display: inline-block;
  color: #999;
  text-transform: uppercase;
  font-style: normal;
}
.entry-footer .cat-tags a {
  color: #333;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.05);
  padding: 6px 15px;
  margin-right: 2px;
  margin-bottom: 5px;
  text-decoration: none;
}

.owl-carousel {
    display: block;
}
 
.owl-carousel .slide-owl-wrap:not(:first-child) {
    display: none;
}
 
.owl-carousel img {
    width: 100%;
}
.whatsApp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 15px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsApp:hover{
    color:#fff;
}

.kuik .modal-header {
    border-bottom: none;
}
.desc-modal{
    max-height:180px;
    overflow-y:auto;
    margin-bottom:20px;
}
.rego{
    display:none;
}
 .specialku , .specialku strong, .rego, .rego strong{
    color:#1d1819;
    font-weight:normal;
    font-size:14px;
 }
 
 
 .spek table{
      margin-bottom:0;
  }
  
    .paberat{
        width:175px
    }
    
    
    
.u-label--purple {
    color: #b80007;
    background-color: rgb(184 0 7 / 10%);
}
.u-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.625rem 1.125rem;
    border-radius: 6.1875rem;
    transition: 0.2s ease-in-out;
}
.faq .card-header {
    padding: 1rem 1.25rem;
    margin-bottom: 0;
    background-color: #fff;
    border-bottom: none;
}
.faq .card-collapse__header {
    padding: 0;
    background-color: transparent;
    transition: 0.3s ease-in-out;
}
.faq .card-header:first-child {
    border-radius: 0.25rem 0.25rem 0 0;
}
.faq .card-collapse {
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    background-color: transparent;
}

.faq .btn-link{
    text-decoration: none;
}

.faq .accordion-button:not(.collapsed) {
    color: #b80007;
    background-color: #fff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
.faq .accordion-button:focus {
    z-index: 3;
    border-color: #fff;
    outline: 0;
    box-shadow: none;
}
.faq .accordion-item {
    background-color: #fff;
    border-bottom: 2px solid rgba(0,0,0,.125);
}

.wrap-sub-pr{
    min-width:15%;
}
@media (min-width: 1500px) {
    .image-container,
    .curtain {
      min-height: 200px;
    }
    .paberat{
        width:204px
    }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none;
  }
  

}

@media (max-width: 768px) {
    
  .image-container, .curtain {
    min-height: 155px;
  }
  .section-title {
    margin-bottom: 30px;
    padding: 0px;
  }
  .hide-mobile {
    display: none;
  }

  .header-midel-area {
    background-color: #b80007;
  }

  .header-midel-area .logo a img {
    height: 40px;
  }
  .header-midel-area .logo {
    text-align: start !important;
  }
  .header-midel-area .ri-menu-line {
    color: #fff;
    font-size: 28px;
  }

  .header-midel-area .row {
    justify-content: space-between;
  }
  .mensur {
    text-align: end;
  }
  .wrap-footer-menu {
    margin-top: 20px;
  }
  .gap-copyright {
    gap: 20px;
    text-align: center;
  }
  .btn-md {
    padding: 7px 20px;
  }

  .wrap-icon{
    position: absolute;
    top: 32%;
    right: 8%;
    width: 40%;
  }
  .wrap-icon i, .wrap-icon a span{
    color:#fff;
  }

  .header-midel-area {
    position: relative;
  }

  .rego{
      display:block;
  }
  .ndelik{
      display:none;
  }
  .availability{
      display:none;
  }
  
  .wrap-sub-pr{
    min-width:30%;
 }
 
 .register-button3 {
    width: 100%;
}
  
}
