.kb-header button {
  right: 7px;
  top: 6px;
}

.kb-search input::placeholder {
  font-size: 1rem;
}

.kb-categories .kb-effect, .kb-question .kb-effect {
  transition: all .4s ease;
}

.kb-categories .kb-effect:hover, .kb-question .kb-effect:hover {
  color: #5A8DEE !important;
  margin-left: .5rem;
}

.kb-ellipsis {
  
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (min-width: 1024px) {
  .kb-header {
    padding: 5rem 0 !important;
  }
}

@media only screen and (max-width: 767px) {
  .kb-search .kb-search-width {
    width: 100% !important;
  }
  .kb-sidebar {
    
    box-shadow: -8px 12px 18px 0 rgba(25, 42, 70, 0.8);
    height: 100%;
    width: 260px;
    background-color: #FFFFFF;
    position: fixed;
    transform: translateX(-105%);
    transition: all .3s ease;
    z-index: 12;
    left: 0rem;
    top: 4.49rem;
    padding: 1.2rem 0 0 1.1rem;
  }
  .kb-sidebar.show {
    transform: translateX(0%);
  }
  .kb-sidebar .kb-close-icon {
    
    position: absolute;
    top: 12px;
    right: 5px;
  }
  .kb-sidebar .kb-close-icon:focus {
    outline: none;
  }
  .kb-overlay {
    
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 11;
    visibility: hidden;
  }
  .kb-overlay.show {
    visibility: visible;
    transition: all .3s ease;
    background-color: rgba(0, 0, 0, 0.2);
  }
}

@media only screen and (max-width: 576px) {
  .kb-title {
    font-size: 1.73rem;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  
  .kb-ellipsis {
    max-height: 67.5px;
  }
}