:root {
    --nested-list-indent: 0em !important;
}

.dblm-tab-scroll-wrapper {
	position: relative;
}

.dblm-tab-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
}

.dblm-tab-scroll::-webkit-scrollbar {
	display: none;
}
.dblm-tab-scroll {
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.dblm-tab-arrow {
	position: absolute;
	top: 23%;
	transform: translateY(-23%);
	font-size: 24px;
	color: #888;
	background: white;
	padding: 5px 10px;
	cursor: pointer;
	z-index: 1;
	user-select: none;
	display: none;
}
.dblm-tab-arrow-left {
	left: 0;
}
.dblm-tab-arrow-right {
	right: 0;
}

@media (max-width: 768px) {
	.dblm-tab-arrow {
		display: block;
	}
}

.dblm-tab-menu {
	display: flex;
	gap: 30px;
	list-style: none;
	padding: 0;
	margin-bottom: 25px;
	border-bottom: 1px solid #eee;
}

.dblm-tab-menu li {
	padding: 8px 0;
	cursor: pointer;
	position: relative;
	font-weight: 500;
	color: #000;
}

.dblm-tab-menu li.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #f2b800;
}

.dblm-group-wrap {
	display: none;
}

.dblm-group-wrap.active {
	display: block;
}

.dblm-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.dblm-card {
	min-width: 0;
	border: 0;
	background: #F7F7F7;
	border-radius: 0;
	transition: box-shadow 0.2s;
}

.dblm-card a {
	display: block;
	text-decoration: none;
	color: inherit;
	padding: 20px;
}

.dblm-card-inner {
	display: flex;
	align-items: center;
	gap: 25px;
}

.dblm-icon img {
	width: 36px;
	height: 36px;
	object-fit: contain;
}

.icon-info {
	display: flex;
	align-items: center;
	width: 100%;
	border-top: #D4A011 solid 0.5px;
	padding-top: 24px;
	gap: 15px;
}

.dblm-title {
	flex: 1;
	font-family: 'Lora', serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	text-transform: capitalize;
}

.dblm-arrow img {
	width: 18px;
	height: auto;
}

.dblm-tab-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.dblm-tab-menu {
	flex-wrap: nowrap;
	min-width: max-content;
}
.dblm-tab-scroll::-webkit-scrollbar {
	display: none;
}
.dblm-tab-scroll {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;     /* Firefox */
}

@media (max-width: 991px) {
	.dblm-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.dblm-grid {
		grid-template-columns: 1fr;
	}
	
	.dblm-tab-menu {
		display: flex;
		flex-wrap: nowrap;
		min-width: max-content;
		list-style: none;
		padding: 0;
		margin: 0 30px 25px 30px; /* leave space for arrows */
		gap: 30px;
	}
}

.page-banner {
    margin-top: -80px;
    padding-top: 80px;
  }

/* Apply Poppins to all form fields globally */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
select,
button,
.elementor-field,
.elementor-field-textual {
  font-family: 'Poppins', sans-serif !important;
}

/* Make entire search form rounded and styled */
#rounded-search .e-search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 999px;
    padding-left: 20px;
    overflow: hidden;
    height: 44px;
    position: relative;
    max-width: 100%;
  }
  
  /* Input field styling */
  #rounded-search .e-search-input {
    border: none;
    background: transparent;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #000;
    outline: none;
    height: 44px;
    padding: 4px 4px 4px 0px;
  }

.gmi.gmi-zoom-search {
	background: #D4A011;
	border: none;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 8px;
    cursor: pointer;
    flex-shrink: 0;
}
  
  #rounded-search .e-search-input::placeholder {
    color: #aaa;
    opacity: 1;
  }
  
  /* Search button */
  .rounded-search .e-search-submit {
    background: #D4A011;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    cursor: pointer;
    flex-shrink: 0;
  }
  
  #rounded-search .e-search-submit svg {
    fill: #fff;
    width: 16px;
    height: 16px;
    margin: 0;
  }

  #rounded-search .e-search-label {
    display: none;
  }

  .elementor-button-info .elementor-button {
    background-color: #fff !important;
    color: #D4A011;
    border: 1px solid #D4A011;
    font-weight: 500;
  }
  
  .elementor-button-info .elementor-button:hover {
    background-color: #D4A011  !important;
    color: #fff;
  }

  /* Initial header state */
