@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* Colors variable */
    --black: rgb(0, 0, 0);
    --title-black: #151516;
    --white: #ffffff;
    --font-primary: #ff8a00;
    --lighter-gray: #f0f2f5;
    --text-gray: #878787;
    --text-gray-title: #5b5b5b;
    --text-select: #2f2f2f;
    --gray-300: #d0d5dd;
    --gray-200: #eaecf0;
    /* font family variable */
    --font-1: "Inter", serif;
    --font-2: ;
    --font-3: ;
    --font-body: "Poppins";
    --ezw-business-input-bg: #fff;
  
    /* select2 related properties */
    --ezw-select-symbol-bg: #ff8a00;
    --ezw-select-symbol-size: 1rem;
  }
  .ezway-business-form ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
  }
  *{
    font-family: var(--font-body);
  }
  .ezway-business-form .form-container {
    max-width: 1140px;
    background-color: var(--white);
    margin: 0px auto;
    padding: 24px 32px;
    position: relative;
  }
  
  .ezway-business-form .wm-text-right {
    text-align: right;
  }
  .ezway-business-form .wm-text-center {
    text-align: center;
  }
  .ezway-business-form .wm-text-justify {
    text-align: justify;
  }
  .ezway-business-form .wm-h-3 {
    font-weight: 500;
    font-size: 24px;
  }
  .ezway-business-form .wm-text-normal {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
  }
  .ezway-business-form .wm-text-sm {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
  }
  .ezway-business-form .wm-text-lg{
      font-size: 18px;
      font-weight: 500;
  line-height: 20px;
  }
  .ezway-business-form .wm-gap-12 {
    gap: 12px;
  }
  .ezway-business-form .wm-gap-18 {
    gap: 18px;
  }
  .ezway-business-form .wm-gap-32 {
    gap: 32px;
  }
  .ezway-business-form p {
      margin: 0px;
  }
  .ezway-business-form .hidden {
    display: none;
  }
  .ezway-business-form .wm-padding-bottom-20 {
    padding-bottom: 20px;
  }
  .ezway-business-form .wm-padding-bottom-40 {
    padding-bottom: 40px;
  }
  
  .form-section {
    background: var(--lighter-gray);
    padding: 40px 0px 114px 0px;
  }
  .ezway-business-form .button-primary {
    background: var(--font-primary);
    color: var(--white);
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    max-height: 40px ;
  }

  .ezway-business-form .button-primary.loading-spinning {
      position: relative;
      pointer-events:none;
      opacity:0.6;
  }

  .ezway-business-form .button-primary.loading-spinning::before {
      position: absolute;
      content: '';
      width: 25px;
      height: 25px;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      border-radius: 50%;
      border: 2px solid #000;
      border-top-color: #fff;
      animation: saveSpinner 1s ease-in-out infinite;
  }
  @keyframes saveSpinner{
      from{
          transform:translate(-50%,-50%) rotate(0deg);
      }
      to{
          transform: translate(-50%,-50%) rotate(720deg);
      }
  }


  .ezway-business-form .form-control-padding{
      padding: 10px 14px;
  }
  .ezway-business-form .button-secondary {
    background: var(--white);
    color: var(--text-select);
    padding: 10px 16px;
    border: none;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    max-height: 40px ;
  }
  .ezway-business-form .tab {
    margin-bottom: 32px;
  }
  .ezway-business-form .tab-left {
    border-bottom: 1px solid #c5cdd4;
    flex-grow: 1;
  }
  .ezway-business-form .tab-element {
    padding: 12px 20px;
    cursor: pointer;
  }
  .ezway-business-form .active {
    background-color: var(--font-primary);
    color: var(--white);
    border-radius: 2px 2px 0px 0px;
  }
  .ezway-business-form .form-title {
    color: var(--title-black);
  }
  .ezway-business-form .form-label {
    color: var(--text-gray-title);
  }
  .ezway-business-form .form-input {
    padding: 10px 14px;
    border-radius: 5px;
    border: 1px solid var(--gray-300);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    font-family: var(--font-1);
    color: var(--text-gray-title);
  }
  .ezway-business-form .form-input::placeholder {
    color: var(--text-gray);
  }
  .ezway-business-form .divider {
    display: block;
    margin: 20px 0px;
    background: var(--gray-200);
    height: 1px;
    width: 100%;
  }
  .ezway-business-form .tags-input-container {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding:10px 14px ;
      border: 1px solid #c5cdd4;
      border-radius: 6px;
      cursor: text;
      overflow: auto; 
      max-height: 150px;
      min-height: 86px; 
    }
    .ezway-business-form .tags-input-container span.select2-selection{
      border: none;
      outline: none;
      height: 100%;
    }
    .select2-dropdown{
      top:35px;
    }
    .select2-container .select2-dropdown .select2-results__option{
      position: relative;
    }
    .select2-container .select2-dropdown .select2-results__option::before{
      content: "";
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      width: var(--ezw-select-symbol-size);
      height: var(--ezw-select-symbol-size);
      border-radius: 50%;
      border: 3px solid var(--ezw-select-symbol-bg);
    }
    .select2-container .select2-dropdown .select2-results__option[aria-selected=true]::before{
      background-color: var(--ezw-select-symbol-bg);
    }
    .select2-container--default li.select2-results__option--highlighted[aria-selected] {
      background-color: var(--ezw-select-symbol-bg);
    }
    .ezway-business-form .tags-input-container span.select2-selection .select2-selection__choice{
      display: flex;
      flex-direction: row-reverse;
      background: transparent;
      padding: 4px 8px;
      border: 1px solid #C5CDD4;
      outline: none;
      height: 100%;
    }
    .ezway-business-form .tags-input-container .tags-input {
      border: none;
      outline: none;
      flex: 1;
      resize: none;
      overflow: hidden; 
      min-height: 24px;
      font-size: 14px;
    }
    
    .ezway-business-form .tags-input-container .remove-tag {
      cursor: pointer;
      margin-left: 4px;
      color: #c5cdd4;
      font-size: 16px;
    }
    
    .ezway-business-form .tag {
      display: flex;
      align-items: center;
      padding: 4px 4px 4px 10px;
      border-radius: 6px;
      border: 1px solid #c5cdd4;
      color: var(--text-gray-title);
      font-weight: 400;
      margin: 0px;
      max-height: 28px;
    }
    .ezway-business-form .tag >span {
      display: flex;
      flex-wrap: wrap;
    }
    .ezway-business-form .tag-input {
      padding: 0px;
    }
    
  
  /* General container styling */
  .ezway-business-form .radio-container {
      gap: 14px 0px; 
      font-family: Arial, sans-serif;
    }
    
    /* Radio button option */
    .ezway-business-form .radio-option {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      font-size: 14px;
      white-space: nowrap;
    }
    
    .ezway-business-form .radio-option input[type="radio"] {
      display: none; /* Hide default radio button */
    }
    
    /* Custom radio button design */
    .ezway-business-form .radio-option span {
      position: relative;
      padding-left: 30px;
      cursor: pointer;
      color: var(--text-select);
      font-weight: 500;
    }
    
    .ezway-business-form .radio-option span::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      border: 1px solid #D0D5DD;
      border-radius: 50%;
      background-color: #fff;
    }
    .ezway-business-form .radio-option input[type="radio"]:checked + span::before {
      border-color: var(--font-primary); 
    }
    
    .ezway-business-form .radio-option input[type="radio"]:checked + span::after {
      content: "";
      position: absolute;
      left: 6px;
      top: 50%;
      transform: translateY(-50%);
      width: 8px;
      height: 8px;
      background-color: var(--font-primary);
      border-radius: 50%;
    }
    .ezway-business-form .text-area-input{
      padding: 12px 14px;
      min-height: 96px;
    }
    .ezway-business-form .text-area-label{
      color: var(--text-gray);
      font-weight: 400;
    }
    .ezway-business-form .form-submit-button{
      position: absolute;
      left: 0px;
      bottom: -74px;
    }
    .ezway-business-form .submit-button-padding{
      padding: 14px 16px;
      max-height: 50px;
    }
    .ezway-business-form .wm-text-black{
      color: var(--black);
    }
    .ezway-business-form .divider-15{
      display: block;
      margin: 15px 0px;
      background: var(--gray-200);
      height: 1px;
      width: 100%;
    }
    .ezway-business-form .specific-label{
      color: var(--title-black);
    }
    .ezway-business-form .divider-top{
      display: block;
      margin-bottom: 15px;
      background: var(--gray-200);
      height: 1px;
      width: 100%;
    }
    .ezway-business-form .divider-bottom{
      display: block;
      margin-top: 15px;
      background: var(--gray-200);
      height: 1px;
      width: 100%;
    }
    .ezway-business-form .audience-title{
      margin-bottom: 40px;
    }
    .ezway-business-form .audience-wrapper {
      max-width: 824px;
    }
    .ezway-business-form .audience-label{
      color: var(--title-black);
    }
    .ezway-business-form .audience-details{
      color: var(--text-gray-title);
    }
  
    .ezway-business-form .divider-audience{
      display: block;
      margin: 32px 0px 40px 0px;
      background: var(--gray-200);
      height: 1px;
      width: 100%;
    }
    .ezway-business-form .audience-form-label{
      font-size: 15px;
      font-weight: 500;
      line-height: 20px;
      color: var(--title-black);
      max-width: 248px;
    }
    .ezway-business-form .audience-top-input{
      min-width: 110px;
    }
    .ezway-business-form .audience-form-control{
      padding: 10px 14px;
    }
    .ezway-business-form .social-form-label{
      font-weight: 500;
      color: var(--text-gray-title);
    }
    .ezway-business-form .social-title{
      font-weight: 500;
    }
    .ezway-business-form .social-links-profile{
      --social-link-card-width: 190px;
      display: grid;
      grid-template-columns: repeat(auto-fit , var(--social-link-card-width));
      gap: 1rem;
    }
  
   @media only screen and (min-width: 360px) and (max-width: 768px) {
    .ezway-business-form .social-links-profile{
      --social-link-card-width: 150px;
    }
    .ezway-business-form .form-container {
      padding: 24px 12px;
    }

  }
   @media only screen and (min-width: 768px) and (max-width: 991px) {
      .ezway-business-form .radio-option span {
          padding-left: 25px;
          font-size: 11px;
      }
  }
   @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .ezway-business-form .radio-option span {
          padding-left: 30px;
          font-size: 14px;
      }
  }
  
