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

aside.widget {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: 10px;
  padding: 16px;
}

.wigget_panel {
  position: relative;
  font-family: var(--primary-Font);
  margin-bottom: 16px;
}
.wigget_panel .title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 0;
  border-bottom: 1px solid #ddd;
}
.wigget_panel .title span {
  position: relative;
  display: inline-block;
  padding: 10px 0 10px;
}
.wigget_panel .title span::after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  background: var(--primary-Color);
  left: 0;
  bottom: -1px;
}

.widget_content .search-box {
  position: relative;
}
.widget_content .search-box form {
  border: 1px solid #f0f0f0;
  background: #fff;
  border-radius: 12px;
  padding: 3px;
  display: flex;
}
.widget_content .search-box form input {
  border: 0;
  outline: none;
  padding: 10px 10px;
  width: 100%;
  flex: 0 1 auto;
  background: transparent;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}
.widget_content .search-box form button {
  outline: none;
  border: 0;
  background: var(--primary-Color);
  color: #fff;
  height: 40px;
  width: 50px;
  flex: 50px;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.widget_content .search-box form button i {
  height: 20px;
  width: 20px;
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
}
.widget_content .product-list {
  list-style: none;
  padding: 0px 0 0;
  margin: 0;
}
.widget_content .product-list > li {
  display: block;
  margin-bottom: 18px;
}
.widget_content .product-list > li:last-child {
  margin-bottom: 0;
}
.widget_content .product-list > li .box {
  display: flex;
  align-items: center;
}
.widget_content .product-list > li .box .image {
  max-width: 60px;
  min-width: 60px;
}
.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: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
.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: 12px;
  color: red;
  font-weight: 600;
  line-height: 1.2;
}
.widget_content .product-list > li .box .info .price span.px-old {
  font-size: 12px;
  font-weight: 400;
  text-decoration: line-through;
  color: #999;
}
.widget_content .social-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.widget_content .social-box a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #ffdada;
  border: 1px solid #ff9e9e;
}
.widget_content .social-box a svg {
  height: 21px;
  width: 21px;
  fill: var(--primary-Color);
  stroke: var(--primary-Color);
}
.widget_content .social-box a:hover {
  background: var(--primary-Color);
}
.widget_content .social-box a:hover svg {
  fill: #fff;
  stroke: #fff;
}
.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;
}
.widget_content .banner-img img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}/*# sourceMappingURL=sidebar.css.map */