.site-header {
    transition: background-color 0.3s ease;
    background-color: transparent;
  }
  

/* Make entire search form rounded and styled */
#rounded-search-top .e-search-form {
    display: flex;
    align-items: center;
    background: #F7F7F7;
    border-radius: 999px;
    padding-left: 20px;
    overflow: hidden;
    height: 44px;
    position: relative;
    max-width: 100%;
  }
  
  /* Input field styling */
#rounded-search-top .e-search-input {
    border: none;
    background: transparent;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #000;
    outline: none;
    height: 44px;
    padding: 4px 4px 4px 0px;
  }
  
#rounded-search-top .e-search-input::placeholder {
    color: #aaa;
    opacity: 1;
  }
  
  /* Search button */
#rounded-search-top .e-search-submit {
    background: #D4A011;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    cursor: pointer;
    flex-shrink: 0;
  }
  
 #rounded-search-top .e-search-submit svg {
    fill: #fff;
    width: 16px;
    height: 16px;
    margin: 0;
  }

#rounded-search-top .e-search-label {
    display: none;
  }

.gm-dropdown-menu li .gm-grid-container {
	padding: 0;
}

@media (min-width: 1024px) {
    body .gm-navbar .gm-container {
		padding-left: 0px !important;
		padding-right: 0px !important;
		margin: 0 auto;
		max-width: 1440px;
	}
}

.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon, 
.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon {

}

.offence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offence-term-card {
    display: block;
    text-align: left;
}

.offence-term-card a {
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: inherit;
}

.term-flex {
    display: flex;
   /* align-items: flex-start; */
	align-items:center;
    gap: 16px;
}

.term-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 3px;
}

.term-text {
    flex: 1;
}

.term-title {
    font-weight: 600;
    margin: 0 0 4px;
    color: #333;
	font-family: "Poppins";
	font-size: 14px;
}

.term-description {
    color: #666;
    margin: 0;
}

.elementor-widget-text-editor p:first-child, .main-content h2 {
	margin-top: 0;
	padding-top: 0;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
}
.breadcrumb a {
    text-decoration: none;
    color: #0073aa;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

.elementor-toc__list-item-text.elementor-item-active {
  position: relative;
  padding-left: 24px; /* space for the arrow */
}

.elementor-toc__list-item-text.elementor-item-active::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background-color: #000; /* arrow color */
  mask: url('https://dblm2025dev.wpenginepowered.com/wp-content/uploads/2025/05/Interface-Icons.svg#icon-arrow-right') no-repeat center;
  -webkit-mask: url('https://dblm2025dev.wpenginepowered.com/wp-content/uploads/2025/05/Interface-Icons.svg#icon-arrow-right') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.elementor-toc__list-item-text.elementor-item-active {
  font-weight: bold;
}
.elementor-toc__list-wrapper > .elementor-toc__list-item {
  margin-bottom: 0.5em;
  padding: 16px;
  border-bottom: 1px solid #D4A011;
}

.elementor-toc__list-wrapper .elementor-toc__list-wrapper .elementor-toc__list-item {
  padding: 0;
  border: none;
}

.elementor-toc__body {
	padding: 0 !important;
}

body{
    margin: 0;
    padding: 0;
}

body .elementor-button-info .elementor-button {
    background-color: #fff;
    color: #D4A011;
    border: 1px solid #D4A011;
    font-weight: 500;
}
  
body .elementor-button-info .elementor-button:hover {
    background-color: #D4A011;
    color: #fff;
}
  
body .body-content p a {
      text-decoration: underline;
}
body .body-content h2 {
    font-size:28px;
    font-weight:400;
    line-height: 34px;
}

body .body-content ul li::marker, body .body-content ol li::marker {
    color: #D4A011;
    
}

body .body-content table {
	width: 100%;
}

body .body-content table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #D4A011;
  font-family: Arial, sans-serif;
}

body .body-content table th {
  background-color: #f9f9f9;
  font-weight: bold;
  text-align: left;
}

body .body-content table td,
body .body-content table th {
  border: 1px solid #D4A011;
  padding: 12px;
  vertical-align: top;
}

