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

.wigget_panel {
  position: relative;
  font-family: var(--primary-Font);
}
.wigget_panel .title {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  padding: 11px 16px;
  line-height: 20px;
  text-align: center;
  position: relative;
  border-radius: 4px;
  background: var(--primary-Color);
}

.widget_head {
  position: relative;
  font-family: var(--primary-Font);
}
.widget_head .title {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
  padding: 11px 16px;
  line-height: 20px;
  text-align: center;
  position: relative;
  border-radius: 4px;
  background: #F1F3F4;
}

.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: 18px;
  position: relative;
  border-bottom: 1px solid #d9d9d9;
  line-height: 20px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}
.widget_content .menu-term > li > a::after {
  content: "";
  height: 6px;
  width: 6px;
  position: absolute;
  left: 0;
  top: 18px;
  background: var(--second-Color);
  border-radius: 100%;
}
.widget_content .menu-term > li > a:hover {
  color: var(--primary-Color);
}
.widget_content .menu-term > li > a:hover::after {
  background: 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: 15px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
}
.widget_content .filter-term > li label i {
  height: 16px;
  width: 16px;
  position: absolute;
  left: 12px;
  top: 12px;
  background: #d9d9d9;
  border-radius: 3px;
  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 .video-box {
  position: relative;
}
.widget_content .video-box > a {
  display: block;
  position: relative;
  overflow: hidden;
}
.widget_content .video-box > a picture {
  display: block;
  overflow: hidden;
  padding-bottom: 66.75%;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background-position: center;
}
.widget_content .video-box > a picture img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  height: 100%;
  width: 100%;
}
.widget_content .video-box > a span {
  height: 44px;
  width: 44px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  background: #ED4646;
  display: flex;
  align-items: center;
  justify-content: center;
}
.widget_content .video-box > a span::after {
  content: "";
  height: 24px;
  width: 18px;
  background: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  display: block;
  margin-left: 6px;
}
.widget_content .post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget_content .post-list > li {
  display: flex;
  align-items: center;
  position: relative;
  padding: 12px;
  border-bottom: 1px solid #d8d8d8;
}
.widget_content .post-list > li .image {
  min-width: 50px;
  max-width: 50px;
}
.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 {
  color: #000;
}
.widget_content .post-list > li .info h4 a:hover {
  color: var(--primary-Color);
}
.widget_content .post-list > li .info .date {
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  color: #898989;
}
.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 */