/**
* Business Search Page
*/
.ezway-business-search-page {
  font-family: var(--font-body);
  font-weight: 500;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
}
.ezway-business-search-page .sidebar {
  /* background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-right: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scroll-behavior: smooth; */
}

.ezway-business-search-page .sidebar .search-page-title {
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 8px;
  font-weight: 500;
}
/* select all input and select in .basic-filter and .advanced-filters */
.ezway-business-search-page :is(input, select){
  background-color: var(--ezw-business-input-bg);
  border: 1px solid #C5CDD4;
  padding: 12px;
}
.ezway-business-search-page .basic-filter input::placeholder {
  color: #878787;
}
.ezway-business-search-page .basic-filter label{
  font-size: 15px;
  line-height: 20px;
}
.ezway-business-search-page .basic-filter span.select2-selection{
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: var(--ezw-business-input-bg);
  background-clip: padding-box;
  border: 1px solid #C5CDD4;
  border-radius: 10px;
}
.ezway-business-search-page .btn-search{
  font-size: 15px;
  line-height: 20px;
  padding: 14px 16px;
  border-radius: 4px;
}
.ezway-business-search-page .btn-search.btn-outline{
  background-color: #fff;
  color: #ff8a00;
  border: 1px solid #ff8a00;
}
.ezway-business-search-page .btn-search.btn-outline:hover {
  color: #fff;
  background-color: #ff8a00;
  border: 1px solid #fff;
}
.ezway-business-search-page .search-results {
  overflow-y: auto;
}
.ezway-business-search-page .search-results {
  margin-top: 2rem;
  font-family: var(--font-body);
}
.ezway-business-search-page .search-results :where(table, tbody, tr) {
  border: 1px solid #EAECF0;
  border-collapse: collapse;
}
.ezway-business-search-page .search-results thead {
  background-color: #EAECF0;
}
.ezway-business-search-page .search-results table p{
  margin: 0;
}
.ezway-business-search-page .search-results th {
  color: #475467;
  font-family: var(--font-1);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  padding: 14px 24px;
}
.ezway-business-search-page .search-results td {
  padding: 14px 24px;
}
.ezway-business-search-page .search-results td a {
  color: #FF8A00;
  font-size: 15px;
  line-height: 20px;
  background-image: linear-gradient(#FF8A00,#ff8800ce);
  background-size: 0% 3px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 300ms ease;
}
.ezway-business-search-page .search-results td a:hover {
 background-size: 100% 3px;
}
.ezway-business-search-page .search-results table .profile {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 12px;
  align-items: center;
}
.ezway-business-search-page .search-results table .profile img {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  object-fit: cover;
  object-position: center center;
}
.ezway-business-search-page .search-results table .user-meta {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #5B5B5B;
}

.ezway-business-search-page .search-results table .user-meta .name {
  color: #000;
}

.ezway-business-search-page .result-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
.ezway-business-search-page .search-results table :where( .company, .business-size) {
  font-family: var(--font-1);
  font-size: 14px;
  font-weight: 500;
  color: #475467;
}
.ezway-business-search-page .search-results .no-result p {
  display: block;
  margin-inline: auto;
  width: fit-content;
}
.ezway-business-search-page .result-item:last-child {
  border-bottom: none;
}
.ezway-business-search-page .result-hidden {
  display: none;
}
.ezway-business-search-page .toggle-filters-btn {
  display: block;
  background: none;
  border: none;
  color: #1E83EB;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness:2px;
  cursor: pointer;
  padding: 0;
  font-size: 15px;
  margin-block: 8px 24px;
}
.ezway-business-search-page .select2-selection__choice__remove{
  background:none;
}
.ezway-business-search-page #toggleFilters:hover, #toggleFilters:focus{
  background:none;
}
.ezway-business-search-page .select2-container {
  width: 100%;
}
.ezway-business-search-page .select2-container .select2-dropdown .select2-results__option.select2-results__option--selected::before{
  background-color: #009;
}

