.ova-service-ajax {
  display: flex;
  gap: 35px;
}
@media (max-width: 1025px) {
  .ova-service-ajax {
    flex-direction: column;
  }
}
.ova-service-ajax .service-cat-list-wrapper {
  width: 40%;
  display: flex;
  gap: 15px;
}
@media (max-width: 1025px) {
  .ova-service-ajax .service-cat-list-wrapper {
    width: 100%;
  }
}
.ova-service-ajax .service-cat-list-wrapper .service-cat-list {
  transition: all 0.3s ease;
  width: 100%;
  border-right: 1px solid #f2f2f1;
}
.ova-service-ajax .service-cat-list-wrapper .service-cat-list .item-link {
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text);
  padding: 12px;
  border-radius: 4px 0 0 4px;
}
.ova-service-ajax .service-cat-list-wrapper .service-cat-list .item-link:after {
  transition: all 0.3s ease;
  position: absolute;
  content: "";
  right: 100%;
  top: 0;
  display: block;
  width: 4px;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
}
.ova-service-ajax .service-cat-list-wrapper .service-cat-list .item-link:hover:after {
  right: 100%;
  opacity: 1;
  visibility: visible;
}
.ova-service-ajax .service-cat-list-wrapper .service-cat-list .item-link.active-category {
  color: #fff;
  background-color: var(--primary);
}
.ova-service-ajax .service-cat-list-wrapper .service-cat-list .item-link.active-category:after {
  content: none;
}
.ova-service-ajax .service-cat-list-wrapper .service-cat-child-list {
  display: none;
}
.ova-service-ajax .service-cat-list-wrapper .service-cat-child-list .item-link {
  color: var(--heading);
  padding: 12px 18px;
}
.ova-service-ajax .service-cat-list-wrapper .service-cat-child-list .item-link:before {
  transition: all 0.3s ease;
  position: absolute;
  content: "";
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}
.ova-service-ajax .service-cat-list-wrapper .service-cat-child-list .item-link.active-category {
  color: #fff;
}
.ova-service-ajax .service-ajax-results-wrapper {
  width: 60%;
  position: relative;
  display: flex;
  gap: 35px;
}
@media (max-width: 1025px) {
  .ova-service-ajax .service-ajax-results-wrapper {
    width: 100%;
  }
}
.ova-service-ajax .service-ajax-results-wrapper .ova-sev-loader {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.ova-service-ajax .service-ajax-results-wrapper .service-post-list-wrapper {
  width: 100%;
}
.ova-service-ajax .service-ajax-results-wrapper .service-post-list-wrapper .service-category-name {
  position: relative;
  margin: 0 0 24px 0;
  font-size: 24px;
  line-height: 1.5;
}
.ova-service-ajax .service-ajax-results-wrapper .service-post-list-wrapper .service-category-name:after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  display: block;
  width: 48px;
  height: 4px;
  background: var(--primary);
  border-radius: 999px;
}
.ova-service-ajax .service-ajax-results-wrapper .service-post-list-wrapper .service-post-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ova-service-ajax .service-ajax-results-wrapper .service-post-list-wrapper .service-post-list .item-link {
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 6px;
  padding: 15px;
  border-bottom: 1px solid #f2f2f1;
}
.ova-service-ajax .service-ajax-results-wrapper .service-post-list-wrapper .service-post-list .item-link:hover {
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px 0 rgba(7, 7, 60, 0.1);
  border-bottom: 1px solid transparent;
}
.ova-service-ajax .service-ajax-results-wrapper .service-post-list-wrapper .service-post-list .item-link:hover .title {
  text-decoration: underline;
}
.ova-service-ajax .service-ajax-results-wrapper .service-post-list-wrapper .service-post-list .item-link .title-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.ova-service-ajax .service-ajax-results-wrapper .service-post-list-wrapper .service-post-list .item-link .title-wrap i {
  display: inline-flex;
  font-size: 14px;
  color: var(--text);
  transform: rotate(-45deg);
}
.ova-service-ajax .service-ajax-results-wrapper .service-post-list-wrapper .service-post-list .item-link .title {
  margin: 0 0 6px 0;
  font-size: 18px;
  line-height: 1.3;
}
.ova-service-ajax .service-ajax-results-wrapper .service-post-list-wrapper .service-post-list .item-link .desc {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text);
}

.ova-sev-loader {
  text-align: center;
  margin-bottom: 30px;
}
.ova-sev-loader .loader {
  margin: 0 auto;
  width: 35px;
  height: 35px;
  border: 5px solid;
  border-color: var(--primary) transparent;
  border-radius: 50%;
  display: none;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.ova-sev-loader .loader.is-active {
  display: inline-block;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}