/**
 * SIDEBAR
 */
aside {
  margin-bottom: 24px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
}

.wigget_panel {
  position: relative;
  font-family: var(--primary-Font);
}
.wigget_panel .title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-Color);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.widget_content .menu-list {
  list-style: none;
  padding: 0px 10px 0;
  margin: 0;
}
.widget_content .menu-list > li {
  display: block;
  position: relative;
}
.widget_content .menu-list > li > a {
  display: block;
  padding: 10px 0px;
  line-height: 20px;
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease 0s;
}
.widget_content .menu-list > li > a:hover {
  color: var(--primary-Color);
}
.widget_content .menu-list > li > ul {
  list-style: none;
  padding: 0 0 0 0px;
  margin: 0;
}
.widget_content .menu-list > li > ul > li {
  display: block;
}
.widget_content .menu-list > li > ul > li > a {
  display: block;
  padding: 8px 0px;
  padding-left: 16px;
  line-height: 20px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  transition: all 0.3s ease 0s;
  border-bottom: 1px solid #f0f0f0;
}
.widget_content .menu-list > li > ul > li > a:hover {
  color: var(--primary-Color);
}
.widget_content .menu-list > li > ul > li > a::after {
  content: "";
  height: 6px;
  width: 6px;
  position: absolute;
  left: 0px;
  top: 14px;
  background: var(--second-Color);
  display: block;
}
.widget_content .list-product {
  list-style: none;
  padding: 0px 0 0;
  margin: 0;
}
.widget_content .list-product > li {
  display: block;
  padding: 12px 0px;
  border-bottom: 1px dotted #e1e1e1;
}
.widget_content .list-product > li .box {
  display: flex;
  align-items: center;
}
.widget_content .list-product > li .box .image {
  max-width: 70px;
  min-width: 70px;
}
.widget_content .list-product > li .box .image a {
  display: block;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
  background-position: center;
  background: #f6f6f6;
  border-radius: 8px;
  box-shadow: 0px 0px 0px 1px #efefef;
  overflow: hidden;
}
.widget_content .list-product > 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 .list-product > li .box .info {
  padding-left: 12px;
  flex: 1;
}
.widget_content .list-product > li .box .info h4 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
}
.widget_content .list-product > li .box .info h4 a {
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.widget_content .list-product > li .box .info .price {
  display: flex;
  align-items: center;
  gap: 5px;
}
.widget_content .list-product > li .box .info .price span {
  font-size: 16px;
  color: red;
  font-weight: 600;
  line-height: 1.2;
}
.widget_content .list-product > li .box .info .price span.px-old {
  font-size: 14px;
  font-weight: 400;
  text-decoration: line-through;
  color: #999;
}
.widget_content .list-recent {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.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 */