
/* 23/07/2025  License Provider Section  subrato maji */
.license_provider_section{
  background-color: #293450;
  padding:48px 16px 32px 16px ;
}
@media (min-width: 1920px) {
  .license_provider_title {
      font-size: 3.125vw !important;
      
  }
}
.license_provider_title{
font-size:min(max(26px,3.125vw), 60px) ;
font-weight: 900;
      color: #fff;
      margin-bottom: 20px;
}
.license_provider_description{
  font-size: min(max(16px, 0.9375vw), 18px);
  color: #fff;
  margin-bottom: 0;
}
.license_provider_state-section{
  background-color: #293450;
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 16px;
}

.curedose_body .license_provider_state-section{
  top: 0 !important;
  background-color: var(--lighter-primary-color);
}

.curedose_body .view-more-states, .curedose_body .view-more-states svg path {
  color: var(--primary-color);
  fill: var(--primary-color);
  opacity: .6;
}

.curedose_body .view-more-states:hover {
  color: var(--primary-color);
  opacity: .9;
  text-decoration: underline;
}

.curedose_body .license_provider_title, 
.curedose_body .license_provider_description,
.curedose_body .license-details-footer-link {
  color: var(--secondary-color) !important;
}

.curedose_body .license_provider_section {
  /* margin-top: 66px; */
  background-color: var(--lighter-primary-color);
}

.curedose_body .license-details-footer-link svg path {
  fill: var(--secondary-color) !important;
}









/* state multiselect css - scoped to parent wrapper */
.multiselect-parent-wrapper .multiselect-wrapper {
  position: relative;
  width: 100%;
  max-width: 490px;
  margin: 0 auto;
}

/* Hide the native select */
.multiselect-parent-wrapper .native-select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.multiselect-parent-wrapper .multiselect-input {
  width: 100%;
  padding: 12px 40px 12px 40px;
  border: 1px solid #D3D3D3;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  background: white;
  transition: all 0.2s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.multiselect-parent-wrapper .multiselect-input:hover {
  border-color: #cbd5e0;
}

.multiselect-parent-wrapper .multiselect-input.active {
  border-color: #2DBDCA;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.curedose_body .multiselect-parent-wrapper .multiselect-input.active {
  border-color: var(--primary-color);
}

.multiselect-parent-wrapper .multiselect-left-icon{
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  pointer-events: none;
}

.multiselect-parent-wrapper .multiselect-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  pointer-events: none;
}

.multiselect-parent-wrapper .multiselect-arrow.rotated {
  transform: translateY(-50%) rotate(180deg);
}

.multiselect-parent-wrapper .multiselect-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #e2e8f0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.multiselect-parent-wrapper .multiselect-dropdown.show {
  display: block;
}

.multiselect-parent-wrapper .search-container {
  padding: 12px;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  background: white;
  z-index: 1001;
}

.multiselect-parent-wrapper .search-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.multiselect-parent-wrapper .search-input:focus {
  border-color: #2DBDCA;
  box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.1);
}

.curedose_body .multiselect-parent-wrapper .search-input:focus {
  border-color: var(--primary-color);
}

.multiselect-parent-wrapper .option-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.15s ease;
  border-bottom: 1px solid #f7fafc;
  font-size: 14px;
}

.multiselect-parent-wrapper .option-item:hover {
  background-color: #f7fafc;
}

.multiselect-parent-wrapper .option-item.select-all {
  background-color: #edf2f7;
  font-weight: 600;
  color: #2d3748;
  border-bottom: 2px solid #e2e8f0;
}

.multiselect-parent-wrapper .option-item.select-all:hover {
  background-color: #e2e8f0;
}

.multiselect-parent-wrapper .option-checkbox {
  margin-right: 12px;
  width: 18px;
  height: 18px;
  accent-color: #2DBDCA;
  cursor: pointer;
  border: 1px solid #2DBDCA;
}

.multiselect-parent-wrapper .option-label {
  flex: 1;
  font-size: 14px;
  color: #2d3748;
  user-select: none;
}

.multiselect-parent-wrapper .selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.multiselect-parent-wrapper .selected-tag {
  color: #212121;
  padding: 0px;
  font-size: 14px;
  background-color: #E0F5F7;
  border-radius: 4px;
  font-weight: 500;
  padding: 4px 6px;
}
.curedose_body .multiselect-parent-wrapper .selected-tag {
  background-color: var(--lighter-primary-color);
  color: var(--primary-color);
}
.multiselect-parent-wrapper .placeholder {
  color: #212121;
  font-size: 14px;
}

