/* CSS Variables */
.bc-styles {
  --primary-color: #0f172a;
  --secondary-color: #00cc99;
  --blue-color: #242d6b;
  --white-color: rgb(255, 255, 255);
  --font-family: "Inter", sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --success-hover: #00b185;
  --success: #00b185;
  --success-bg: #e4f5ed;
  --bg-light-color: #f3f6f8;
  --error: #dc3545;
  --error-bg: #f3e4e6;
  --table-striped-bg: #fafafa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  background: #fbfdff url('../images/bg.svg') no-repeat center top / 100%;
  color: var(--text-color);
}

.btn-success,
.mainNavbar a,
.badgePremium,
.searchTipsBtn,
.info-card,
.footer .btn {
  transition: all .3s;
}

::placeholder {
  font-size: 0.875rem;
  color: #757575;
}

/* background: radial-gradient(circle,#e2e9f5 0%, #ffffff 100%); */
ul,
ol {
  list-style-type: none;
}
.listStyled{
  list-style-type: disc;
}
h2,
h3,
h4 {
  font-family: var(--headline2-font);
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

svg {
  display: flex;
  width: 1em;
  height: 1em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--success-hover);
}

.text-success {
  color: var(--secondary-color) !important;
}

.btn-success {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-success:hover,
:not(.btn-check)+.btn:active,
.btn:focus-visible {
  background-color: var(--success-hover);
  border-color: var(--success-hover);
}

hr {
  border-color: var(--bs-tertiary-color);
}

.display-6 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}

.hiddenTxt {
  opacity: 0;
  visibility: hidden;
  color: transparent;
}

.linkBtn {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
  border: 0;
}

.linkBtn:hover {
  background-color: var(--success-hover);
  color: #fff;
}

.linkBtnOutline {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border: 2px solid var(--secondary-color);
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  font-weight: 600;
}

.linkBtnOutline:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.innerSecHeading {
  padding: 24px 0 16px 0;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s, padding 0.3s, background 0.3s;
  backdrop-filter: blur(50px);
}

.navbar {
  padding: .5rem 0;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  height: 26px;
  transition: all .3s;
}

header h1 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin: 0;
  display: flex;
  align-items: center;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.mainNavbar {
  padding: 0 2rem;
  border: 1px solid #EDF3F5;
  box-shadow: 0px 8px 19px rgba(156, 170, 194, 0.09);
  background-color: #fff;
}

.mainNavbar a {
  font-size: 1.125rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  padding: 1rem 1rem;
  position: relative;
}

.mainNavbar a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: var(--secondary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
  border-radius: 4px 4px 0 0;
}

.mainNavbar .navbar-nav .nav-link.active.active,
.mainNavbar .navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.mainNavbar a:hover::after,
.mainNavbar a.active::after {
  transform: scaleX(1);
}

a.auth-buttons,
.navbar-toggler,
.ddWhite {
  width: auto;
  height: 40px;
  background-color: #fff;
  font-size: 1rem;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  border: 1px solid rgba(156, 170, 194, 0.10);
  align-items: center;
  justify-content: center;
  box-shadow: 0px 8px 19px rgba(156, 170, 194, 0.15);
  border-radius: 20px;
  padding: 0px 10px;
  transition: all 0.3s ease;
}

.navbar-toggler {
  width: 40px;
  border-radius: 40px;
}

.ddWhite {
  border: 0;
}

