/**
 * SIDEBAR CATEGORY
 */
aside {
  margin-bottom: 24px;
  background: #FFF;
  border-top: 0;
  position: relative;
  border-radius: 0px;
  padding: 0;
  overflow: hidden;
}
aside:last-child {
  margin-bottom: 0;
}

aside.widget-sticky {
  position: sticky;
  top: 20px;
}

.widget-title {
  position: relative;
  font-family: var(--primary-Font);
}
@media (min-width: 992px) {
  .widget-title {
    display: none;
  }
}
.widget-title .title {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  padding: 11px 16px 11px;
  line-height: 22px;
  background: var(--primary-Color);
  display: block;
  padding-right: 36px;
  position: relative;
  letter-spacing: 0.5px;
}
.widget-title .title > i {
  height: 18px;
  width: 18px;
  position: absolute;
  background-image: url("../images/svg/icv-down.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease 0s;
  display: block;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
}
.widget-title.open .title i {
  transform: translateY(-50%) rotate(180deg);
}

.widget-panel {
  position: relative;
  font-family: var(--primary-Font);
}
.widget-panel .title {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  padding: 16px 24px 16px;
  line-height: 20px;
  background: #000;
  display: block;
}

.widget_head {
  position: relative;
  font-family: var(--primary-Font);
}
.widget_head .title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: var(--primary-Color);
  padding: 16px 24px 16px;
  line-height: 20px;
  display: block;
  text-transform: uppercase;
}

.widget_box .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ddd;
}
@media (max-width: 991px) {
  .widget_box .service-list {
    display: none;
  }
}
.widget_box .service-list > li {
  display: block;
  position: relative;
  border-bottom: 1px solid #ddd;
}
.widget_box .service-list > li > a {
  padding: 16px 20px;
  display: block;
  position: relative;
  line-height: 22px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #000;
  border-left: 3px solid transparent;
  transition: all 0.3s ease 0s;
  background: transparent;
}
.widget_box .service-list > li > a::after {
  content: "";
  height: 12px;
  width: 6px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  background: var(--primary-Color);
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
}
.widget_box .service-list > li:hover > a {
  border-left-color: var(--primary-Color);
}
.widget_box .service-list > li:hover > a::after {
  opacity: 1;
  visibility: visible;
}
.widget_box .service-list > li:last-child {
  border-bottom: 0;
}
.widget_box .service-list > li.active > a {
  border-left-color: var(--primary-Color);
  background: #ddd;
}
.widget_box .service-list > li.active > a::after {
  opacity: 1;
  visibility: visible;
}
.widget_box .recent-box {
  list-style: none;
  padding: 16px 16px 24px;
  margin: 0;
}
.widget_box .recent-box > li {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px dotted #dfdfdf;
}
.widget_box .recent-box > li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.widget_box .recent-box > li .thumb {
  min-width: 100px;
  max-width: 100px;
}
.widget_box .recent-box > li .thumb a {
  position: relative;
  padding-bottom: 75%;
  width: 100%;
  display: block;
  background-position: center;
  overflow: hidden;
  border-radius: 8px;
}
.widget_box .recent-box > li .thumb 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_box .recent-box > li .info {
  flex: 1;
  padding-left: 16px;
}
.widget_box .recent-box > li .info h3 {
  font-size: 1.02em;
  font-weight: 500;
  margin-bottom: 0;
}
.widget_box .recent-box > li .info h3 a {
  color: #333;
}
.widget_box .recent-box > li .info h3 a:hover {
  color: var(--primary-Color);
}
.widget_box .review-box {
  list-style: none;
  padding: 16px 24px 24px;
  margin: 0;
}
.widget_box .review-box > li {
  display: block;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dotted #ddd;
}
.widget_box .review-box > li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.widget_box .review-box > li .video {
  position: relative;
  padding-bottom: 56.29%;
  display: block;
  width: 100%;
}
.widget_box .review-box > li .video iframe {
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
}
.widget_box .review-box > li h4 {
  padding-top: 12px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
  color: #000;
}