.multiselect-parent-wrapper .no-results {
  padding: 20px;
  text-align: center;
  color: #718096;
  font-style: italic;
}

/* Custom scrollbar */
.multiselect-parent-wrapper .multiselect-dropdown::-webkit-scrollbar {
  width: 6px;
}

.multiselect-parent-wrapper .multiselect-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.multiselect-parent-wrapper .multiselect-dropdown::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}

.multiselect-parent-wrapper .multiselect-dropdown::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

.multiselect-parent-wrapper .custom-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}

/* Hide default checkbox */
.multiselect-parent-wrapper .custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Custom box */
.multiselect-parent-wrapper .custom-checkbox .checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background-color: #fff;
  border-radius: 4px;
  transition: background-color 0.2s;
  border: 1px solid #2DBDCA;
}

/* When checkbox is checked */
.multiselect-parent-wrapper .custom-checkbox input:checked ~ .checkmark {
  background-color: #2dbdca;
}
.curedose_body .multiselect-parent-wrapper .custom-checkbox input:checked ~ .checkmark{
  background-color: var(--primary-color);
}
/* Tick mark */
.multiselect-parent-wrapper .custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Show tick when checked */
.multiselect-parent-wrapper .custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}

/* state multiselect css end */

section.license_provider_doctor-section {
  padding: 60px 0;
}
.doctor-box  {
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #D3D3D3;
  margin-bottom: 20px;
}
.license_provider_doctor-info-box{
  display: flex;
  align-items: center;
  padding: 24px;
  padding-bottom: 0;
  gap: 6px;
}
.doctor-name {
  font-size: 20px;
  font-weight: 700;
  color: #293450;
  margin-bottom: 0;
}
.docotor-specialization {
  display: flex;
  gap: 2px;
  font-size: 16px;
  font-weight: 400;
  color: #4D4D4D;
  margin-bottom: 0;
}
.docotor-licens-states-list-box{
  padding: 24px;
  padding-top: 20px;
}
ul.license-states-list {
  gap: 8px;
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  flex-wrap: wrap;
  margin-bottom: 0;
}

