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

.wigget_panel {
  position: relative;
  font-family: var(--primary-Font);
  padding-bottom: 16px;
}
.wigget_panel .title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
  line-height: 24px;
  position: relative;
}
.wigget_panel .title::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #01a652;
  left: 0;
  bottom: 0;
}

.widget_content .search-box {
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  background-color: #ffffff;
  padding: 15px;
}
.widget_content .search-box form {
  position: relative;
}
.widget_content .search-box form input {
  background-color: transparent;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  transition: 0.6s;
}
.widget_content .search-box form button {
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  z-index: 1;
  border: none;
  color: #ffffff;
  background-color: #01a652;
  transition: 0.6s;
  position: absolute;
}
.widget_content .category-list {
  position: relative;
  padding: 0px;
  margin: 0;
}
.widget_content .category-list > li {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  border-top: dotted 1px #ddd;
  padding: 0.5rem 0;
  padding-left: 14px;
}
.widget_content .category-list > li::before {
  background: #01a652;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.widget_content .category-list > li > a {
  display: block;
  color: #000;
  word-wrap: break-word;
}
.widget_content .category-list > li > a:hover {
  color: var(--primary-Color);
}
.widget_content .category-list > li:first-child {
  border-top: 0;
}
.widget_content .recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget_content .recent-list > li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  align-items: center;
}
.widget_content .recent-list > li .thumb {
  min-width: 80px;
  max-width: 80px;
}
.widget_content .recent-list > li .thumb a {
  display: block;
  position: relative;
  background-position: center;
  padding-bottom: 100%;
  width: 100%;
  overflow: hidden;
}
.widget_content .recent-list > li .thumb a img {
  transition: all 0.3s ease-in-out;
  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 .recent-list > li .thumb a:hover img {
  transform: scale(1.06);
}
.widget_content .recent-list > li .info .date {
  color: #6A6A6A;
  font-size: 13px;
}
.widget_content .recent-list > li .info h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
}
.widget_content .recent-list > li .info h3 a {
  color: #000;
}
.widget_content .recent-list > li .info h3 a:hover {
  color: var(--primary-Color);
}
.widget_content .tag-cloud {
  list-style: none;
  padding: 0px;
  margin: 0;
  font-size: 0;
}
.widget_content .tag-cloud > li {
  display: inline-block;
  position: relative;
  font-size: 14px;
}
.widget_content .tag-cloud > li > a {
  color: #000;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: block;
  margin-right: 8px;
  margin-bottom: 6px;
  border: 1px solid #ddd;
}
.widget_content .tag-cloud > li > a:hover {
  background: var(--primary-Color);
  border-color: var(--primary-Color);
  color: #fff;
}/*# sourceMappingURL=sidebar.css.map */