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

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

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

.widget_content .menu-list {
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
}
.widget_content .menu-list > li {
  display: block;
  position: relative;
}
.widget_content .menu-list > li a {
  display: block;
  padding: 10px 10px;
  line-height: 20px;
  border-bottom: 1px solid #e1e1e1;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease 0s;
}
.widget_content .menu-list > li a:hover {
  background: var(--primary-Color);
  color: #fff;
}
.widget_content .product-list {
  list-style: none;
  padding: 0px 0 0;
  margin: 0;
  border: 1px solid #e1e1e1;
}
.widget_content .product-list > li {
  display: block;
  padding: 20px 10px;
  border-bottom: 1px dotted #e1e1e1;
}
.widget_content .product-list > li .box {
  display: flex;
  align-items: center;
}
.widget_content .product-list > li .box .image {
  max-width: 100px;
  min-width: 100px;
}
.widget_content .product-list > li .box .image a {
  display: block;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
  background-position: center;
}
.widget_content .product-list > li .box .image 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%;
}
.widget_content .product-list > li .box .info {
  padding-left: 12px;
  flex: 1;
}
.widget_content .product-list > li .box .info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}
.widget_content .product-list > li .box .info h4 a {
  color: #000;
}
.widget_content .product-list > li .box .info .price {
  display: flex;
  align-items: center;
  gap: 5px;
}
.widget_content .product-list > li .box .info .price span {
  font-size: 16px;
  color: red;
  font-weight: 600;
  line-height: 1.2;
}
.widget_content .product-list > li .box .info .price span.px-old {
  font-size: 14px;
  font-weight: 400;
  text-decoration: line-through;
  color: #999;
}
.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: 6px 0;
}
.widget_content .list-related > li .image {
  flex: 0 0 40%;
  max-width: 40%;
}
.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 60%;
  max-width: 60%;
  padding-left: 14px;
}
.widget_content .list-related > li .info h4 {
  font-size: 14px;
  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(--primary-Color);
}
.widget_content .list-related > li .info .date {
  font-size: 15px;
  font-weight: 400;
}/*# sourceMappingURL=sidebar.css.map */