#generateSearch {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: inherit;
  }
  
  #generateSearch ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  #generateSearch ul li {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
  }
  
  #generateSearch h3 {
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
    color: inherit;
    margin: 0;
  }
  
  #generateSearch {
    .global_search_main_container {
      padding: 20px;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      margin: 0 auto;
      font-family: inherit;
      width:100%;
  
    }
  
    .all-result {
      padding-bottom: 10px;
    }
  #no_result_found{width:100%;text-align: center;}
    .global_search_main_container h5 {
      margin: 0px;
    }
  
    .articles_heading {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin: auto;
      margin-bottom: 20px;
      color: #434343;
      column-gap: 15px;
  
      h3 {
        font-size: 22px;
        font-weight: 600;
        width: max-content;
      }
  
      div {
        width: 100%;
        border: 1px solid #ccd1d7;
        height: 0px;
        flex: 3;
        position: relative;
      }
  
      div .line_dot {
        display: block;
        border-radius: 50%;
        height: 10px;
        width: 10px;
        background-color: #555555;
        position: absolute;
        right: -1px;
        top: 50%;
        transform: translateY(-50%);
      }
    }
  
    .filter_container {
      display: flex;
      margin-top: 80px;
    }
  
    .filter_container span {
      display: block;
      margin-bottom: 15px;
      font-weight: 600;
    }
  
    .website_list {
      display: flex;
      column-gap: 20px;
      justify-content: center;
      align-items: center;
    }
  
    .articles_container {
      display: flex;
      column-gap: 0px;
    }
  
    .ad_image {
      width: auto;
      height: fit-content;
      border-radius: 5px;
    }
  
    .website_list_items {
      display: flex;
      column-gap: 20px;
      justify-content: center;
      align-items: center;
    }
  
    .website_favicon_span {
      cursor: pointer;
      transition: transform 0.25s;
    }
  
    .website_favicon_span:hover {
      /* transform: scale(1.1); */
    }
  
    .website_favicon_active {
      transform: scale(1.3);
    }
  
    .load_more_container,.custom_load_more_container {
      text-align: center;
      margin-top: 15px;
    }
  
    .load_more_btn {
      background-color: white;
      border: 1px solid #c00;
      color: #c00;
      font-size: 16px;
      font-weight: 500;
      border-radius: 5px;
      padding: 8px 15px;
      cursor: pointer;
    }
  
    .load_more_btn:hover {
      color: white;
      background-color: #c00;
    }
  
    @media only screen and (max-width: 575.98px) {
      .articles_container {
        column-gap: 0;
      }
  
      .website_list {
        flex-direction: column;
        row-gap: 10px;
      }
  
      .website_list_items {
        column-gap: 10px;
      }
  
      .articles_heading {
        font-size: 20px;
        width: 100%;
      }
  
      .filter_container {
        margin-top: 55px;
      }
    }
  
    .header_container {
      position: absolute;
      display: flex;
      padding: 20px 0;
      background-color: white;
      width: 100%;
      box-shadow: 1px 1px 3px #00000026;
      border-top: 1px solid #e2e2e2;
      border-bottom: 1px solid #e2e2e2;
      border-left: 1px solid #e2e2e2;
      justify-content: center;
      align-items: center;
      border-radius: 5px;
      top: 0px;
      z-index: 11;
    }
  
    .header_inner_search_container {
      display: flex;
      justify-content: space-between;
    }
  
    .header_searchBar_form {
      width: 100%;
      position: relative;
      border-radius: 5px;
      display: flex;
      /* box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px; */
    }
  
    .header_searchBar_input {
      width: 96%;
      border: none;
      outline: none;
      font-size: 22px;
      border-radius: 5px 0 0 5px;
      padding: 10px 30px 10px 20px;
    }
  
    .header_searchBar_input::placeholder {
      color: #cbcbcb;
    }
  
    .header_searchBar_btn {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
      border: none;
      background-color: #5A5858;
      color: white;
      font-weight: 500;
      border-radius: 0 5px 5px 0;
      cursor: pointer;
      font-size: 18px;
      padding: 0px 20px;
      height: 100%;
    }
  
    .header_mic_icon_btn {
      background: none;
      border: none;
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      display: none;
      height: 29px;
    }
    .header_mic_icon_btn svg path{fill: #000;}
    .header_logo {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .header_logo img {
      height: 80px;
    }
  
    .header_filter_icon {
      border: 0;
      border-radius: 3px;
      margin-left: 10px;
      cursor: pointer;
      background: #eaeaea;
      width: 42px;
      height: 40px;
      flex-shrink: 0;
      display: grid;
      place-content: center;
    }
    .header_filter_icon svg{fill: #000;}
    .header_search_container {
      display: flex;
      flex-direction: column;
      margin: 0px 20px;
      width: 100%;
    }
  
    .header_bottom_container {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      background-color: #eaeaea;
      border-radius: 0px 0px 5px 5px;
      /* overflow: hidden; */
      transition: all 0.25s ease-in-out;
      /* height: auto !important; */
    }
  
    .header_bottom_container button {
      background: #2C2C2C;
      color: #fff;
      font-size: 16px;
      border: 1px solid #b9b9b9;
      border-left: none;
      cursor: pointer;
      padding: 5px 15px;
      border-radius: 5px;
      margin-left: 26px;
    }
  
    .header_top_inner_container {
      display: flex;
      align-items: center;
      /* justify-content: space-between; */
      padding: 10px;
      /* background-color: #eaeaea; */
      width: 100%;
      row-gap: 15px;
      flex-wrap: wrap;
      border-radius: 5px 5px 0 0;
    }
  
    .header_bottom_inner_container {
      display: flex;
      align-items: center;
      /* justify-content: space-between; */
      padding: 10px;
      /* background-color: #ddd; */
      width: 100%;
      flex-wrap: wrap;
      row-gap: 15px;
      border-radius: 0 0 5px 5px;
    }
  
    .header_inner_top_left_container {
      display: flex;
      align-items: center;
      gap: 5px;
      margin-right: 30px;
      width: 42%;
    }
  
    .header_inner_top_left_container ul {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      flex-wrap: wrap;
    }
  
    .header_inner_top_left_container ul {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      width: 100%;
      overflow-y: scroll !important;
      flex-direction: row;
    }
  
    .header_inner_top_right_container {
      display: flex;
      align-items: center;
      gap: 5px;
      width: 42%;
    }
  
    .header_more_btn {
      font-family: inherit;
      text-transform: capitalize;
      display: flex;
      border: none;
      background: none;
      align-items: center;
      justify-content: space-between;
      font-size: 16px;
      column-gap: 5px;
      cursor: pointer;
      padding: 5px 15px 5px;
      border-radius: 5px;
      border: none;
      background-color: transparent;
      color: #494949;
      width: 100%;
      max-width: -webkit-fill-available;
    }
  
    .header_more_btn img {
      height: 5px;
    }
  
    .header_websites_container {
      position: relative;
      background-color: white;
      border-radius: 2px;
      min-width: 240px;
      width: 100%;
      /* background-color: white; */
    }
  
    /* .header_websites_container:hover .header_websites_list {
          max-height: 265px;
          z-index: 10;
          border-radius: 2px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
            rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          padding: 10px;
          align-items: flex-start;
          overflow-y: auto;
        } */
  
    .header_websites_list_active {
      max-height: 265px !important;
      z-index: 10 !important;
      border-radius: 2px !important;
      box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px !important;
      padding: 10px !important;
      align-items: flex-start !important;
      overflow-y: auto !important;
    }
  
    .header_websites_container a {
      text-decoration: none;
    }
  
    .header_websites_container svg {
      height: 10px;
      width: 20px;
    }
  
    .header_websites_list {
      font-family: inherit;
      margin: 0;
      list-style-type: none;
      display: flex;
      flex-direction: column;
      row-gap: 5px;
      max-height: 0px;
      overflow: hidden;
      position: absolute;
      top: 100%;
      background-color: white;
      min-width: 100px;
      width: 100%;
      row-gap: 5px;
    }
  
  
    .header_websites_list::-webkit-scrollbar {
      width: 7px;
    }
  
    .header_websites_list::-webkit-scrollbar-thumb {
      border-radius: 100px;
      background-color: #c00;
      box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
    }
  
    .header_websites_list::-webkit-scrollbar-track {
      background-color: #f9f9f9;
      border-radius: 100px;
    }
  
  
  
  
  
    .header_websites_list li {
      display: flex;
      align-items: center;
      column-gap: 5px;
      font-size: 14px;
      flex-wrap: wrap;
      width: 100%;
    }
  
    /* sfdglrjl */
  
    .inputarea {
      display: block;
      position: relative;
      padding-left: 35px;
      margin-bottom: 12px;
      cursor: pointer;
      font-size: 22px;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }
  
    /* Hide the browser's default checkbox */
    .inputarea input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
    }
  
    /* Create a custom checkbox */
    .checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 18px;
      width: 18px;
      background-color: #eee;
    }
  
    /* On mouse-over, add a grey background color */
    .inputarea:hover input~.checkmark {
      background-color: #ccc;
    }
  
    /* When the checkbox is checked, add a blue background */
    .inputarea input:checked~.checkmark {
      background-color: #2196F3;
    }
  
    /* Create the checkmark/indicator (hidden when not checked) */
    .checkmark:after {
      content: "";
      position: absolute;
      display: none;
    }
  
  
    /* Show the checkmark when checked */
    .inputarea input:checked~.checkmark:after {
      display: block;
    }
  
    /* Style the checkmark/indicator */
    .inputarea .checkmark:after {
      left: 7px;
      top: 4px;
      width: 4px;
      height: 9px;
      border: solid white;
      border-width: 0 2px 2px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  
  
    /* asfsgd */
  
    .header_websites_list label {
      cursor: pointer;
      width: 100%;
      font-size: 14px;
      line-height: 14px;
      padding-top: 4px;
      margin-bottom: 0px;
      padding-left: 25px;
    }
  
  
  
  
    /* Category List CSS */
    .categories_list_container {
      list-style-type: none;
      display: flex;
      margin-top: 20px;
    }
  
    .categories_list_container li {
      margin-right: 20px;
    }
  
    .header_websites_tabs {
      display: flex;
    }
  
    .header_searchBar_icon {
      display: none;
    }
  
    @media only screen and (max-width: 575.98px) {
      .header_container {
        flex-direction: column;
        row-gap: 10px;
        padding: 10px 10px;
        width: 100%;
      }
  
      .header_search_container {
        width: 100%;
        max-width: fit-content;
        margin: 0;
      }
  
      .header_searchBar_input {
        border-radius: 5px 0 0 5px;
        width: 100%;
        font-size: 22px;
        padding: 10px 60px 10px 15px;
      }
  
      .header_searchBar_btn {
        padding: 0px 15px;
      }
  
      .header_logo img {
        height: 50px;
      }
  
      .header_searchBar_icon {
        display: flex;
      }
  
      .header_searchBar_text {
        display: none;
      }
  
      .header_website_right {
        right: 0;
      }
  
      .header_bottom_container {
        align-items: inherit;
      }
    }
  
    .header_result_border {
      border-radius: 15px 15px 0 0;
    }
  
    .header_result_border {
      border-radius: 15px 50px 50px 0;
    }
  
    /* SEARCH LIST */
  
    .search_list_container {
      padding: 10px 0px;
      max-height: 230px;
      position: absolute;
      list-style-type: none;
      background-color: white;
      display: flex;
      flex-direction: column;
      overflow-y: scroll;
      box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
      border: 1px solid #f0efef;
      border-radius: 0 0 15px 15px;
      border-top: none;
      z-index: 10;
      font-family: inherit;
    }
  
    .search_list_container::-webkit-scrollbar {
      display: none;
    }
  
    .search_list_container li {
      text-align: left;
      cursor: pointer;
      padding: 10px 20px;
    }
  
    .search_list_container li a {
      text-decoration: none;
      color: #868686;
    }
  
    .search_list_container li a b {
      font-weight: 900;
      color: black;
    }
  
    .search_list_container li:hover {
      background-color: #f0efef;
    }
  
    .list_heading {
      text-align: left;
      padding: 10px 20px;
      color: #868686;
    }
  
    .topic_list_container {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      color: #868686;
      list-style-type: none;
      row-gap: 5px;
      column-gap: 5px;
      padding: 0 20px;
    }
  
    .topic_bubble {
      width: max-content;
      border: 1px solid #868686;
      padding: 5px 10px !important;
      border-radius: 50px;
      font-size: 14px;
    }
  
    .grid_layout_container {
      display: flex;
      flex-direction: column;
      row-gap: 15px;
      /* width: fit-content; */
      width: 100%;
    }
  
    .grid_card_container {
      display: flex;
      min-height: fit-content;
      padding: 8px;
      border-radius: 5px;
      box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
      cursor: pointer;
      max-width: 700px;
      background-color: white;
    }
  
    .grid_card_title {
      font-weight: 600;
    }
  
    .grid_card_container:hover .grid_card_title {
      text-decoration: underline;
    }
  
    .gird_image_container {
      width: 150px;
      flex: 0 0 150px;
      max-height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
  
    .video_time {
      font-size: 12px;
      color: white;
      position: absolute;
      background-color: rgba(0, 0, 0, 0.6);
      bottom: 5px;
      left: 5px;
      padding: 2px 4px;
      border-radius: 3px;
    }
  
    .content_type_icon {
      position: absolute;
      bottom: 5px;
      right: 5px;
      height: 20px;
    }
  
    .grid_image {
      height: 100%;
      width: auto;
      border-radius: 5px;
      max-width: 100%;
      object-fit: cover;
    }
  
    .grid_card_content_container {
      text-decoration: none;
      padding: 10px 0 0;
      text-overflow: ellipsis;
      height: max-content;
      font-size: 18px;
      font-weight: 500;
      margin: 0;
    }
  
    .grid_card_title {
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 10px;
    }
  
    .grid_card_link {
      display: flex;
      column-gap: 15px;
      text-decoration: none;
      color: #434343;
    }
  
    .grid_card_logo {
      height: 20px;
      width: 20px;
      vertical-align: middle;
      display: inline-block;
    }
    
    .grid_card_description {
      font-size: 14px;
      display: flex;
      align-items: center;
      column-gap: 5px;
    }
  
    @media only screen and (max-width: 575.98px) {
      .grid_card_container {
        height: fit-content;
      }
  
      .gird_image_container {
        max-height: 200px;
        width: 100%;
        flex: none;
      }
  
      .grid_image {
        width: auto;
        max-width: 100%;
        border-radius: 5px;
        object-fit: cover;
      }
  
      .grid_card_link {
        flex-direction: column;
        row-gap: 10px;
      }
  
      .grid_card_title {
        -webkit-line-clamp: 2;
      }
  
      .grid_card_description {
        font-size: 13px;
      }
    }
  
    .voice_popup_container {
      width: 100vw;
      height: 100vh;
      position: fixed;
      top: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
    }
  
    .react-images__dialog {
      position: relative;
    }
  
    .photomodel__close {
      position: absolute;
      right: 0;
      top: -22px;
      background: #fff;
      border-radius: 3px 3px 0px 0;
      border: 0;
      padding: 5px;
      width: 30px;
      height: 30px;
      cursor: pointer;
    }
  
    .voice_popup {
      position: relative;
      width: 230px;
      background-color: #fff;
      height: 150px;
      border-radius: 5px 0px 5px 5px;
      padding: 10px;
    }
  
    .popup__container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 100%;
    }
  
    .trylink {
      font-size: 14px;
      line-height: 1.4;
    }
  
    .trylink a {
      color: #cc0000;
      padding-top: 4px;
      display: block;
      text-decoration: underline;
      cursor: pointer;
    }
  
    .icon {
      position: relative;
    }
  
    .pulse__ring {
      content: "";
      width: 56px;
      height: 56px;
      border: 5px solid #c7c7c7;
      border-radius: 50%;
      position: absolute;
      top: 2px;
      left: 2px;
    }
  
    .animate {
      animation: pulsate infinite 2s;
    }
  
    @-webkit-keyframes pulsate {
      0% {
        -webkit-transform: scale(1, 1);
        opacity: 1;
      }
  
      100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0;
      }
    }
  
    #search_input {
      box-sizing: border-box;
      height: 40px;
      color: #737373;
      background-color: #fafafa;
      width: 100%;
      padding-right:62px;
    }
  
    #search_input_container {
      border-radius: 4px 0 0 4px;
      border: 1px solid #e2e2e2;
    }
  }
  
  .loader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #c00;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    margin: 20px auto;
  }



