/**
 * SIDEBAR
 */
aside {
  margin-bottom: 24px;
  position: relative;
}

.wigget_panel {
  position: relative;
  font-family: var(--primary-Font);
}
.wigget_panel .title {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 10px;
  padding: 10px 20px;
  line-height: 20px;
  position: relative;
  border-radius: 6px;
  background: var(--fourth-Color);
}

.widget_head {
  position: relative;
  font-family: var(--primary-Font);
}
.widget_head .title {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  padding: 10px 20px;
  line-height: 20px;
  position: relative;
  border-radius: 6px;
  background: linear-gradient(60deg, var(--second-Color), var(--third-Color));
}

.widget_content .menu-term {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget_content .menu-term > li {
  display: block;
  position: relative;
}
.widget_content .menu-term > li > a {
  display: block;
  padding: 11px 12px;
  padding-left: 23px;
  position: relative;
  border-bottom: 1px solid #e9e9e9;
  line-height: 20px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}
.widget_content .menu-term > li > a svg {
  position: absolute;
  left: 0;
  top: 14px;
  fill: var(--second-Color);
}
.widget_content .menu-term > li > a:hover {
  color: var(--primary-Color);
}
.widget_content .menu-term > li > a:hover svg {
  fill: var(--primary-Color);
}
.widget_content .filter-term {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget_content .filter-term > li {
  display: block;
  position: relative;
}
.widget_content .filter-term > li input {
  top: 12px;
  left: 12px;
  opacity: 0;
  visibility: hidden;
  z-index: -999;
  position: absolute;
}
.widget_content .filter-term > li label {
  display: block;
  position: relative;
  padding: 10px 12px;
  padding-left: 40px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  cursor: pointer;
}
.widget_content .filter-term > li label i {
  height: 16px;
  width: 16px;
  position: absolute;
  left: 12px;
  top: 12px;
  background: #e9e9e9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
}
.widget_content .filter-term > li label i::after {
  content: "";
  background-image: url("../images/svg/icn-check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 8px;
  width: 8px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0;
  visibility: hidden;
}
.widget_content .filter-term > li input:checked ~ label {
  color: var(--primary-Color);
}
.widget_content .filter-term > li input:checked ~ label i {
  background: var(--primary-Color);
}
.widget_content .filter-term > li input:checked ~ label i::after {
  opacity: 1;
  visibility: visible;
}
.widget_content .post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget_content .post-list > li {
  display: flex;
  align-items: center;
  position: relative;
  padding: 14px 0;
  border-bottom: 1px solid #d8d8d8;
}
.widget_content .post-list > li .image {
  min-width: 68px;
  max-width: 68px;
}
.widget_content .post-list > li .image a {
  position: relative;
  padding-bottom: 100%;
  display: block;
  width: 100%;
}
.widget_content .post-list > 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 .post-list > li .info {
  flex: 1;
  max-width: 100%;
  padding-left: 12px;
}
.widget_content .post-list > li .info h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
}
.widget_content .post-list > li .info h4 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #000;
}
.widget_content .post-list > li .info h4 a:hover {
  color: var(--primary-Color);
}
.widget_content .post-list > li .info .meta {
  display: flex;
  align-items: center;
  margin-top: 2px;
}
.widget_content .post-list > li .info .meta > span {
  padding-right: 10px;
  margin-right: 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-style: italic;
  color: #666;
  text-transform: capitalize;
  font-weight: 300;
}
.widget_content .post-list > li .info .meta > span svg {
  height: 16px;
  width: 16px;
  fill: #666;
}
.widget_content .post-list > li .info .meta > span::after {
  content: "";
  position: absolute;
  right: 0;
  height: 13px;
  width: 1px;
  background: #888;
  top: 3px;
}
.widget_content .post-list > li .info .meta > span:last-child {
  padding-right: 0;
  margin-right: 0;
}
.widget_content .post-list > li .info .meta > span:last-child::after {
  display: none;
}
.widget_content .product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget_content .product-list > li {
  display: flex;
  align-items: center;
  position: relative;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 6px;
  margin-bottom: 10px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
}
.widget_content .product-list > li:last-child {
  margin-bottom: 0;
}
.widget_content .product-list > li .image {
  min-width: 70px;
  max-width: 70px;
}
.widget_content .product-list > li .image a {
  position: relative;
  padding-bottom: 100%;
  display: block;
  width: 100%;
}
.widget_content .product-list > 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 .product-list > li .info {
  flex: 1;
  max-width: 100%;
  padding-left: 12px;
}
.widget_content .product-list > li .info h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
}
.widget_content .product-list > li .info h4 a {
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.widget_content .product-list > li .info h4 a:hover {
  color: var(--primary-Color);
}
.widget_content .product-list > li .info .price span {
  font-size: 13px;
  font-weight: 700;
  color: #ED4646;
}
.widget_content .banner-box img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}/*# sourceMappingURL=sidebar.css.map */