.select2-container .select2-dropdown .select2-results__option[aria-selected=true]{
  background: #d1d5d9;
}
.ezway-business-search-page .advanced-filters {
  margin-block: 24px;
}
div#searchResults{
  position:relative;
}
div#searchResults.spinner-hidden::before{
  display:none;
}
div#searchResults::before {
  content: '';
  width: 50px;
  height: 50px;
  border: 3px solid #000;
  position: absolute;
  border-radius: 50%;
  border-top-color: #9d9494b0;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation:search-page-loader 1s ease-in-out infinite;
}

@keyframes search-page-loader{
  to{
      transform:translate(-50%,-50%) rotate(0deg);
  }
  from{
      transform:translate(-50%,-50%) rotate(720deg);
  }
}


.dataTables_length, #businessSearchResults_filter{

  margin-bottom: 20px;
  

}

#businessSearchResults{
  /* filter:blur(8px) */
} 

/* Dark Overlay */
.datatable-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8); /* Dark background with some transparency */

  z-index: 9999; /* Make sure it's on top of the table */
  display: block; /* Hide overlay by default */
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Overlay message styling */
.overlay-message {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  border-radius: 5px;
  
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

/* Styling for table container to make sure it has a relative position */
#businessSearchResults {
  position: relative; /* Needed for overlay positioning */
}