.widget_content {
  font-family: "Arial", "Helvetica", sans-serif;
  position: relative;
}
.widget_content .support {
  list-style: none;
  padding: 10px 15px;
  margin: 0;
  border: 1px solid #06c;
  border-radius: 5px;
}
.widget_content .support > li {
  display: block;
  padding: 5px 0;
}
.widget_content .support > li > span {
  display: block;
  font-weight: 14px;
  font-weight: 600;
  color: #06c;
  margin-bottom: 2px;
}
.widget_content .support > li p {
  margin-bottom: 0;
  font-size: 13px;
}
.widget_content .param {
  border: 2px solid #06c;
  border-radius: 5px;
  padding: 10px;
}
.widget_content .param > h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 7px;
}
.widget_content .param table {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  width: 100%;
}
.widget_content .param table tbody tr td {
  width: 50%;
  border: 1px solid #ddd;
  padding: 5px 9px;
}
.widget_content .param .price {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.widget_content .param .price span {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  position: relative;
}
.widget_content .param .price span.reg {
  color: #e00;
  font-size: 27px;
  font-style: italic;
  font-weight: 700;
  z-index: 1;
  margin-right: 25px;
  text-shadow: 2px 5px 10px #b4b4b4;
}
.widget_content .param .price span.reg i {
  font-weight: 700;
  display: block;
}
.widget_content .param .price span.reg b {
  font-weight: 700;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  text-shadow: 3px 0 0 #fff, -3px 0 0 #fff, 0 3px 0 #fff, 0 -3px 0 #fff, 2px 2px #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
}
.widget_content .param .price span.old {
  text-decoration: line-through;
}
.widget_content .param .submit a {
  display: block;
  width: 100%;
  font-size: 18px;
  text-transform: uppercase;
  background: #fd6e1d;
  background: -o-linear-gradient(top, #f59000, #fd6e1d);
  border-radius: 5px;
  padding: 10px 5px;
  text-align: center;
  outline: none;
  cursor: pointer;
  border: 0;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}
.widget_content .param .submit a > span {
  display: block;
  font-size: 12px;
  font-weight: normal;
  text-transform: none;
}
.widget_content .param .submit p {
  background: #e6e6e6;
  padding: 10px 10px;
  border: 1px solid #808080;
  border-radius: 4px;
  color: #ff1d25;
  line-height: 18px;
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 0;
}
.widget_content .recents {
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
}
.widget_content .recents > li {
  display: block;
  position: relative;
  padding: 5px 0;
}
.widget_content .recents > li > a {
  display: block;
  color: #0c68df;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-left: 14px;
  line-height: 1.1;
}
.widget_content .recents > li > a::before {
  height: 7px;
  width: 7px;
  background: #333;
  border-radius: 100%;
  left: 0;
  top: 7px;
  position: absolute;
  content: "";
}
.widget_content .recents > li > a:hover {
  color: #ffb600;
}
.widget_content .products {
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
}
.widget_content .products > li {
  display: block;
  padding: 10px 0;
}
.widget_content .products > li .inner {
  display: flex;
  align-items: center;
}
.widget_content .products > li .inner .info {
  flex: 1;
  padding-left: 15px;
}
.widget_content .products > li .inner .info h4 {
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}
.widget_content .products > li .inner .info h4 a {
  color: #333;
}
.widget_content .products > li .inner .info h4 a:hover {
  color: #ffb600;
}
.widget_content .products > li .inner .info .price-group {
  display: flex;
  align-items: center;
}
.widget_content .products > li .inner .info .price-group span {
  font-size: 16px;
  font-weight: 600;
  color: red;
}
.widget_content .products > li .inner .info .price-group span.old {
  text-decoration: line-through;
  color: #000;
  font-size: 14px;
}
.widget_content .products > li .inner .info .price-group span.reg {
  margin-right: 10px;
}
.widget_content .products > li .inner .thumb {
  max-width: 70px;
  min-width: 70px;
}
.widget_content .products > li .inner .thumb > a {
  display: block;
}
.widget_content .products > li .inner .thumb > a img {
  width: 100%;
  height: auto;
  box-shadow: 0px 0px 5px 0px #aaa;
}
.widget_content .other_list {
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border: 2px solid #bc002d;
}
.widget_content .other_list > li {
  position: relative;
  padding: 5px;
  min-height: 55px;
}
.widget_content .other_list > li > i {
  position: absolute;
  left: 10px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 100%;
  color: #bc002d;
  font-size: 25px;
}
.widget_content .other_list > li .name {
  padding-left: 55px;
}
.widget_content .other_list > li .name > h4 {
  font-size: 15px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.5;
  color: #333;
}
.widget_content .other_list > li .name > h4 > b {
  color: red;
}
.widget_content .category_list {
  list-style: none;
  padding: 0px 0;
  margin: 0;
  border: 1px solid #ccc;
  border-top: 0;
}
.widget_content .category_list > li {
  display: block;
  padding: 0;
  margin: 0;
  position: relative;
}
.widget_content .category_list > li > a {
  display: block;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
  padding: 10px 20px;
  color: #333;
}
.widget_content .category_list > li i.arrow {
  position: absolute;
  right: 10px;
  top: 6px;
  font-size: 17px;
  padding: 5px;
  cursor: pointer;
}
.widget_content .category_list > li ul {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 200px;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px 0px #eee;
  list-style: none;
  padding: 0;
  left: 100%;
  top: 0;
  z-index: 9;
}
.widget_content .category_list > li ul > li {
  display: block;
  position: relative;
  padding: 0 10px;
}
.widget_content .category_list > li ul > li > a {
  font-size: 14px;
  display: block;
  white-space: nowrap;
  padding: 10px 15px;
  color: #333;
  border-bottom: 1px solid #ccc;
}
.widget_content .category_list > li ul > li:hover > a {
  color: #bc002d;
  text-decoration: underline;
}
.widget_content .category_list > li ul > li:hover > ul {
  display: block;
}
.widget_content .category_list > li ul > li:last-child > a {
  border-bottom: 0;
}
.widget_content .category_list > li:hover > a {
  color: #bc002d;
  text-decoration: underline;
}
.widget_content .category_list > li:hover > ul {
  display: block;
}
.widget_content .category_list > li:last-child > a {
  border-bottom: 0;
}
.widget_content .bestseller_box {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  border-top: 0;
}
.widget_content .bestseller_box > li {
  padding: 11px 10px;
  border-bottom: 1px solid #ccc;
}
.widget_content .recent_box {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  border-top: 0;
}
.widget_content .recent_box > li {
  padding: 11px 10px;
  border-bottom: 1px solid #ccc;
}/*# sourceMappingURL=sidebar.css.map */