ul.license-states-list li {
  padding: 4px 8px;
  background-color: #F2F2F2;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  line-height: 1.2;
  border: 1px solid var(--neutral-neutral-10, #E9E9E9);
  vertical-align: middle;
}
.license-states-label{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #212121;
  margin-bottom:12px;
}
.license-details-footer{
  padding: 12px;
  border-top: 1px solid #D3D3D3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.license-details-footer-link{
  font-size: 16px;
  font-weight: 600;
  color: #FF8927;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.license-details-modal .modal-dialog , .stateLicenseModal .modal-dialog{
  max-width: 950px;
}
.license-details-modal .modal-header , .stateLicenseModal .modal-header{
  padding: 16px 24px;
  border-bottom: 0 ;
}
.stateLicenseModal .modal-header{
  border-bottom: 1px solid #D3D3D3;
  align-items: center;
}
.license-details-modal .modal-content , .stateLicenseModal .modal-content{
  border-radius: 20px;
  border: 1px solid #D3D3D3;

}
.license-details-modal .close , .stateLicenseModal .close{
  opacity: 1;
  padding: 0;
  border: 0;
  background-color: unset;
  margin: 0;
}
.license-details-modal .modal-title , .stateLicenseModal .modal-title{  
  font-size: 22px;
  font-weight: 700;
  color: #293450;
  margin-bottom: 0;
}
.license-details-modal .modal-title span , .stateLicenseModal .modal-title span{
  color: #2DBDCA;
}

.curedose_body .license-details-modal .modal-title , .curedose_body .stateLicenseModal .modal-title {
  color: var(--secondary-color);
}

.curedose_body .license-details-modal .modal-title span , .curedose_body .stateLicenseModal .modal-title span{
  color: var(--primary-color);
}

.license-details-modal .modal-body , .stateLicenseModal .modal-body{
  padding: 16px 24px;
}
.view-more-states{
  background-color: transparent;
  border: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: #2DBDCA;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.view-more-states:hover{
  color: #2DBDCA;
}
.view-more-states.active svg{
  transform: rotate(180deg);
}

.license-state-item{
  display: flex;
  align-items: center;
  gap:4px;
}
.stateLicenseModal .license-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stateLicenseModal .license-info .info-row{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stateLicenseModal .license-info .info-label{
  font-size: 16px;
  font-weight: 600;
  color: #212121;
}
.stateLicenseModal .license-info .info-value{
  font-size: 16px;
  font-weight: 400;
  color: #4D4D4D;
}
/* Custom tooltip styles for state information */
.state-tooltip-custom {
  --bs-tooltip-bg: #212121;
  --bs-tooltip-color: #ffffff;
  --bs-tooltip-border-radius: 8px;
  --bs-tooltip-padding-x: 12px;
  --bs-tooltip-padding-y: 8px;
  --bs-tooltip-font-size: 14px;
  --bs-tooltip-max-width: 400px;
  --bs-tooltip-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.state-tooltip-custom .tooltip-inner {
  background-color: var(--bs-tooltip-bg);
  color: var(--bs-tooltip-color);
  border-radius: var(--bs-tooltip-border-radius);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  font-size: var(--bs-tooltip-font-size);
  max-width: var(--bs-tooltip-max-width);
  box-shadow: var(--bs-tooltip-box-shadow);
  text-align: left;
  line-height: 1.4;
  white-space: nowrap;
}

.state-tooltip-custom .tooltip-arrow::before {
  border-top-color: var(--bs-tooltip-bg);
}

/* Custom styles for tooltip content */


.state-tooltip-content p {
  margin: 4px 0;
  font-size: 13px;
  color: #e8e8e8;
}

.state-tooltip-content strong {
  color: #ffffff;
  font-weight: 600;
}


/* Ensure tooltip is positioned correctly */
.state-tooltip-custom {
  position: absolute !important;
  z-index: 9999 !important;
}


/* Ensure the trigger element has proper positioning context */
.license-state-item {
  position: relative;
}

.state-info-link {
  position: relative;
  display: inline-block;
}

/* Ensure the license states list container has proper positioning */
.license-states-list {
  position: relative;
  overflow: visible;
}

/* Hide tooltip initially to prevent flash */
.tooltip {
  opacity: 0 !important;
  transition: opacity 0.2s ease-in-out;
}

.tooltip.show {
  opacity: 1 !important;
}

/* Ensure proper positioning for tooltip container */
.license-states-list .tooltip {
  position: absolute !important;
  z-index: 9999 !important;
  pointer-events: none;
}

/* Prevent tooltip from appearing outside container */
.license-states-list {
  position: relative !important;
  overflow: visible !important;
} 







@media (max-width: 991px) {
  section.license_provider_doctor-section{
    padding: 30px 0;
  }
  .license_provider_doctor-info-box{
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .license-details-modal .modal-title{
    font-size: 18px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 4px;
  } 
  .license-details-modal .modal-body{
    padding: 12px;
  }
  .license-details-modal .table{
    grid-template-columns: repeat(2, 1fr);
  }
  .option-item{
    font-size: 14px ;
  }
}


/* Desktop table styles remain unchanged */
@media (min-width: 769px) {
  .license-details-modal .table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 10px;
    border: 1px solid #D3D3D3;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
  }
  
  .license-details-modal .table thead, 
  .license-details-modal .table tbody, 
  .license-details-modal .table tfoot, 
  .license-details-modal .table tr {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / 5;
  }
  
  .license-details-modal .table tbody {
    max-height: 400px;  
    overflow: auto;
  }
  
  .license-details-modal .table thead tr th{
    background-color:#EAEBEE ;
    border-bottom: 1px solid #D3D3D3 !important;
    padding: 12px;
    white-space: nowrap;
    color: #212121;
    font-weight: 500;
    font-size: 14px;
  } 
  
  .license-details-modal .table thead tr th:first-child{
    border-radius: 10px 0 0 0;
  }
  
  .license-details-modal .table thead tr th:last-child{
    border-radius: 0 10px 0 0;
  }
  
  .license-details-modal .table tr td{
    border-bottom: 0 !important;
    padding: 12px;
    white-space: nowrap;
    color: #4D4D4D;
    font-weight: 400;
    font-size: 14px;
    width: 100%;
  }

  .license-details-modal .table tr:not(:last-child) td{
    border-bottom: 1px solid #D3D3D3 !important;
  }
}

@media (max-width: 768px) {
  section.license_provider_doctor-section{
    padding: 20px 0;
  }
  .license_provider_doctor-info-box{
    padding: 16px;
    padding-bottom: 0;
  }
  .docotor-licens-states-list-box{
    padding: 16px;
  }
  .doctor-name{
    font-size: 18px;
  }
  .docotor-specialization{
    font-size: 14px;
  }
  .license-states-label{
    font-size: 14px;
  }
  .license-details-footer-link{
    font-size: 16px;
  }
  .license-details-modal .modal-title{
    font-size: 16px;
  }
  
  /* Bottom sheet modal styles */
  .license-details-modal .modal-dialog {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    max-width: 100%;
    height: 70vh;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
  }
  
  .license-details-modal.show .modal-dialog {
    transform: translateY(0);
    align-items: flex-end;
  }
  
  .license-details-modal .modal-content {
    height: auto;
    max-height: 85dvh;
    border-radius: 20px 20px 0 0;
    border: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  }
  
  .license-details-modal .modal-header {
    padding: 12px 12px 12px;
    border-bottom: 1px solid #D3D3D3;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-radius: 20px 20px 0 0;
    align-items: center;
  }
  
  .license-details-modal .modal-body {
    padding: 0;
    height: calc(100% - 80px); /* Subtract header height */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .license-details-modal .modal-body .license-details-modal-content {
    padding: 16px 12px 12px;
  }
  
  .license-details-modal .close {
    opacity: 1;
    padding: 0;
    z-index: 11;
  }
  
  .license-details-modal .table-responsive {
    overflow: visible;
  }
  
  .license-details-modal .table {
    display: block;
    border: none;
    background: transparent;
  }
  
  .license-details-modal .table thead {
    display: none;
  }
  
  .license-details-modal .table tbody {
    display: block;
    max-height: none;
    overflow: visible;
  }
  
  .license-details-modal .table tbody tr {
    display: block;
    background: #fff;
    border-bottom: 1px solid #D3D3D3;
    margin-bottom: 12px;
    padding: 8px 4px;
  }
  
  .license-details-modal .table tbody tr:last-child {
    margin-bottom: 0;
  }
  
  .license-details-modal .table tbody tr td {
    display: block;
    border: none !important;
    padding: 0;
    padding-bottom: 12px;
    position: relative;
    min-height: 60px;
    line-height: 1.4;
  }
  
  /* Make license number and expiry date side by side */
  .license-details-modal .table tbody tr td:nth-child(2),
  .license-details-modal .table tbody tr td:nth-child(3) {
    display: inline-block;
    width: 49%;
    vertical-align: top;
  }
  
  .license-details-modal .table tbody tr td:nth-child(2):before,
  .license-details-modal .table tbody tr td:nth-child(3):before {
    content: attr(data-label);
    position: relative;
    display: block;
    font-weight: 600;
    color:  #212121;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
  }
  
  .license-details-modal .table tbody tr td:before {
    content: attr(data-label);
    position: relative;
    display: block;
    font-weight: 600;
    color: #212121;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
  }
  .stateLicenseModal .modal-title{
    font-size: 16px;
  }
  .stateLicenseModal .license-info{
    grid-template-columns: repeat(1, 1fr);
  }
  .stateLicenseModal .license-info .info-label{
    font-size: 14px;
  }
  .stateLicenseModal .license-info .info-value{
    font-size: 14px;
  }
  .license-details-modal .close img, .stateLicenseModal .close img{
    padding: 0;
  }
  .doctor-box{
    border-radius: 12px;
  }
  .license_provider_section , .license_provider_state-section{
    padding-inline: 0;
    top: 76px;
  }

  .license-details-modal .modal-body,
  .stateLicenseModal .modal-body,
  .stateLicenseModal .modal-header {
    padding: 12px;
  }
}

.multiselect-apply-container {
    padding: 8px;
    border-top: 1px solid #eee;
    text-align: right;
    position: sticky;
    bottom: 0;
    background: #fff;
}

.multiselect-apply-container .btn:hover {
    background: #2dbdca;
    /* padding: 10px; */
    border-color: #2dbdca;
}

button#multiselectApplyBtn {
    padding: 6px 10px !important;
}

.multiselect-parent-wrapper .multiselect-dropdown {
    top: calc(100% + 5px);
    border-radius: 6px;
    max-height: 350px;
}

/* In-Page Loader Styles */
.in-page-loader {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    background: transparent;
    margin: 20px 0;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.loader-text {
    margin: 0;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .in-page-loader {
        padding: 30px 15px;
        margin: 15px 0;
    }
    
    .loader-text {
        font-size: 13px;
    }
    
    .in-page-loader .spinner-border {
        width: 1.5rem;
        height: 1.5rem;
        border-width: 2px;
    }
}
.curedose_body .bg-banner {
    overflow: unset;
}
.curedose_body .footer-section{
  z-index: 11;
}
.curedose_body .bg-banner .top-navbar{
  position: unset;
}
.curedose_body .contact-path-popup{
  margin-block: 0;
}
.curedose_body .mobile-show-menu{
  z-index: 12;
}