/* Default: show on desktop */
.floating-buttons {
  display: flex;
}



.floating-buttons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-button {
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.floating-button img {
  margin-right: 0px;
  display: inline-block;
}

.floating-buttons .mobile-svg {
  display: none;
}
/* Hide on screens smaller than 1024px */
@media screen and (max-width: 1023px) {
  .floating-buttons {
    left: 0;
    bottom: -30px;
    top: auto !important;
    width: 48%;
    flex-direction: row;
	display: none;
    border-radius: 0 18px 0 0;
    background: rgb(212, 160, 17);
    padding: 7px;
  }
  .floating-buttons .mobile-svg {
    display: block;
  }
  .floating-buttons .desktop-svg {
    display: none !important;
  }
  .floating-buttons .es-badge-title {
    display: none !important;
  }
  body .floating-buttons .es-badge-container {
    border-radius: 0 !important;
    padding: 0 !important;
  }
  .floating-buttons a {
    background: rgb(212, 160, 17);
    border-radius: 25px;
  }
}

.floating-buttons.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.elementor-toc__list-item .elementor-toc__list-wrapper {
  margin: 0;
}

.bullet-classic .elementor-post__title a::before {
  content: "";
 position: absolute;
 left: 0;
 top: 15px;
 transform: translateY(-50%);
 width: 6px;
 height: 7px;
 background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A//www.w3.org/2000/svg'%20viewBox%3D'0%200%206%207'%3E%3Ccircle%20cx%3D'3'%20cy%3D'3.54688'%20r%3D'3'%20fill%3D'%23D4A011'/%3E%3C/svg%3E");
 background-repeat: no-repeat;
 background-size: contain;

}

.bullet-classic .elementor-post__title a {
 position: relative;
 padding-left: 16px; /* space for the bullet */
 display: inline-block;
}

.gm-navigation-drawer.gm-navigation-drawer--open {
  width: 80%;
}


.gm-navigation-drawer.gm-navigation-drawer--open .gm-mega-menu__item__title {
  font-weight: 400 !important;
}

.gm-menu-btn-close-mobile-drawer .hamburger .hamburger-inner, .gm-menu-btn-close-mobile-drawer .hamburger .hamburger-inner::after, .gm-menu-btn-close-mobile-drawer .hamburger .hamburger-inner::before {
  background-color: #000 !important;
}

.gm-navigation-drawer--mobile .gm-navbar-nav > .gm-menu-item > .gm-anchor,
.gm-navigation-drawer--mobile .gm-dropdown-menu .gm-anchor {
  font-weight: 400 !important;
}

.gm-navigation-drawer--mobile .gm-navigation-drawer .gm-caret {
  color: #000 !important;
}

.es-badge-container {
	padding: 0 !important;
	margin: 0 !important;
}
.es-layout-sidebar-inner {
	display: block !important;
}
.es-badge-total-reviews {
	color:#ffffff !important;
}

.elementor-toc__list-item .elementor-toc__list-wrapper {
    margin-inline-start: 12px !important;
}


.ez-toc-heading-level-2 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #D4A011;
}
.ez-toc-heading-level-2 {
    font-size: 14px !important;
}

.ez-toc-heading-level-3 {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
}

#ez-toc-container ul.ez-toc-list li.first-active > a {
    color: #a36e03 !important;
    padding-left: 20px;
}

#ez-toc-container ul.ez-toc-list li.first-active > a:before{
	content: '';
    position: absolute;
    left: 10px;
    margin-top: 10px;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    background-color: #000;
    mask: url(/wp-content/uploads/2025/05/Interface-Icons.svg#icon-arrow-right) no-repeat center;
}

.ez-toc-title-toggle{
    display: none !important;
}

div#ez-toc-container {
    border: 0 !important;
}

div#ez-toc-container ul li, div#ez-toc-container ul li a {
    font-weight: 400 !important;
    font-size: 14px !important;
}
.dblm-lawyer-name {
	text-align: center;
}

#main-content p a:not(.elementor-button-link) {
    text-decoration: underline;
	color: blue;
}

.elementor-widget-text-editor p a {
  text-decoration: underline;
  color: blue;
}