.dropdown-toggle::after {
  margin-left: .5rem;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active,
.btn.ddWhite:hover {
  background-color: var(--success);
  border: 0;
}

.dropdown-menu {
  padding: 0;
  box-shadow: 0px 8px 19px rgba(156, 170, 194, 0.35);
  border-color: #e0e5ef;
}

.dropdown-menu li:first-child .dropdown-item {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.dropdown-menu li:last-child .dropdown-item {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--success);
}

.dropdown-toggle.show::after {
  transform: rotate(180deg);
}

.dropdown-item {
  padding: 8px 16px;
}

.closeMobNavIcon {
  position: relative;
  margin-top: -40px;
  float: right;
}

.closeMobNavIcon:hover::after {
  display: none;
}

a.auth-buttons:hover,
.navbar-toggler:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.pageHeader {
  max-width: 51em;
  margin: 0 auto;
  color: var(--primary-color);
}
.pageHeader > *:last-child{
  margin-bottom: 0;
}
.pageHeader h3 {
  font-size: 1.25rem;
}

.badgePremium {
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

.badgePremium:hover {
  background-color: var(--success-hover);
  color: var(--white-color);
}

.form-section {
  box-shadow: 0px 14px 19px rgba(221, 229, 236, 0.52);
  border-radius: 1rem;
  padding: 2.5rem 2rem 2rem 2rem;
  background: #fff;
  position: relative;
  border: 1px solid #ebeef4;
}

.form-control {
  border: 2px solid #bdbdbd;
}

.form-control,
.form-select,
.btn {
  border-radius: 2rem !important;
  font-weight: 500;
  min-height: 40px;
}

.form-control,
.form-select {
  background-color: #fff;
  min-height: 40px;
  padding: 5px 16px;
}

.dateInput {
  background-image: url(../images/calendar-days.svg);
  background-repeat: no-repeat;
  background-position: left 16px center;
  background-size: 20px;
  padding-left: 50px;
}

.form-label {
  font-size: 1rem;
  font-weight: 500;
}

.flatpickr-day.today {
  border-color: var(--secondary-color);
}

.flatpickr-day.selected {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.flatpickr-day.selected:hover {
  background-color: var(--success-hover);
}

.searchTipsBtn {
  position: absolute;
  top: -24px;
  right: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--primary-color);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}

.bulb-icon {
  background: url(../images/bulb-icon.svg) no-repeat center center / 100%;
  width: 24px;
  height: 24px;
  display: inline-flex;
}

.searchTipsBtn:hover {
  background-color: #ffebb1;
  border-color: #ECB100;
  color: var(--primary-color);
}

.info-card {
  background-color: var(--white-color);
  border-radius: 1rem;
  filter: drop-shadow(0px 14px 19px rgba(221, 229, 236, 0.42));
  padding: 1.5rem;
  height: 100%;
  position: relative;
}

.info-card:hover {
  filter: drop-shadow(0px 14px 19px rgba(221, 229, 236, 0.82));
  scale: 1.05;
  z-index: 1;
}

.info-card a,
.link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.bgLight {
  background-color: var(--bg-light-color);
}

/* Notification */

.bsNotification {
  position: fixed;
  right: 20px;
  top: 24px;
  bottom: auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  z-index: 2050;
  border: 0;
  font-size: 1rem;
}

.bsNotification .toast-header {
  padding: 0;
  color: rgba(0, 0, 0, 0.88);
  font-size: 1.125rem;
  border: 0;
  margin-bottom: 8px;
  background-color: transparent;
}

.bsNotification .toast-header .btn-close {
  font-size: 12px;
}

.bsNotification .toast-body {
  padding: 0;
}

.bsNotification.error {
  background-color: var(--error-bg);
  color: var(--error);
}

.bsNotification.error .toast-header {
  color: var(--error);
}

.bsNotification.success {
  background-color: var(--success-bg);
  color: var(--success);
}

.bsNotification.success .toast-header {
  color: var(--success);
}

/* Dropdown */
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: var(--success-hover);
  color: var(--white-color);

}

.innerHeaderSec {
  padding: 24px 0;
}

.innerHeaderSec h2 {
  font-weight: 600;
}

/* Login / Register */

.signSection {
  position: relative;
  padding-bottom: 4rem;
}

.bgLogin {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 25rem;
  opacity: .035;
  z-index: -1;
  display: none;
}

.formRow {
  position: relative;
  padding-bottom: 24px;
}

.required {
  color: var(--error);
  font-size: 0.875rem;
}

.loginFormBlk .form-control,
.loginFormBlk .btn {
  min-height: 50px;
}

.loginFormBlk .form-control {
  padding-left: 20px;
  padding-right: 40px;
}

.password-wrapper {
  position: relative;
}

.toggle-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.fieldError {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-control.is-invalid {
  background-image: none;
  /* Remove default BS icon */
  padding-right: 2.5rem;
  /* Space for our custom icon */
}

.is-invalid~.invalid-feedback,
.is-invalid~.invalid-tooltip,
.was-validated :invalid~.invalid-feedback,
.was-validated :invalid~.invalid-tooltip {
  display: block;
}

.form-text {
  font-size: 0.875rem;
}

.formSecTitle {

  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  margin-top: 2rem;
}

.formSecBody {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 2rem;
  margin-top: 1rem;
}


.checks {
  list-style: none;
  margin: .5rem 0 0 0;
  padding: 0;
}

.checks li {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 0 4px;
  font-size: .75rem;
  line-height: 1;
}

.checks li .badge {
  display: block;
  width: 100%;
  height: 4px;
  padding: 0;
  border-radius: 4px;
}

.pass .badge {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  background: var(--secondary-color);
}

.fail .badge {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  background: var(--error);
  ;
}

.overall.valid {
  color: var(--secondary-color);
}

.overall.invalid {
  color: var(--error);
  ;
  font-size: 0.875rem;
}

.form-control.error {
  border-color: var(--error);
  ;
}

.form-control.error:focus {
  box-shadow: 0 0 0 .25rem rgba(239, 68, 68, 0.25);
}

.hidden {
  display: none;
}

.neutral .badge {
  background: #DBDFE9;
}

/* About Us */

.commonPageSection {
  position: relative;
  padding-bottom: 4rem;
}

.commonPageSection h3 {
  color: var(--secondary-color);
}

/* My account */
.myaccountCard {
  transition: all 0.3s ease;
  color: var(--secondary-color);
}

.myaccountCard:hover {
  transform: scale(1.05);
  /* transform: translateY(-10px) scale(1.05); */
  background-color: var(--secondary-color);
  color: #fff;
}

.cardIcon {
  font-size: 5rem;
}

.cardIcon svg {
  stroke-width: 1px;
}

/* Table */
.tblWrap {
  border: 1px solid #dee2e6;
  border-radius: 6px;
}

.table {
  margin-bottom: 0;
}

.table th {
  font-weight: 600;
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.priceCol {
  width: 150px;
  min-width: 150px;
}

.actionCol {
  min-width: 180px;
  width: 180px;
}

.tblWrap .table-striped>tbody>tr:nth-of-type(odd)>* {
  background: var(--table-striped-bg);
  box-shadow: none;
}

/* Confirm Search */
.requestHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.requestHeader h4 {
  margin-bottom: 0;
}

.requestBlk, .cardStyle {
  background: #fafafa;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 8px 19px rgba(156, 170, 194, 0.09);
}

.requestBlk li:not(:last-child) {
  margin-bottom: 10px;
}

.requestBlk .label {
  font-weight: 500;
  display: inline-block;
  width: 150px;
}

.requestBlk .price {
  font-weight: bold;
  color: #000;
}

.btnWrap {
  padding-top: 24px;
}

/* No records found */

.nrfInfo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.nrfInfo .col {
  flex: 1;
}

.nrfInfo ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.searchStatus {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
}

.searchComplete {
  color: var(--success);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.searchComplete .searchCheck {
  font-size: 2.5rem;
}

.searchStatus strong {
  color: #dc3545;
  font-weight: 600;
}

.orderList {
  list-style-type: decimal;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  padding-top: 1rem;
}

.disclaimer h4 {
  color: var(--secondary-color);
}
.accordionItem:not(:last-child) {
  margin-bottom: 16px;
}
.accordionHeader {
  background-color: var(--success);
  color: var(--white-color);
  padding: 8px 16px;
  border-radius: 8px 8px 0 0;
  display: flex;
  gap: 15px;
  justify-content: space-between;
}

.accordionItemActive .accordionHeader {
  border-radius: 8px;
}

.accordionToggle {
  background: rgba(0, 0, 0, 0.10);
  border: 2px solid #fff;
  color: #fff;
  border-radius: 40px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all .3s;
  transform: rotate(180deg);
}

.accordionToggle:hover {
  background: rgba(255, 255, 255, 1);
}

.accordionToggle.active {
  transform: rotate(0deg);
}

.accordionHeader h4 {
  margin-bottom: 0;
}

.accordionHeaderInner {
  display: flex;
  gap: 8px;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.match-type {
  background-color: rgb(23 23 23 / 20%);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgb(0 0 0 / 6%);
}

.accordionBody {
  padding: 16px;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  background-color: #fff;
}

.offense {
  margin: 16px 0 0 0;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
}

.offenseHeader {
  background: #2f3e62;
  color: #fff;
  font-weight: 600;
  padding: 5px 10px;
}

.offenseBody {
  padding: 10px;
}

.offenseBody ul, .resultDetails ul{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0
}
.resultDetails ul{
  padding-left: 10px;
}
.offenseBody ul li, .resultDetails {
  font-weight: 400;
}

.offenseBody ul li label, .resultDetails label {
  font-weight: 600;
  min-width: 240px;
}
.offenseBody ul li.hasTitle label{
  font-weight: 600;
  color: var(--success);
}

/* Coverage page */
.textLeft{
  text-align: left;
}
.cardStyle{
  position: sticky;
  top: 20px; 
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 190px);
  background: #fff;
  padding: 0 0 8px 0;
  position: sticky;
  top: 20px; 
  z-index: 100;
  transition: all .3s;
}
.cardStyle.is-sticky {
  max-height: calc(100vh - 40px);
}
.leftFilter{
  padding: 8px 16px 8px 16px;
  background-color: #f3f3f3;
  margin-bottom: 8px;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex-shrink: 0;
}
.leftFilter input{
  padding-right: 30px;
  min-height: 32px;
  height: 32px;
  border-width: 1px;
}
.inputSearch{
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: #bdbdbd;
}
.state-coverage {
  flex: 1; 
  overflow-y: auto; 
  min-height: 0; 

  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  padding: 8px 8px 8px 16px;
  margin: 0;
}
.state-coverage li {
  flex: 1;
  display: flex;
}
.state-coverage li a{
  background-color: var(--bg-success);
  border: 1px solid var(--secondary-color);
  border-radius: 4px;
  padding: 4px 8px;
  width: 100%;
  font-size: 16px;
}
.state-coverage li a{
  transition: background-color 0.3s;
}
.state-coverage li a:hover, .state-coverage li a.active{
  background-color: var(--success-hover);
  color: #fff;
  font-weight: 600;
}
.no-results{
  text-align: center;
}
.activeSection {
    box-shadow: 0px 8px 19px rgba(0, 0, 0, 0.15);
}
.recordsDataTblWrap .tblWrap:not(:last-child) {
  margin-bottom: 16px;
}
.tblWrap .table th:first-child{
  border-top-left-radius: 6px;
}
.tblWrap .table th:first-child{
  border-top-left-radius: 6px;
}
.tblWrap .table th:last-child{
  border-top-right-radius: 6px;
}
.hasSearchIcon span{
  font-size: 1.25rem;
  margin-right: 8px;
}

/* Footer */
.footerSection {
  padding: 40px 0;
  background-color: #0f172a;
  color: #fff;
}

.footerLinks a {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footerLinks a span {
  color: var(--secondary-color);
}

.footerLinks a:hover {
  color: var(--secondary-color);
}

.footerLinks a span svg {
  fill: var(--secondary-color);
}