.dark-mode #generateSearch .header_mic_icon_btn svg path{fill: #fff;}
.dark-mode #generateSearch .header_filter_icon svg{fill: #fff;}
  .dark-mode .all-result span,.dark-mode .partent-new-sec h2{color: #fff;}
  .dark-mode .newcon-main_innner_sec ul li{color: #ccc;}
  .dark-mode .all-result{color: #ccc;}
  /* Safari */
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
    }
  
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  .input_cross_icon {
    position: absolute;
    right: 40px;
    top: 54%;
    transform: translateY(-50%);
    cursor: pointer;
  }
  
  .input_cross_icon svg {
    height: 14px;
    width: 14px;
    color: #000;
  }
  
  .dark-mode #generateSearch .header_container {
    background-color: #1b1b1b;
  }
  
  .dark-mode #generateSearch .header_searchBar_form {
    background-color: #2c2c2c;
  }
  
  .dark-mode #generateSearch #search_input {
    background-color: #2c2c2c;
    color: white;
  }
  
  .dark-mode #generateSearch .header_filter_icon {
    background-color: #2c2c2c;
  }
  
  .dark-mode #generateSearch .header_top_inner_container {
    background-color: #525252;
    color: white;
  }
  
  .dark-mode #generateSearch .header_top_inner_container h3 {
    color: white;
  }
  
  .dark-mode #generateSearch .header_bottom_inner_container {
    background-color: #3e3e3e;
    color: white;
  }
  
  .dark-mode #generateSearch .header_bottom_inner_container h3 {
    color: white;
  }
  
  .dark-mode #generateSearch .header_websites_container {
    background-color: #2c2c2c;
    color: white;
  }
  
  .dark-mode #generateSearch .header_websites_container .header_more_btn {
    color: white;
  }
  
  .dark-mode #generateSearch .header_websites_container svg {
    fill: white;
  }
  
  .dark-mode #generateSearch .header_bottom_container button {
    border: 1px solid #c00;
  }
  
  .dark-mode #generateSearch #generateSearch {
    color: white;
  }
  
  .dark-mode #generateSearch #languages {
    color: white;
  }
  
  .dark-mode #generateSearch .header_container {
    border-top: none;
    border-bottom: none;
    border-left: none;
  }
  
  .dark-mode #generateSearch .voice_popup {
    background-color: #2c2c2c;
  }
  
  .dark-mode #generateSearch .photomodel__close {
    background-color: #2c2c2c;
    color: white;
  }
  
  .dark-mode #generateSearch .grid_card_container {
    background: #2c2c2c;
  }
  
  .dark-mode #generateSearch .header_websites_list {
    background-color: #2c2c2c;
  }
  
  .dark-mode #generateSearch .grid_card_link {
    color: white;
  }
  
  
  #generateSearch .header_more_btn.web_list {
    /* width: 210px */
  }
  
  
  .partent-new-sec ul {
    margin: 0px;
    padding: 0px;
    display: block;
    list-style: none;
  }
  .partent-new-sec ul li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
  }
  .partent-new-sec ul li a {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    color: #000000;
    text-decoration: none;
  }
  .newimg {
    width: 182px;
    height: 101px;
    position: relative;
    overflow: hidden;
    border: 1px solid #d1d1d1;
  }
  .newimg img {
    width: auto;
    height: 100%;
    display: block;
    margin: 0 auto;
  }
  .v-pictur {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    width: 35px;
    height: 29px;
  }
  .v-pictur > span {
    display: inline-block;
    margin-right: 0;
    width: 100%;
  }
  .partent-new-sec ul li .newimg .v-pictur {
    bottom: 0px;
    right: 1px;
    width: 29px;
    height: 26px;
    background: #000;
    text-align: center;
    margin: 0 auto;
    padding-top: 3px;
    padding-left: 1px;
  }
  .partent-new-sec ul li .newimg .v-pictur svg {
    width: 18px;
    height: 18px;
    margin: 0 auto;
  }
  .newcon-main {
    width: calc(100% - 196px);
    margin-left: 12px;
  }
  .newcon-main h2, h3 {
    font-size: 22px;
    color: #000000;
    margin: 0px;
    /* font-family: 'Noto Sans', sans-serif; */
    line-height: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .partent-new-sec h2 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 30px;
  }
  .partent-new-sec ul li h2 {
    margin-bottom: 10px;
    line-height: 28px;
    font-weight: 500;
  }
  .newcon-main_innner_sec {
    display: flex;
    margin-top: 0px;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 0px;
  }
  .partent-new-sec ul {
    margin: 0px;
    padding: 0px;
    display: block;
    list-style: none;
  }
  .newcon-main_innner_sec ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
  }
  .partent-new-sec ul li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
  }
  .newcon-main_innner_sec ul li {
    margin: 0px 0px;
    color: #797979;
    line-height: 19px;
    float: left;
    font-size: 15px;
    display: inline-block;
    width: inherit;
    border-bottom: none;
    padding-bottom: 0px;
    margin-right: 12px;
  }
  #generateSearch .website_byline .grid_card_logo{display: none;}
  .newcon-main_innner_sec ul li:nth-child(1) {
    font-size: 15px;
    position: relative;
  }
  .newcon-main_innner_sec ul li:last-child {
    margin-left: 0px;
  }
  
  .newcon-main_innner_sec ul li:nth-child(2) {
    position: relative;
  }
  .newcon-main_innner_sec ul li:nth-child(1):after {
    content: '';
    position: absolute;
    border: 1px solid #797979;
    height: 100%;
    right: -7px;
    /* top: 0px; */
  }
  .icon-vid {
    width: 13px;
    height: 13px;
    margin-right: 5px;
  }
  .v-duration {
    position: absolute;
    background-color: #000;
    line-height: 0;
    padding: 0 5px;
    font-size: 11px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    width: 60px;
    height: 21px;
    bottom: 0;
  }
  .newimg .v-duration {
    bottom: 0px;
  }
  .v-duration > span {
    display: inline-block;
    margin-right: 5px;
    width: 13px;
  }
  .header_bottom_inner{width:100%;}
  
  .all-result {
    font-size: 14px;
    color: #666666;
  }
  .all-result span {
    color: #000000;
    font-weight: bold;
  }
  @media (max-width: 1199px) {
    .newimg {
        width: 178px;
    }
    .newcon-main {
      width: calc(100% - 190px);
  }
  .partent-new-sec ul li h2 {
    margin-bottom: 5px;
  }
  .newcon-main_innner_sec {
    padding-left: 3px;
  }
  .ewcon-main_innner_sec ul li {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 5px;
  }
  }
  @media (max-width:900px){
    #generateSearch .header_inner_top_left_container,#generateSearch .header_inner_top_right_container{width: 39%;}
    #generateSearch .header_bottom_container button{margin-left: 15px;}
  }
  @media (max-width: 767px) {
    .newimg {
        width: 101px;
        height: auto;
        margin: 0 auto auto;
    }
    #search_input{padding-right: 50px;}
    .newimg img {
      width: 100%;
      height: auto;
  }
  .newcon-main {
    width: calc(100% - 113px);
  }
  .partent-new-sec ul li a .newcon-main h2, h3 {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
  .partent-new-sec ul li:last-child {
    margin-bottom: 0px;
  }
  .newcon-main_innner_sec {
    display: none;
  }
  #generateSearch .header_inner_top_left_container,
  #generateSearch .header_inner_top_right_container{width:100%;margin-right: 0px;}
  #generateSearch .header_bottom_container button{margin: 0 auto;}
  .header_more_btn{font-size: 16px;}
  }
  @media (max-width: 480px) {
    .newcon-main_innner_sec {
        margin-top: 6px;
    }
  }
  :is(.dark .dark\:bg-black) .all-result, :is(.dark .dark\:bg-black) .all-result span,
  :is(.dark .dark\:bg-black) .partent-new-sec ul li h2, 
  :is(.dark .dark\:bg-black) .newcon-main_innner_sec ul li{color: #d9d9d9;}