/* Beta Testing Notice Styles */
.beta-notice {
  max-width: 1140px;
  background-color: #ffcc00; /* Yellow background for attention */
  color: #333; /* Dark text for readability */
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  margin-bottom: 20px; /* Space between notice and other content */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* z-index: 10000; */
  margin  : 20px auto; /* Center the notice */
}

/* Header with icon and bold text */
.beta-header {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Icon for the Beta header */
.beta-icon {
  font-size: 30px;
  color: #ff6600;
}

/* Beta Text Styling */
.beta-text {
  font-size: 20px;
  color: #333;
}

/* Beta Description Styling */
.beta-description {
  font-size: 16px;
  color: #444;
  text-align: center;
  margin-top: 10px;
}
.bn-beta-benefit {
  background-color: #FFFFFF;
  border-left: 4px solid #FF8C00;
  padding: 15px;
  border-radius: 4px;
  margin-top: 15px;
  color: #333;
  line-height: 1.5;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.bn-benefit-icon {
  margin-right: 8px;
  color: #FF8C00;
  font-weight: bold;
}

.bn-highlight {
  font-weight: bold;
  color: #FF8C00;
}
/* Optional: Close Button to Dismiss the Notice */
.beta-notice .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  color: #333;
  padding: 0;
}
.bizd-header-container {
  background-color: #ffffff;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  max-width: 1140px;
  margin: 0 auto;
}

.bizd-header-title-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.bizd-title-container {
  display: flex;
  align-items: center;
}

.bizd-main-title {
  font-size: 28px;
  color: #222;
  font-weight: bold;
  margin-right: 15px;
  font-family: Arial, sans-serif;
}


.bizd-button {
  background-color: #FF8C00;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 15px;
  font-family: Arial, sans-serif;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1;
}
.bizd-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.bizd-button:hover {
  background-color: #E67E00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.bizd-button:hover:before {
  left: 100%;
}

.bizd-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}

.bizd-button-container {
  display: flex;
  gap: 10px;
}

.bizd-search-icon {
  margin-right: 6px;
}

@media (max-width: 768px) {
  .bizd-header-title-section {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .bizd-button-container {
      margin-top: 10px;
      width: 100%;
  }
  
  .bizd-button {
      width: 100%;
      justify-content: center;
  }
  
  .bizd-main-title {
      font-size: 22px;
  }
}

@media (max-width: 480px) {
  .bizd-main-title {
      font-size: 20px;
  }
  
  .bizd-button {
      padding: 8px 12px;
      font-size: 14px;
  }
}