/** shop-sidebar **/

.shop-sidebar {
  position: relative;
}

.shop-sidebar .sidebar-widget {
  position: relative;
  display: block;
  border-bottom: 1px solid #E5E5E5;
}

.shop-sidebar .sidebar-widget:last-child {
  border-bottom: none;
}

.shop-sidebar .sidebar-widget .widget-title {
  position: relative;
  display: block;
}

.shop-sidebar .sidebar-widget .widget-title h3 {
  font-size: 18px;
  line-height: 24px;
  background: var(--theme-color);
  color: #fff;
  padding: 13px 25px;
  min-height: 50px;
  border-radius: 5px 5px 0 0;
  margin: 0;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .shop-sidebar .category-widget .widget-title {
    cursor: pointer;
  }

  .shop-sidebar .category-widget .category-list {
    display: none;
  }

  .shop-sidebar .category-widget.mobile-open .category-list {
    display: block;
  }
}

.shop-sidebar .sidebar-widget .widget-title h3:after {
  content: none;
}

.shop-sidebar .search-widget .search-inner {
  position: relative;
  display: block;
}

.shop-sidebar .search-widget .search-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.shop-sidebar .search-widget .search-inner .form-group .select-box {
  min-height: 50px;
}

.shop-sidebar .search-widget .search-inner .form-group .select-box .nice-select {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  background: #F3F3F3;
  line-height: 54px;
  padding: 0px 20px;
  font-size: 16px;
  color: var(--title-color);
  border-radius: 5px;
  text-transform: capitalize;
}

.shop-sidebar .search-widget .search-inner .form-group .select-box .nice-select:before {
  color: var(--title-color);
  right: 20px;
}

.shop-sidebar .search-widget .search-inner .message-btn .theme-btn {
  background: var(--title-color);
  color: #fff;
  width: 100%;
}

.shop-sidebar .category-widget .accordion {
  position: relative;
}

.shop-sidebar .category-widget .accordion .acc-btn {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--title-color);
  padding-left: 28px;
  padding-right: 30px;
  cursor: pointer;
}

.shop-sidebar .category-widget .accordion .acc-btn:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  border-color: #DDDDDD;
  background: transparent;
}

.shop-sidebar .category-widget .accordion .acc-btn:after {
  position: absolute;
  content: '';
  left: 2px;
  top: 10px;
  width: 11px;
  height: 9px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../images/icons/icon-2.png);
  opacity: 0;
}

.shop-sidebar .category-widget .accordion .acc-btn.active:after {
  opacity: 1;
}



.shop-sidebar .category-widget .accordion .acc-btn .icon-box {
  position: absolute;
  content: '';
  right: 0px;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  border-color: #DDDDDD;
  font-size: 14px;
  color: #DDDDDD;
  text-align: center;
  background: transparent;
  font-weight: 600;
}



.shop-sidebar .category-widget .accordion .acc-btn .icon-box:before {
  position: absolute;
  content: '+';
  text-align: center;
  width: 16px;
  height: 16px;
  line-height: 10px;
  left: 0px;
  top: 0px;
  right: 0px;
}

.shop-sidebar .category-widget .accordion .acc-btn.active .icon-box:before {
  content: '-';
  font-size: 30px;
  font-weight: 400;
  line-height: 4px;
}

.shop-sidebar .category-widget .accordion .acc-content {
  padding-left: 27px;
  margin-bottom: 10px;
}

.price-range-slider {
  position: relative;
  width: 100%;
}

.price-range-slider .range-value {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

.price-range-slider .range-value span {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: var(--title-color);
  margin-right: 5px;
}

.price-range-slider .range-value input {
  width: 100%;
  background: none;
  font-size: 14px;
  line-height: 24px;
  font-family: var(--text-font);
  font-weight: 500;
  color: var(--title-color);
  box-shadow: none;
  border: none;
}

.price-range-slider .range-bar {
  border: none;
  height: 4px;
  width: 100%;
  background: rgba(255, 107, 0, 0.20);
  border-radius: 30px;
}



.price-range-slider .ui-slider-handle {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 4px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.10);
  top: -8px;
}

.price-range-slider .btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-range-slider .btn-box .clear-btn {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: var(--title-color);
  text-decoration: underline;
  transition: all 500ms ease;
}



.price-range-slider .btn-box .theme-btn {
  padding: 8px 20px;
  color: #fff;
}

.price-range-slider .btn-box .theme-btn span {
  background: var(--title-color);
}

.shop-sidebar .category-list li {
  position: relative;
  display: block;
}

.shop-sidebar .review-widget .category-list li label i {
  font-size: 16px;
  margin-right: 7px;
  color: #FFC844;
}

.shop-sidebar .review-widget .category-list li label i.light {
  color: #D3D3D3;
}


/** rtl-css **/

.rtl .shop-sidebar .search-widget .search-inner .form-group .select-box .nice-select:before {
  right: inherit;
  left: 20px;
}

.rtl .shop-sidebar .category-widget .accordion .acc-btn:before {
  left: inherit;
  right: 0px;
}

.rtl .shop-sidebar .category-widget .accordion .acc-btn .icon-box {
  right: inherit;
  left: 0px;
}

.rtl .shop-sidebar .category-widget .accordion .acc-btn:after {
  left: inherit;
  right: 2px;
}

/** responsive-css **/

@media only screen and (max-width: 1600px) {}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 599px) {}

@media only screen and (max-width: 499px) {}













































/* Premium Sidebar Category Menu */

.shop-sidebar .category-widget .widget-content {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  padding: 0;
  overflow: visible;
}

