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

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

.widget_head {
  position: relative;
  font-family: var(--primary-Font);
}
.widget_head .title {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
  padding: 11px 16px;
  line-height: 20px;
  text-align: center;
  position: relative;
  border-radius: 4px 4px 0 0;
  background: #F1F3F4;
}

.widget_content {
  border: 1px solid #dfdfdf;
  border-top: 0;
  background: #fff;
}
.widget_content .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget_content .menu-list > li {
  display: block;
  padding: 5px 10px 5px 30px;
  font-size: 15px;
  position: relative;
  border-bottom: 1px solid #ececec;
}
.widget_content .menu-list > li > a {
  font-size: 15px;
  display: inline-block;
  padding: 6px 0;
  color: #333;
}
.widget_content .menu-list > li > a svg {
  position: absolute;
  left: 10px;
  top: 14px;
  fill: var(--second-Color);
}
.widget_content .menu-list > li > a:hover {
  color: var(--primary-Color);
}
.widget_content .menu-list > li ul {
  position: absolute;
  left: 100%;
  top: 0;
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 9;
  width: 250px;
  background: #fff;
  border-left: 1px solid var(--primary-Color);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .widget_content .menu-list > li ul {
    position: relative;
    left: 0;
    top: 0;
    border-left: 0;
    width: 100%;
  }
}
.widget_content .menu-list > li ul > li {
  display: block;
  position: relative;
  padding: 5px 10px 5px 16px;
  border-bottom: 1px solid #ececec;
}
@media (max-width: 991px) {
  .widget_content .menu-list > li ul > li {
    background: #f4f4f4;
    padding: 5px 10px;
  }
}
.widget_content .menu-list > li ul > li > a {
  font-size: 14px;
  display: inline-block;
  padding: 6px 0;
  color: #333;
}
.widget_content .menu-list > li ul > li > a:hover {
  color: var(--second-Color);
}
.widget_content .menu-list > li ul > li:hover > ul {
  display: block;
}
.widget_content .menu-list > li ul > li:last-child {
  border-bottom: 0;
}
.widget_content .menu-list > li:last-child {
  border-bottom: 0;
}
@media (min-width: 1024px) {
  .widget_content .menu-list > li:not(.in-active):hover {
    background: var(--primary-Color);
  }
  .widget_content .menu-list > li:not(.in-active):hover > a {
    color: #fff;
  }
  .widget_content .menu-list > li:not(.in-active):hover > a svg {
    fill: #fff;
  }
  .widget_content .menu-list > li:not(.in-active):hover > ul {
    display: block;
  }
}
.widget_content .menu-list > li.in-active > a {
  color: var(--primary-Color);
  font-weight: 500;
}
.widget_content .menu-list > li.in-active > a svg {
  fill: var(--second-Color);
}
.widget_content .menu-list > li.in-active > ul {
  display: block;
}
.widget_content .support-box {
  padding: 12px 12px;
  position: relative;
}
.widget_content .support-box .support-item {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #cecece;
}
.widget_content .support-box .support-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.widget_content .support-box .support-item p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.widget_content .support-box .support-item p > i {
  max-width: 32px;
  min-width: 32px;
  display: block;
  height: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.widget_content .support-box .support-item p span {
  font-size: 16px;
  font-weight: 600;
}
.widget_content .support-box .support-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.widget_content .post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget_content .post-list > li {
  display: flex;
  align-items: center;
  position: relative;
  padding: 12px;
  border-bottom: 1px solid #d8d8d8;
}
.widget_content .post-list > li .image {
  min-width: 50px;
  max-width: 50px;
}
.widget_content .post-list > li .image a {
  position: relative;
  padding-bottom: 100%;
  display: block;
  width: 100%;
}
.widget_content .post-list > 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 .post-list > li .info {
  flex: 1;
  max-width: 100%;
  padding-left: 12px;
}
.widget_content .post-list > li .info h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
}
.widget_content .post-list > li .info h4 a {
  color: #000;
}
.widget_content .post-list > li .info h4 a:hover {
  color: var(--primary-Color);
}
.widget_content .post-list > li .info .date {
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  color: #898989;
}/*# sourceMappingURL=sidebar.css.map */