@charset "UTF-8";
/**
 * SIDEBAR
 */
aside {
  margin-bottom: 24px;
  position: relative;
}

aside.widget_related {
  position: sticky;
  top: 6px;
}

.widget-head {
  position: relative;
  font-family: var(--primary-Font);
  margin-bottom: 16px;
}
.widget-head .title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 0;
}

.wigget_panel {
  position: relative;
  font-family: var(--primary-Font);
  margin-bottom: 12px;
}
.wigget_panel .title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
  padding: 11px 20px;
  line-height: 20px;
  position: relative;
  background: var(--primary-Color);
}

.widget_content .filter-term {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget_content .filter-term > li {
  display: block;
  position: relative;
  margin-bottom: 12px;
}
.widget_content .filter-term > li:last-child {
  margin-bottom: 0;
}
.widget_content .filter-term > li > a {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding-left: 24px;
  color: #000;
  line-height: 20px;
}
.widget_content .filter-term > li > a > i {
  height: 15px;
  width: 15px;
  border: 1px solid #333;
  position: absolute;
  left: 0;
  top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.widget_content .filter-term > li > a > i::before {
  content: "";
  background-image: url("../images/icon/icx-check.png");
  height: 10px;
  width: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
  filter: brightness(0) invert(1);
}
.widget_content .filter-term > li > a:hover {
  color: var(--second-Color);
}
.widget_content .filter-term > li > a:hover > i {
  border-color: #000;
  background: #000;
}
.widget_content .filter-term > li > a:hover > i::before {
  display: block;
}
.widget_content .filter-term > li.active > a {
  color: var(--second-Color);
}
.widget_content .filter-term > li.active > a > i {
  border-color: #000;
  background: #000;
}
.widget_content .filter-term > li.active > a > i::before {
  display: block;
}
.widget_content .filter-price {
  position: relative;
}
.widget_content .filter-price .price-range-box {
  width: 100%;
  margin-bottom: 10px;
  max-width: 400px;
}
.widget_content .filter-price .price-range-box .slider-container {
  position: relative;
  height: 16px;
  margin-bottom: 10px;
}
.widget_content .filter-price .price-range-box .slider-container input[type=range] {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none; /* không bắt sự kiện chuột */
  -webkit-appearance: none;
  background: none;
}
.widget_content .filter-price .price-range-box .slider-container input[type=range]::-webkit-slider-thumb {
  pointer-events: all; /* chỉ thumb bắt sự kiện */
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--second-Color);
  cursor: pointer;
  -webkit-appearance: none;
}
.widget_content .filter-price .price-range-box .slider-container input[type=range]::-moz-range-thumb {
  pointer-events: all;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--second-Color);
  cursor: pointer;
}
.widget_content .filter-price .price-range-box .slider-container .slider-track {
  position: absolute;
  height: 6px;
  border-radius: 3px;
  background: #ddd;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: -1;
}
.widget_content .filter-price .price-range-box .price-values {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.widget_content .filter-price > button {
  padding: 2px 10px;
  border-radius: 4px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  display: inline-block;
  color: #fff;
  background: #000;
  cursor: pointer;
}
.widget_content .filter-color {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.widget_content .filter-color > li {
  position: relative;
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 8px;
}
.widget_content .filter-color > li > input {
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 0;
  font-size: 0;
  z-index: -999;
  opacity: 0;
  visibility: hidden;
  margin: 0;
  padding: 0;
}
.widget_content .filter-color > li > label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  cursor: pointer;
}
.widget_content .filter-color > li > label > span {
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-top: -2px;
}
.widget_content .filter-color > li > label > span::after {
  content: "";
  background-image: url("../images/icon/icx-check.png");
  height: 18px;
  width: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
  filter: brightness(0) invert(1);
}
.widget_content .filter-color > li > input:checked ~ label > span::after {
  display: block;
}
.widget_content .category-term {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget_content .category-term > li {
  display: block;
  position: relative;
  padding: 9px 0;
}
.widget_content .category-term > li:last-child {
  margin-bottom: 0;
}
.widget_content .category-term > li > a {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  padding-left: 24px;
  color: #000;
  line-height: 20px;
}
.widget_content .category-term > li > a > i {
  height: 15px;
  width: 15px;
  border: 1px solid #333;
  position: absolute;
  left: 0;
  top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.widget_content .category-term > li > a > i::before {
  content: "";
  background-image: url("../images/icon/icx-check.png");
  height: 10px;
  width: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
  filter: brightness(0) invert(1);
}
.widget_content .category-term > li > a:hover {
  color: var(--second-Color);
}
.widget_content .category-term > li > a:hover > i {
  border-color: #000;
  background: #000;
}
.widget_content .category-term > li > a:hover > i::before {
  display: block;
}
.widget_content .category-term > li.active > a {
  color: var(--second-Color);
}
.widget_content .category-term > li.active > a > i {
  border-color: #000;
  background: #000;
}
.widget_content .category-term > li.active > a > i::before {
  display: block;
}
.widget_content .list-related {
  list-style: none;
  padding: 8px 0 0;
  margin: 0;
}
.widget_content .list-related > li {
  display: flex;
  align-items: center;
  position: relative;
  padding: 9px 0;
}
.widget_content .list-related > li .image {
  flex: 0 0 34%;
  max-width: 34%;
}
.widget_content .list-related > li .image a {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  width: 100%;
  padding-bottom: 68%;
}
.widget_content .list-related > li .image a img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.widget_content .list-related > li .info {
  flex: 0 0 66%;
  max-width: 66%;
  padding-left: 14px;
}
.widget_content .list-related > li .info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.widget_content .list-related > li .info h4 a {
  color: #000;
}
.widget_content .list-related > li .info h4 a:hover {
  color: var(--second-Color);
}
.widget_content .list-related > li .info .date {
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
}
.widget_content .gallery-list {
  list-style: none;
  padding: 0;
  margin: 0 -4px;
  display: flex;
  flex-wrap: wrap;
}
.widget_content .gallery-list > li {
  padding: 4px 4px;
  position: relative;
  flex: 0 0 33.33334%;
  max-width: 33.33334%;
}
.widget_content .gallery-list > li > a {
  display: block;
  padding-bottom: 68%;
  position: relative;
  width: 100%;
  background-position: center;
}
.widget_content .gallery-list > li > a img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}/*# sourceMappingURL=sidebar.css.map */