.shop-sidebar .category-widget .widget-content .widget-title {
  margin: 0;
}

.shop-sidebar .category-list {
  position: relative;
  padding: 6px 0 10px 0;
  margin: 0;
  list-style: none;
}

.shop-sidebar .category-list>li {
  position: relative;
  display: block;
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 400ms ease;
}

.shop-sidebar .category-list>li:last-child {
  border-bottom: none;
}

.shop-sidebar .category-list>li>a {
  position: relative;
  display: block;
  padding: 12px 25px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--title-color);
  font-family: var(--title-font);
  transition: all 400ms ease;
  z-index: 1;
}

.shop-sidebar .category-list>li>a:hover {
  color: var(--theme-color);
  background: #fafafa;
  padding-left: 35px;
  /* Subtle slide in */
}

.shop-sidebar .category-list>li>a:before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--theme-color);
  transition: all 400ms ease;
}

.shop-sidebar .category-list>li>a:hover:before {
  height: 100%;
}

.shop-sidebar .category-list>li.has-children>a:after {
  position: absolute;
  content: ">";
  font-family: inherit;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 700;
  color: #999;
  transition: transform 300ms ease;
}

.shop-sidebar .category-list>li.has-children>.category-submenu-toggle {
  display: none;
  position: absolute;
  right: 10px;
  top: 8px;
  width: 40px;
  height: 40px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.shop-sidebar .category-list>li.submenu-open>a:after {
  transform: translateY(-50%) rotate(90deg);
}

.shop-sidebar .category-list>li.active>a:before {
  height: 100%;
}

.shop-sidebar .category-list>li.active>a {
  color: var(--theme-color);
  background: #fafafa;
  padding-left: 35px;
}

.shop-sidebar .category-list .list-inner .single-column ul li.active a {
  color: var(--theme-color);
  font-weight: 600;
  padding-left: 5px;
}


/* Flyout Submenu Styles */
.shop-sidebar .category-list .list-inner {
  position: absolute;
  left: 100%;
  top: -11px;
  /* Match the padding/border start of container */
  width: auto;
  min-width: 250px;
  max-width: 400px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);
  transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  padding: 15px 20px;
  border-radius: 0 5px 5px 0;
  border-left: 4px solid var(--theme-color);
}

.shop-sidebar .category-list>li.category-dropdown:hover .list-inner {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.shop-sidebar .category-list .list-inner .inner-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  overflow: visible;
}

.shop-sidebar .category-list .list-inner .single-column {
  flex: 0 0 100%;
  padding: 0;
  margin-bottom: 0;
}

.shop-sidebar .category-list .list-inner .single-column p {
  font-size: 18px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 15px;
  border-bottom: 2px solid #f4f4f4;
  padding-bottom: 10px;
  font-family: var(--title-font);
}

.shop-sidebar .category-list .list-inner .single-column ul li {
  margin-bottom: 5px;
}

.shop-sidebar .category-list .list-inner .single-column ul li:last-child {
  margin-bottom: 0;
}

.shop-sidebar .category-list .list-inner .single-column ul li a {
  font-size: 15px;
  color: var(--text-color);
  line-height: 28px;
  transition: all 300ms ease;
  white-space: nowrap;
}

.shop-sidebar .category-list .list-inner .single-column ul li a:hover {
  color: var(--theme-color);
  padding-left: 5px;
}

/* Shop Block in Flyout */
.shop-sidebar .category-list .list-inner .shop-block {
  margin-top: 20px;
  width: 100%;
  border-top: 1px solid #f4f4f4;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fdfdfd;
  padding: 20px;
  border-radius: 5px;
}

.shop-sidebar .category-list .list-inner .shop-block h2 {
  font-size: 22px;
  margin-bottom: 5px;
}

.shop-sidebar .category-list .list-inner .shop-block .link {
  font-weight: 600;
  color: var(--theme-color);
  text-decoration: underline;
}

@media only screen and (max-width: 991px) {
  .shop-sidebar .category-list>li.has-children>a {
    padding-right: 56px;
  }

  .shop-sidebar .category-list>li.has-children>.category-submenu-toggle {
    display: none;
  }

  .shop-sidebar .category-list .list-inner {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
    padding: 0 18px 14px;
    background: #fafafa;
    box-shadow: none;
    border-left: 0;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    display: none;
  }

  .shop-sidebar .category-list>li.submenu-open .list-inner {
    display: block;
  }

  .shop-sidebar .category-list>li.category-dropdown:hover .list-inner {
    transform: none;
  }

  .shop-sidebar .category-list .list-inner .inner-box {
    display: block;
  }

  .shop-sidebar .category-list .list-inner .single-column {
    width: 100%;
  }

  .shop-sidebar .category-list .list-inner .single-column ul li {
    margin-bottom: 0;
  }

  .shop-sidebar .category-list .list-inner .single-column ul li a {
    display: block;
    padding: 9px 0 9px 12px;
    line-height: 1.5;
    white-space: normal;
  }

  .shop-sidebar .category-list .list-inner .single-column ul li.active a {
    padding-left: 12px;
  }
}

@media only screen and (max-width: 1200px) {
  .shop-sidebar .category-list .list-inner {
    width: 600px;
    padding: 25px;
  }

  .shop-sidebar .category-list .list-inner .single-column {
    flex: 0 0 50%;
  }
}

@media only screen and (max-width: 991px) {
  .shop-sidebar .category-list .list-inner {
    width: 100%;
    padding: 0 18px 14px;
  }

  .shop-sidebar .category-list .list-inner .single-column {
    flex: 0 0 100%;
  }
}
