/* Button styles */
.step-btn {
  padding: 10px 20px;
  margin: 10px 5px 0 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.step-btn-next {
  background-color: #0073aa;
  color: #fff;
}

.step-btn-prev {
  background-color: #ccc;
  color: #333;
}
@keyframes fieldFlash {
  0% { background-color: #fff3f3; }
  100% { background-color: white; }
}

.field-error {
  animation: fieldFlash 1s ease-out;
}

input.field-error {
  border: 2px solid red !important;
  background-color: #fff3f3 !important;
}

select.field-error {
  border: 2px solid red !important;
  background-color: #fff3f3 !important;
}
textarea.field-error {
  border: 2px solid red !important;
  background-color: #fff3f3 !important;
}
/* Progress bar */
.step-progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.step-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.step-wrapper, .step, .step-form {
  box-sizing: border-box;
}

.step {
  padding-bottom: 60px; /* prevent buttons from overlapping */
}

.step-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.step-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 16px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
.publish-btn {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.publish-btn.show {
  opacity: 1;
  visibility: visible;
}
.step-circle {
  text-align: center;
  flex: 1;
}
.circle-number {
  background: #ccc;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
}
.step-circle.active .circle-number {
  background: #0073aa;
}
.step-circle.completed .circle-number {
  background: #2ecc71;
}
.circle-label {
  display: block;
  font-size: 12px;
  margin-top: 5px;
  color: #555;
}
/* Highlight CubeWP Select2 fields when .field-error is added */
.cwp-frontend-form-container 
.cwp-frontend-section-container 
.cwp-frontend-section-content-container 
.cwp-field-container 
.select2-selection--multiple.field-error{
  border: 2px solid red !important;
  background-color: #fff3f3;
}

/* Hide all steps by default */
.step-form .step {
  display: none;
}


.step-form .step {
  display: none;
  opacity: 0;
  position: absolute;
  width: 100%;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.step-form .step.active {
  display: block;
  opacity: 1;
  position: relative;
  z-index: 2;
}

/* Slide animations */
.slide-in-right { animation: slideInRight 0.4s forwards; }
.slide-out-left { animation: slideOutLeft 0.4s forwards; }
.slide-in-left { animation: slideInLeft 0.4s forwards; }
.slide-out-right { animation: slideOutRight 0.4s forwards; }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-100px); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-100px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideOutRight {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(100px); }
}

/* Progress line with percentage */
.step-progress-bar-line {
  position: relative;
  background: #eee;
  height: 10px;
   width: 90%;
  border-radius: 6px;
  margin-bottom: 20px;
  overflow: hidden;
}
.step-progress-bar-fill {
  height: 100%;
  background: #007bff;
  width: 0%;
  transition: width 0.4s ease;
}
.step-progress-bar-text {
  text-align: right;
  font-size: 12px;
  margin-top: 4px;
  color: #666;
}

/* Error highlight */
.field-error {
  border: 2px solid red !important;
  background-color: #fff3f3 !important;
}
.select2-selection--multiple.field-error {
  border: 2px solid red !important;
  background-color: #fff3f3;
}
.step {
  position: relative !important; /* override any absolute step styling */
}
/* Submit visibility */
.publish-btn {
  margin-top: 20px;
  background-color: #007bff;
  color: white;
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
.publish-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}


/* Circular progress at top-right */
.circular-progress-container {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 48px;
  height: 48px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
}
.progress-ring {
  transform: rotate(-90deg);
  position: absolute;
}
.progress-ring-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 5;
}
.progress-ring-circle {
  fill: none;
  stroke: #007bff;
  stroke-width: 5;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.35s;
}
.progress-ring-label {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: bold;
  color: #333;
}

.page-id-3 p, .page-id-3329 p{
    font-size: 15px;
    line-height: 1.5em;
    font-weight: 400;
    font-family: Inter;
    color: #5b5b5b;
    margin: 0 0 0 0;
}
.yellow-info{
	
}
.cwp-booster-form-section {
    padding: 32px 15px !important;
 border-radius: 10px 10px 0 0;
 display: none;
 background: #fff;
}
.cwp-booster-radio >label{
display:none !important;
}
.cwp-field-container.cwp-field-radio.cwp-booster-radio .cwp-field-radio h6 {
    font-size: 18px;
    font-weight: bold;
    color: #101828;
    line-height: 24px;
    margin: 3px 0 0 0;
}
.cwp-field-container.cwp-field-radio:not(.cwp-field-radio-toggle) .cwp-field-radio-container {
 display: flex;
 justify-content: space-between !important;
 align-items: flex-start;
 flex-wrap: wrap;
    margin: 15px 0 0 0;
}
.cwp-field-container.cwp-field-radio:not(.cwp-field-radio-toggle) .cwp-field-radio-container .cwp-field-radio {
    margin: 0 0 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    padding-left: 20px !important;
	  gap:20px !important;
}
.yb-single-post-title {
    justify-content: space-between;
}

.yb-single-post-card-content {
    width: 100%;
    padding: 0px;
}
.yellowbooks-header-is-sticky {
    box-shadow: none !important;

}
.cwp-cpt-single-oembed.Youtube-emberd{	
	width:100%;
  margin-bottom: 0px;
	float: none;
}
.tippy-box[data-theme~='light'] {
  font-weight: normal;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}

.cwp-cpt-single-oembed.Youtube-emberd iframe{
		border: 2px solid #eee;
	border-radius:12px;
}

.cachidden{
	display:none;
}
.yellowbooks-blogs{
margin-top:50px;	
}
.has-background{
	border-radius: 5px;
	background:#fbf7eb !important;
	border: 1px dotted #bf9000;
}
.has-background>strong{
	color:#bf9000;

}
.blog-post p a, .blog-post li a{
	text-decoration: underline !important;
	color:#3d85c6 !important;
	font-size: 16px;
}
#business-form .elementor-shortcode input{
	height:45px;
	border: 2px solid #eee !important;
	border-radius:8px;
}
.searchwp-live-search-result--img{
  border:1px solid #eee;
	padding:10px;
	border-radius:5px;
}
#breadcrumbs, .searchwp-live-search-result--desc{
	white-space: nowrap;
  overflow: hidden;
	text-overflow: ellipsis;
}
.blog-post li{
 font-size: 17px !important;
	line-height: 1.5em;
	list-style-type: initial;
	
}
.page-id-3674 p,.page-id-4900 p{
	font-size:16px;
	line-height: 1.5em;
}
.status-list>span{
	display:none;
}
.yellowbooks-single-post-content {
 padding: 10px 0 0 !important;
 margin: 7px 0 0 0 !important;
 z-index: 0 !important;
}
.emqa-search input{
	border: 2px solid #eee !important;
	border-radius:8px !important;
}
.CodeMirror {
  height: auto;
  border: 2px solid #eee !important;
  border-bottom-left-radius: 8px;
 border-bottom-right-radius: 8px;
z-index: 0 !important;
}
p.form-submit{
	margin-top:20px;
}
textarea{
	border: 2px solid #eee !important;
}
#yellowbooks-single-post{
	margin-bottom: 35px;
}
.yb-post-title h1{
	font-size:30px;
	line-height:1.2;
}
.yellowbooks-author{
	 margin-bottom: 25px;
}
.yellow-author{
		display:flex;
}
.yb-autor-user{
margin-left:10px;	
}
.yb-autor{
width:40px;
	height:40px;
}
.yb-autor img{
	border-radius:50px;
	border:3px solid #effb93;
}
.yb-featured-image{
	margin-bottom:25px;
}
.yb-featured-image img{
	border-radius:12px;
}
.yb-share{
 font-size:30px;
 float:right;
 margin-top:-30px;
 cursor:pointer;
 color:#bcbcbc;
}
.yellowbooks-single-post-card {
    display: flex;
    padding: 15px 0;
    gap: 15px;
}
.editor-toolbar {
 border-top: 2px solid #eee;
 border-left: 2px solid #eee;
 border-right: 2px solid #eee;
 border-top-left-radius: 8px;
 border-top-right-radius: 8px;
}
.emqa-captcha input{
	  height: 40px;
		border:2px solid #eee;
	border-radius:8px;
}
.emqa-select {
    height: 40px;
    border-color: #eee;
	border:2px solid #eee;
	border-radius:8px;
}
.emqa-question-filter .emqa-sort-by {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    color: #555 !important;
    line-height: 24px;
    font-size: 14px !important;
    outline: 0;
    width: 100px;
}
.follow{
  width: 100px;
	margin-top:10px;
	padding: 2px 10px;
	border: 1px solid #eee;
	margin-left: 16.9px;
	text-align:center;
	border-radius:5px;
	cursor:pointer;
}
.socialpop{
  display:	flex;
	justify-content:space-between;
	gap:10px;

}
.pub-date{
	display:flex;
	justify-content:center;
	text-transform: uppercase;
}
.pub-date-list1{
	border:1px solid #eee;
	padding:2px 10px;
border-radius:6px 0px 0px 6px;
	background:#fff;
}
.pub-date-list2{
	border:1px solid #eee;
	padding:2px 10px;
border-radius:0px 6px 6px 0px;
	background:#fff;
}
.veri-body>p{
	font-size: 15px;
  line-height: 1.8em;
	text-align:center;
}
.veri-body{
	padding:15px;
}
.veri-box{
	width:100%;
	border:2px solid #eee;
	border-radius:10px;
	background-image: url("/img/ver.svg") !important;
 background-size: cover;
 margin-bottom: 20px;

}
.veri-box-unclaimed{
	width:100%;
	border:2px solid #ffd7d7;
	border-radius:10px;
	background-image: url("/img/unclaimed2.svg") !important;
  background-size: cover;
  margin-bottom: 20px;
}

.veri-heading-unclaimed{
	display:flex;
	background: #ffd7d7;
	padding:10px;
	height:45px;
	border-radius:8px 8px 0 0px
}
span.veri-h2-unclaimed{
	font-size:20px;
	font-weight:500;
	color:#a40909;
	align-self:center;
	padding-left:10px;
	font-style:italic;
}
.veri-box-gold{
	width:100%;
	border:2px solid #e4d794;
	border-radius:10px;
	background-image: url("/img/gold2.svg") !important;
  background-size: cover;
  margin-bottom: 20px;

}
.veri-heading-gold{
	display:flex;
	background: #e4d794;
	padding:10px;
	height:45px;
	border-radius:8px 8px 0 0px
}
span.veri-h2-gold{
	font-size:20px;
	font-weight:500;
	color:#8d7114;
	align-self:center;
	padding-left:10px;
	font-style:italic;
}
.veri-button{
	display:flex;
  margin-top:	30px;
	margin-bottom:30px;
	padding:15px;
	justify-content:center;
}
.veri-button a{
	background:#fff;
	padding: 2px 15px;
	border-radius:10px
}
.veri-heading{
	display:flex;
	background: #eafeba;
	padding:10px;
	height:45px;
	border-radius:8px 8px 0 0px
}
span.veri-h2{
	font-size:20px;
	font-weight:500;
	color:#000;
	align-self:center;
	padding-left:10px;
	font-style:italic;
}
.remodal {
    border-radius: 8px;
}
.ribbon-con{
	margin-top:-29px
}

.Review-section.yellowbooks-single-content-section {
    padding: 0 0 30px 0;
    border-bottom: 0px solid #F5F5F5 !important;
	margin-bottom: 0px;
}
.modal-header {
  border-bottom: 1px solid #f8f8f8 !important;

}
p a{
	text-decoration: underline !important;
	color:#3d85c6 !important
}

.ribbon {
  font-size: 14px;
  font-weight: bold;
  color: #000;
}
.ribbon {
  --c: #C8CF02;
  
  padding: .6em 1.3em; /* you may need to adjust this based on your content */
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
  z-index: 0;
  width: fit-content;
  box-sizing: border-box;
}
.ribbon:before {
  content:"";
  position: absolute;
  z-index: -1;
  inset: 50% 0 auto;
  aspect-ratio: 1;
  background: color-mix(in srgb, var(--c), #000 35%);
  clip-path: polygon(calc(100%/3) 0,calc(200%/3) 0,100% 90%,calc(200%/3) 100%,calc(100%/3) 0,calc(200%/3) 0,calc(100%/3) 100%,0 90%);
}
.ribbon:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(35% 35%,#0000 96%,#0003 97% 99%,#0000) var(--c);
  clip-path: polygon(100.00% 50.00%,89.66% 55.22%,98.30% 62.94%,86.96% 65.31%,93.30% 75.00%,81.73% 74.35%,85.36% 85.36%,74.35% 81.73%,75.00% 93.30%,65.31% 86.96%,62.94% 98.30%,55.22% 89.66%,50.00% 100.00%,44.78% 89.66%,37.06% 98.30%,34.69% 86.96%,25.00% 93.30%,25.65% 81.73%,14.64% 85.36%,18.27% 74.35%,6.70% 75.00%,13.04% 65.31%,1.70% 62.94%,10.34% 55.22%,0.00% 50.00%,10.34% 44.78%,1.70% 37.06%,13.04% 34.69%,6.70% 25.00%,18.27% 25.65%,14.64% 14.64%,25.65% 18.27%,25.00% 6.70%,34.69% 13.04%,37.06% 1.70%,44.78% 10.34%,50.00% 0.00%,55.22% 10.34%,62.94% 1.70%,65.31% 13.04%,75.00% 6.70%,74.35% 18.27%,85.36% 14.64%,81.73% 25.65%,93.30% 25.00%,86.96% 34.69%,98.30% 37.06%,89.66% 44.78%); 
}
.inbox-reply-form .cubewp-inbox-input-group {
    align-items: center;
    border: 1px solid #E3E8E7;
    border-radius: 24px;
    display: flex
;
    flex-direction: row;
    height: 47px;
    justify-content: space-between; 
    margin: 0;
    padding: 14px 24px;
    width: 100%;
    background: #ffffff;
}
.cwp-inbox-conversations-container .cwp-inbox-conversation-chat-container .cwp-inbox-conversation-chats {
    height: 100%;
    overflow: auto;
    padding: 18px 24px;
    background: #F9FAFB;
    max-height: calc(99vh - 225px) !important;
}
.cwp-inbox-conversation-new-chat {
    padding: 10px 20px 10px !important;
 position: fixed;
  bottom: 0;
	width:48.5%;

}
.yellowbooks-header-is-sticky .d-lg-block{
	display:none !important;
}
.share-icon{
	font-size:20px;
  margin-left: 5px;
  margin-top: 3px;
  color: #bcbcbc;
  cursor: pointer;
    white-space: nowrap;
    border: 2px solid #eee;
    padding: 0px 5px;
    border-radius: 5px;
}
.save-share {
    display: flex;
    align-items: center;
}
.business-contain h4{
	display:none !important;
}
.yellowbooks-single-content-section {
    padding: 0 0 30px 0;
    border-bottom: 2px solid #F5F5F5;
    margin-bottom: 30px;
}
.cwp-cpt-single-messages-form-container h4{
	width:100% !important;
	padding-top:30px;
	margin-bottom:-5px !important;
}
.gallery-class{
 padding-top:20px !important;
	border-top:2px dashed #eee !important;
	margin-top:10px !important;
}
.business-contain .cwp-cpt-single-text{
	width:100%;
	border-bottom: 2px dashed #eee;
	padding-bottom:12px;
}
.business-contain .cwp-cpt-single-text p{
	margin-bottom:10px
}
.cwp-search-filters .cwp-reset-search-filters {
border: 0px solid #e0e0e0 !important;
display: flex;
justify-content: space-between;
margin-bottom: 15px;
}
.cwp-dashboard-post-terms.keyword{
	display:none !important;
}
.cwp-search-filters-fields {

    border: 0px solid #e0e0e0 !important;

}
.cwp-booster-form-fields .cwp-field-radio-container label{
	padding-right:4px;
}
.cwp-user-dashboard .cwp-user-dashboard-tab-content-container {
    width: 100%;
    margin-bottom:30px;
    overflow: hidden;
    min-height: 100vh;
    background: transparent;
}
input:disabled {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAIklEQVQIW2NkQAKrVq36zwjjgzhhYWGMYAEYB8RmROaABADeOQ8CXl/xfgAAAABJRU5ErkJggg==) repeat !important;
}
.h-footer a{
 border:1px dashed	#000;
	padding:1px 10px !important;
	border-radius:20px;
}
.h-footer a:hover{
 border:1px dashed	#000;
 text-decoration:none !important;
}
.yellowbooks-widget>h5::after {
	border-top: 3px solid #e7ef06 !important;
}
.select2-container .select2-dropdown{
	z-index: 9999 !important;
}

.cac-field{
	margin: 0px !important;
}
.Cac-cerfied, .cachidden{
	pointer-events: none !important;
}
.Cac-cerfied .cwp-checkbox-container, .cachidden{
	display:flex;
	color:#d8ffe8 !important;
}
.cachidden{
	display:none !important;
}
.cwp-frontend-section-container .cwp-field-container {
    margin: 0px !important;
}
.woocommerce-error {
  background-color: #fcebea;
  border-left: 4px solid #e53e3e;
  padding: 10px 15px;
  color: #cc1f1a;
  font-size: 14px;
  margin: 0;
  border-radius: 4px;
}
.cac-verification-note {
  background: #e5f6ea;
  color: #2f855a;
  border-left: 4px solid #38a169;
  padding: 10px;
  font-size: 14px;
  margin-top: 6px;
  border-radius: 4px;
}

.cwp-single-widget.cwp-shortcode-widget {
    width: 100%;
    padding: 0px;
}
.select2-container .select2-dropdown{
	border: var(--wc-form-border-width, 2px) solid #e9ecef !important;
}
.select2-search--dropdown {
    padding: 8px !important;
}
.cubewp-social-logins .cubewp-social-login-separator {
    margin: 15px 0 15px 0 !important;
}
.cwp-frontend-form-container .cwp-field-container {
	padding: 10px;
}
.yb-business-hours-fields .cwp-required, .yb-business-hours-fields .description{
	display:none !important;
}
.cwp-frontend-form-container .cwp-field-container .description {
    margin: 5px 0 5px 0 !important;
color: #6c757d !important;
}
.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
    border-radius: 8px !important;
    box-shadow: none !important;
    border: 2px solid #eee;
	background: #fffaec;
	color:#000 !important;
}

.wc-block-components-form .wc-block-components-text-input.is-active input[type=email],.wc-block-components-text-input.is-active input[type=email]{
	border:2px solid #eee;
}
.wc-block-components-address-card {
    border: 2px solid hsla(0, 0%, 7%, .11) !important;
    border-radius: 8px !important;
}
.wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill {
    border: 2px solid hsla(0, 0%, 7%, .11) !important;
    border-radius: 8px !important;
}
.wp-block-woocommerce-checkout-order-summary-block {
    border: 2px solid hsla(0, 0%, 7%, .11) !important;
    border-radius: 8px !important;
}
body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    border: 0px;
    border-radius: 5px;
    color: #000;
    background: #e7ef06;
}
.page-id-80 .search-form-fields select{
    border: 0rem solid #E0E0E0;
	  padding: 5px 30px !important;
}
.cwp-dashboard-post {
    background: #fff;
    margin-bottom: 24px;
    border: 1px solid #eee !important;
	  border-radius:10px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.cwp-dashboard-post-top {
    border-bottom: 2px solid #eee !important;
}
.cwp-dashboard-post-bottom .cwp-dashboard-posts-action-buttons {
    border-left: 1px solid #eee !important;
}
.cwp-dashboard-post-engagements-container .cwp-dashboard-engagements-list li {
    border-left: 1px solid #eee !important;
}
.cwp-dashboard-post-detail .cwp-dashboard-post-terms.Amenities{
	display:none;
}
.cwp-dashboard-post-engagements-container .cwp-dashboard-engagements-list li:first-child {
    border-left: 0px solid #000 !important;
}
.cwp-reviews-sidebar {
	border-radius:8px;
  z-index: 9999999;
}

table tr {
    border-bottom: 0px solid #ddd !important;
}
.cwp-dashboard-campaign {
    background: #fff;
    margin-bottom: 24px;
    border: 1px solid #eee !important;
	border-radius: 10px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.cwp-dashboard-campaign .cwp-dashboard-campaign-top {
  border-bottom: 2px solid #eee !important;
}
.cwp-dashboard-campaign .cwp-dashboard-campaign-bottom .cwp-dashboard-campaign-stats .cwp-dashboard-campaign-stats-list li {
 border-right: 1px solid #eee !important;

}
.pro-Header-con > h4{
	display:none !important;
}
ul.pro-Header{
	width:100%;
}
.pro-section h5.yb-single-section-title{
	display:none;
}
.pro-section .pro-Header li{
    font-size: 17px;
    font-weight: 700;
    color: #222222;
}
.multi span.select2-selection.select2-selection--single {
    margin: 10px 0 0 0;
    padding: 15px 10px;
    border: 2px solid #e9ecef !important;
    border-radius: 5px;
	height: 48px;
	line-height: 48px;
}
.multi span.select2-selection.select2-selection--single span.select2-selection__arrow {
    top: 10px !important;
    right: 5px;
    height: 48px;
    line-height: 48px;
}
.yb-inner-header .yellowbooks-header-bottom-container {
    background: #f3f6f4;
	  padding-bottom:0px;
	padding-top: 6px;
	border-color: #f3f6f4;
}
.cwp-plan{
	border:2px solid #F2F6F3 !important;
	border-radius: 8px !important;
}
.cwp-plans-container .cwp-row{
	flex-wrap: nowrap;
	overflow: auto;
}
.yb-copy{
margin: auto;
width: 400px;
}
.cwp-plan form input.cwp-plan-submit{
background:#e7ef06 !important;
	color: #000 !important;
	border-radius: 30px !important;
}
.cwp-plan form input.cwp-plan-submit:hover{
background:#ddfa9c !important;
	color: #000 !important;
	border-radius: 30px !important;
}
.yellowbooks-author-profile .yellowbooks-author-profile-info {
    padding: 20px !important;
    border:none !important;
    height: auto !important;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.05) !important;
	border-radius: 10px;
	margin-top:50px;
}
.yb-review-author-details {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
}
.claim-header .cwp-frontend-section-heading-container{
	display:none;
}
.cwp-frontend-section-container .cwp-field-container p.description{
	background:transparent !important;
}

.cwp_boosted .yellowbooks-post.yb-post-style-1{
	border: 1px solid #bee302  !important;
}

.yellowbooks-post.yb-post-style-1:hover{
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

  /* Card style enhancements */
  .yellowbooks-post.yb-post-style-1 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 0px;
    margin-bottom: 34px;
    transition: box-shadow 0.2s ease;
    border: 1px solid #f3f6f4;
  }

.yb-post-card{
	 padding: 16px;
}

.expandable-wrapper {
  background-color: transparent;
  transition: background-color 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
}

.yb-post-style-1.expanded .expandable-wrapper {
  background-color: #fcfcfc;
}

.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
  border-top: 2px solid #fcfcfc;
}

.yb-post-style-1.expanded .expandable-content {
  width: 100%;
  max-height: 500px;
  padding: 1rem;
  background-color: #fcfcfc;
}

.toggle-btn {
  display: block;
  width: 100%;
  background: #fcfcfc;
  border: none;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.yb-post-style-1.expanded .toggle-btn {
  background-color: #fcfcfc;
	border-top: 1px solid #eee;
}

.toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.yellowbooks-archive-filters a {
    border: 2px solid #eee !important;
    color: #686262 !important;
}
.yellowbooks-single-sidebar-section {
    border: 2px solid #eeeeee;
    border-radius: 8px;
}
.review-greet{
display: flex;
align-items: center;
}
.yb-single-current-user {
    margin-right: 10px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    overflow: auto;
}
.yb-single-current-user img{
    border-radius: 50%;
    width: 30px;
    height: 30px;
}
.yellowbooks-post-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
	  border: 2px dashed #d6eaa8;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 5px 10px;
}
.modal-title{
	display:flex;
	align-items:center;
	gap:3px;
}
.yb-business-hours h6{
	padding-right:10px;
}
.yb-review-author-details {
    display: block;  
}
.yb-review-author-date{
 display: flex;
 align-items: center;
 justify-content: space-between;
  margin-bottom: 0px;
	gap:10px;
}
.yb-post-rating-stars.yb-post-rating-stars i {
    font-size: 17px;
   
}
.yb-post-rating-stars.yb-post-rating-stars i.filled, .yb-post-rating-stars.yb-post-rating-stars i.half-filled {
    color: #4CAF50 !important;
}
.yb-single-reviews-details .yb-single-review-rating i.filled, .yb-single-reviews-details .yb-single-review-rating i.half-filled {
    color: #4CAF50 !important;
}
.yb-review-author-date{
	border-bottom: 2px solid #eee;
	padding: 10px;
}
.yb-review-useful{
  display: flex;
  align-items: center;
  justify-content: flex-start;
	border-top: 2px solid #f6f6f6;;
	padding: 10px;
  gap:10px;
  background-color: #f6f6f6;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.yb-useful-counts {
  margin-top: 5px;
  font-size: 14px;
  color: #555;
  display: flex;
  gap: 10px;
}
.useful-button{
  display: flex;
  gap: 10px;
}

.yb-useful-thankyou{
color: #155724;
}
.review-reply {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 15px;
}
.yb-badge {
  display: inline-block;
  padding: 1px 10px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
}
button.yb-useful-btn{
  border:none !important;
  display: inline-block;
  padding: 1px 15px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
}
button.yb-useful-btn.yb-badge-yes:hover {
  background-color: #c3e6cb;
}
button.yb-useful-btn.yb-badge-no:hover {
  background-color: #f8d7da;
}
button.yb-useful-btn.yb-badge-yes {
  border:2px dotted #d4edda;
}
button.yb-useful-btn.yb-badge-no {
  border:2px dotted #f8d7da;
}

.yb-review-author-date .yb-review-date{
   
}
.yb-single-reviews-details{
padding: 0px 10px;

}
.yb-single-reviews-details.top-review .yb-single-review-rating {
    display: flex;
	  margin-left:-13px;
    flex-wrap: wrap;
	  align-items: center;
    margin-right: 20px;
    width: auto;
}
.yb-review-author-block{
display: flex;
}
.yb-single-reviews-details .yb-single-review-rating i {
    font-size: 15px;

}
button.ui-datepicker-current.ui-state-default.ui-priority-secondary.ui-corner-all {
    background: #f3f6f4;
    color: #000;
}
button.ui-datepicker-close.ui-state-default.ui-priority-primary.ui-corner-all {
    background: #c2f9cb;
    color: #000;
}
.yb-single-reviews-details .yb-single-review-rating.comment {
    display: flex ;
    flex-direction: row;
    align-items: center;
	  margin-left:0px;
    width: 70px;
    margin-right:0px;
    flex-wrap: wrap;
    padding-top:10px;
}
.yellowbooks-single-review {
	border: 2px solid #eee;
	padding-bottom:15px;
	border-radius:10px;
}
.yellowbooks-single-review:last-child {
    padding: 0px;
}
.yellowbooks-single-review:not(:last-child) {
    padding: 0px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
}
.yb-single-reviews-details .yb-single-review-rating>p {
    display:none;
}
.yb-single-review-content {
    width: calc(100%);
    padding: 10px 0 10px 0px;

}
.review-text{
	width:5%;
	height:5%;
}
.review-image{
   width:70px;
	height:70px;
}
.cwp-field-container.cwp-field-review_star.size-1-1 .cwp-radio-container {
    margin-top: -23px;
}
.review-content label{
	font-weight:100 !important;
}

.cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-review_star.size-1-1 .cwp-radio-container>label {
	display:none !important;
}
.cwp-frontend-form-container .cwp-review-submitBTN.cwp-from-submit {
    width: 100%;
	border-radius:5px;
	display:block;
}
.modal-reg .modal-header, .modal-fullscreen-xl-down .modal-header {
    border-bottom: 1px solid #f3f6f4 !important;
	background:#f3f6f4;
	border-radius: 10px 10px 0 0;
}
.cwp-field-review_star .cwp-radio-container .cwp-stars-container {
    display: flex
;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row-reverse;
    gap: 10px;
}
.cwp-field-review_star.size-1-1 .cwp-stars-container > label svg {
    font-size: 34px;
    width: 34px;
    height: 34px;
    line-height: 24px;
}
.review-xtitle .cwp-frontend-section-heading-container{
	display:none;
}
.cwp-frontend-form-container .cwp-field-container.cwp-field-wysiwyg_editor .mce-edit-area.mce-container.mce-panel.mce-stack-layout-item iframe {
    min-height: 120px;
}
form#cwp-from-cwp_reviews #wp-the_content-editor-container .mce-panel .mce-edit-area.mce-stack-layout-item {
    width: 99%;
  border: 2px solid #eee;
}
.premium-only .yb-single-post-order-online{
	background: #f0e5aa ;
}
.premium-btn .yb-single-post-order-online{
	background: #f0e5aa !important;
}
.yb-single-claimed.premium {
    font-size: 14px;
    background: #f0e5aa ;
    color: #000 !important;
    margin-right: 10px;
    font-weight: 500;
    padding: 2px 10px 2px 10px !important;
	 border-radius:30px;
	 cursor: help;
}
.trust{
	font-style:italic;
	color: #9f842b;
}
.trust2{
	font-style:italic;
	color: #9f842b;
	text-decoration:underline;
}
.yb-single-claimed.premium i{
	color:#9f842b;
}
.yb-single-claimed {
    font-size: 14px;
    background: #d8fe81 ;
    color: #000 !important;
    margin-right: 10px;
    font-weight: 500;
    padding: 2px 10px 2px 10px !important;
	border-radius:30px;
	cursor: help;
}

.yb-single-claimed.unclaimed {
    font-size: 14px;
    background: #ffd7d7 ;
    color: #000 !important;
    margin-right: 10px;
    font-weight: 500;
    padding: 2px 10px 2px 10px !important;
	 border-radius:30px;
	 cursor: help;
}
.yb-single-claimed.unclaimed i{
	color:red;
}
.yb-badge-area .yb-single-claimed.unclaimed,
.yb-badge-area .yb-single-claimed, 
.yb-badge-area .yb-single-claimed.premium {
 padding: 1px 10px 0px 10px !important;
 font-size: 12px !important;
}
.yb-badge-area{
display: flex;
align-items: center;
margin-bottom: 5px;
}
.yb-boosted-post{
	font-size: 10px;
	width:auto !important;
    background: #e5e7eb !important;
    color: #374151 !important;
    margin-right: 10px;
    font-weight: 500;
    padding: 4px 10px 4px 10px !important;
	border-radius:30px;
  margin-bottom: 0px !important;
  text-align: center;
  font-style: italic;
  cursor: help;
}
.yb-single-claimed::after{
    content: '';
    position: absolute;
    right: 0;
    top: 3px;
    height: 11px;
    border-right: 0px solid #333 !important;
}
.blog .yellowbooks-header-logo,.page-id-81 .yellowbooks-header-logo{
	width:140px;
}
.yellowbooks-dashboard-header .yellowbooks-header-logo{
	width:140px;
}

.yb-current-user-details span img
 {
	border: 2px solid #e7ef06;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-left: 0px;
    cursor: pointer;
}
.yellow-books-search-style1-container .search-form-fields .cwp-submit-search {
    margin: 0 0 0 0;

    background-color:#E7EF06 !important;
    color: #000 !important;
}
.yellow-books-search-style1-container .search-form-fields .cwp-search-field:first-child {
    border-left: 5px solid #E7EF06 !important;
}
.yellowbooks-header-search .search-form-fields .cwp-submit-search {
    margin: 0 0 0 0;
    border-radius: 0;
    background-color: #E7EF06 !important;
    color: #000000; 
}
h6.cwp-review-star-name {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin: 0;
	 font-style:italic;
}
.yellowbooks-header-search .search-form-fields .cwp-search-field:first-child {
    box-shadow: inset 0 -4px 0 0 #E7EF06 !important;
}
.yellowbooks-header-search .search-form-fields .cwp-submit-search {
    min-height: 41px;
}
.yb-single-post-order-online {
    background: #e7ef06;
    color: #000 !important;
    border-radius: 3px;  
}
 .yb-post-claim {
    background: #fbcaca;
    color: #000 !important;
    border-radius: 3px;  
} .yb-post-order-online:hover {
    background: var(--button-bg);
    color: var(--button-color);
}
.yellowbooks-archive-map #archive-map a.leaflet-control-fullscreen-button.leaflet-bar-part:hover{
    background: var(--button-bg);
    color: var(--button-color);
}
.cwp-plan .cwp-plan-price-days h2.cwp-plan-price {
    font-size: 30px !important;
    color: #007bff;
    margin: 0;
    font-weight: 700;
}
.cwp-plan .cwp-plan-price-days h4.cwp-plan-days {
    font-size: 17px !important;
    font-weight: 500;
    color: #007bff;
    margin: 0;
}
.cwp-frontend-form-container .cwp-field-container.cwp-field-file .cwp-file-field-container .cwp-file-field {
    border: 2px dashed #eaecf0 !important;
    border-radius: 8px !important;
}
.cwp-frontend-form-container .cwp-field-container.cwp-field-gallery .cwp-gallery-field-container .cwp-gallery-field {
    border: 2px dashed #eaecf0 !important;
    border-radius: 8px !important;
}
.cwp-frontend-form-container .cwp-frontend-section-container .cwp-frontend-section-content-container {
    border: 2px solid #eaecf0 !important;
	 border-top: 0px solid #eaecf0 !important;
    border-radius: 0 0 10px 10px;
    border-top: 0;
    padding: 15px;
    background: #fff;
}
.yellowbooks-header-search .search-form-fields .cwp-search-field {
    width: calc((100%) / 1) !important;
  }
  .size-1-3 {
    width: 42% !important;
}
.cwp-frontend-form-container .cwp-field-container input[type=text], 
.cwp-frontend-form-container .cwp-field-container input[type=number], 
.cwp-frontend-form-container .cwp-field-container input[type=email], 
.cwp-frontend-form-container .cwp-field-container input[type=password], 
.cwp-frontend-form-container .cwp-field-container input[type=url], 
.cwp-frontend-form-container .cwp-field-container input[type=google_address], 
.cwp-frontend-form-container .cwp-field-container textarea, 
.cwp-frontend-form-container .cwp-field-container select {
    border: 2px solid #eaecf0;
    border-radius: 5px !important;
    padding: 13px;
    width: 100%;
    background: #ffffff;
    margin: 0px;
    height: 48px;
    font-weight: normal;
    font-size: 14px;
    line-height: normal;
    font-family: var(--primary-font);
    color: var(--label-font-color);
}
.cwp-frontend-section-heading-container {
    background: #f3f6f4 !important;
   border: 2px solid #eaecf0 !important;
  border-radius: 15px 15px 0 0 !important;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 25px;
}
.yellowbooks-claim .cwp-frontend-form-container {
    border-radius: 20px;
    padding: 0px !important;
}
.cwp-frontend-form-container input[type=submit] {
    background: #e7ef06 !important;
    border: 2px solid #e7ef06 !important;
    border-radius: 30px !important;
    color: #000 !important;
}
.whatsapp a{
	font-size: 16px;
	color:#000;
	font-weight:700;
	padding-left:4px;
}
.cwp-frontend-form-container.cwp-user-login {
    border-radius: 20px;
    padding: 0px 0px 30px 0px !important;
}
.cwp-frontend-form-container.cwp-user-login .cwp-field-container {
padding:10px 0px !important ;
}
.list-button{
	border: 2px solid #e7ef06;
	padding: 3px 15px 3px 15px !important;
	border-radius: 30px;
  width: 100%;
  text-align: center;
}
.list-button a{
	color :#000 ;
}

.list-button a:hover{
	border: none !important;
}
.yellowbooks-archive-sidebar {
    margin-bottom: 20px;
    position: relative;
    width: 300px;
    z-index: 0;
}

.modal-content {
   border-color: #fff !important;
    border-radius: 10px !important;
    border: 0px solid #eee !important;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 38%);
}

.modal-content .cwp-frontend-form-container .cwp-frontend-section-container .cwp-frontend-section-content-container {
    border: 0px solid #eaecf0 !important;
}
#yellowbooks-filters .modal-dialog .cwp-reset-search-filters {
    border-radius: 0 !important;
   background-color: #fff;
}
.fil-key{
	height:40px;
}
.multi-key{
	height:50px !important;
	padding:5px !important;
}
.cwp-frontend-form-container .cwp-field-container.cwp-field-repeating_field .cwp-repeating-single-field-row .cwp-repeating-single-field {
 border: 0px !important;
 border-radius: var(--input-radius);
    padding: 0px !important;
}
.cwp-repeating-single-field-actions.cubewp-collapse {
    border-radius: 5px 5px 0 0 !important;
}
.cwp-repeating-single-field-actions {
    display: block;
    background: #f4f4f4;
    width: 100%;
    cursor: pointer;
    height: 45px;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px 5px 0 0;
}

.cwp-cpt-single-repeating-field.cwp-cpt-single-field-container.repeat-filled {
  display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
}

.cwp-cpt-single-repeating-field-inner {
  flex: none ;
  width: 40% !important;
  border: 0px dashed #eee !important;
  margin:8px !important;
  border-radius: 10px !important;	
  box-shadow: 0 0px 5px 0 rgba(0, 0, 0, 0.1);
}
.cwp-cpt-single-repeating-field.cwp-cpt-single-field-container.repeat-filled {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.cwp-cpt-single-repeating-field.cwp-cpt-single-field-container.repeat-filled::-webkit-scrollbar {
  display: none;
}
.yb-overflow-hidden {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important;  /* Internet Explorer 10+ */
}
.yb-overflow-hidden::-webkit-scrollbar {
  display: none !important;
}
.cwp-cpt-single-repeating-field.dragging {
  cursor: grabbing;
  user-select: none;
}
.cwp-cpt-single-repeating-field {
  cursor: grab;
}
.cwp-cpt-single-repeating-field-inner img {
  pointer-events: auto;
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  user-select: none;
}
ul.prdiscount{
    margin-bottom: 0px;
    display: inline-block;
    width: 100%;
}
ul.prdiscount li{
color: #898886;
    font-size: 14px;
    list-style: none;
    margin: -31px 10px 0px 0px;
	  float:right;
    padding: 0px 10px;
	  border: 1px dashed #000;
	  border-radius:30px;
}
a.visit-link{
	border-right:2px dashed #eeee;
	padding-right:7px;
	margin-right:4px;
}

.repeat-filled h4 {
    display: none !important;
}
.size-1-1 {
    width: 100% !important;
}
.proucts-price{
 background: #f3f6f4;
	padding: 10px;
	border-radius: 0px 0px 9px 9px;
    margin-bottom: 0px;
   display: block;
   float: right;
   width: 100%;
   word-wrap: break-word;
}

.repeat-filled .cwp-cpt-single-image {
    width: 100% !important;
}
.repeat-filled .cwp-cpt-single-image img {
	border-radius: 10px  !important;
  height: 150px !important;
  object-fit: cover !important;
}

.breadcrumbs {
padding: 7px;
margin-top: 10px;
margin-bottom: 10px;
color:#0489B1;
font-size: 13px;
}
.breadcrumbs a {
color:#0489B1;
text-decoration: underline;
}
a.cac-link{
	border:1px dashed #000;
	padding:2px 10px;
	border-radius: 30px;
}
.tooltiptext2,.tooltiptext{
	 text-transform: none !important;
}
.vtooltip2 {
  position: relative;
  display: inline-block;
}

.vtooltip2 .tooltiptext2 {
  visibility: hidden;
  width: 300px;
   background-color: #d9ead3;
  color: #444444;
	 font-style: italic;
	font-size:13px !important;
	line-height: 1.5 !important;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: -10%;
  margin-left: -60px;
	transition: opacity 1s;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 5px 0px;
}
.vtooltip2 .tooltiptext2::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 20%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #d9ead3 transparent transparent transparent;
}
.vtooltip2:hover .tooltiptext2 {
  visibility: visible;
}


.vtooltip {
  position: relative;
  display: inline-block;
}
.vtooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: #d9ead3;
  color: #444444;
	 font-style: italic;
	font-size:13px;
	line-height: 1.5;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
	transition: opacity 1s;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 5px 0px;
}

.vtooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 20%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #d9ead3 transparent transparent transparent;
}

.vtooltip:hover .tooltiptext {
  visibility: visible;
}

.yb-signle-post-thumnail{
  height: 110px;
  width: 110px;
  padding: 5px;
  border: 2px solid #eee;
  border-radius: 10px;
  overflow: hidden;           /* Important */
  box-sizing: border-box;     /* Ensures padding/border don't break layout */
  display: flex;
  align-items: center;
  justify-content: center;
}

.yb-signle-post-thumnail img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;         /* Optional: match or reduce slightly */
  object-fit: cover;          /* Or 'contain' based on your design */
  display: block;
}
.product-info,.products-name{
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
}
.products-name > p{
	font-size:17px;
	font-weight:700;
	color:#000;
}
.product-image{
margin-bottom:4px;	
}
.products-name{
margin-bottom:2px;	
}
.product-info{
margin-bottom:5px;	
}
.products-name>p,
.product-info>p{ 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.yb-post-card .yb-post-thumbnail {
  height: 130px;
  width: 130px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;           /* Important */
  box-sizing: border-box;     /* Ensures padding/border don't break layout */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -30px;
  background: #fff;
}

.mobile-filter{
	display:none;
}
.mobile-filter .yellowbooks-archive-filters a {
    border: 1px solid #BBBBBB;
    text-decoration: none;
    background: #e7f8c2;
    padding: 7px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    line-height: 13px;
	margin-left:2px;
    letter-spacing: 0.2px;
    text-align: left;
    color: #222222;
    cursor: pointer;
}
.single-footer-menu {
   position: fixed;
   right: 0;
   bottom: 0;
   left: 0;
	 align-content:center;
	 height: 55px;
	line-height: 50px;
	background:#ffff;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.05);
	z-index:9;
	padding-left:10px;
	padding-right:10px;
}
.single-footer-menu-container{
	display: flex;
	width:100%;
	flex-wrap: nowrap;
	justify-content:space-evenly;
	gap:5px;
}
.fMenu-item{
	display:flex;
	align-items:center;	
}
.Ficonschat{
	height:35px;	
}
.Flinkchat{
  display:flex;
	font-weight:500;
	align-items:center;
}
.Ficons{	
	height:30px;
	background: #f3f6f4;
	padding:3px;
	border-radius:30px;
}
.Flink{
  display:flex;
	gap:3px;
	font-weight:500;
	color:#000;
	align-items:center;
	border: 1px dashed #000;
	border-radius:20px;
	padding:2px 10px 2px 2px;
}
.mDirect{
background: #000;	
	color:#fff !important;
	border: 1px solid #000;
}
.mDirect:hover{
background: #000;	
	color:#fff;
	border: 1px solid #000;
}
.cwp-frontend-form-container .cwp-frontend-section-container .cwp-frontend-section-content-container .cwp-field-container span.select2-selection--multiple {
    border: 2px solid #eee !important;
    border-radius: 5px;
}
.select2-container .select2-selection--multiple {
    min-height: 45px;
    align-content: center;
}


.select2-container .select2-search--inline .select2-search__field {
    padding: 0 0px;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0 10px;
}
.page-id-80 .cwp-frontend-form-container .cwp-field-container.cwp-field-wysiwyg_editor .wp-editor-wrap  {
	border:2px solid #eee !important;
	border-radius:5px;
}
.cwp-frontend-form-container .cwp-field-container.cwp-field-wysiwyg_editor .wp-editor-wrap * {
    border-color: #fff;
	text-shadow: none;
}
.yb-business-hours-display{
	margin-top:10px;
}
.yb-business-hours-display .business-hours span.close {
    width: 75px !important;
}
.yb-business-hours-display .business-hours a.remove-business-hours {
    color: #dc3545 !important;
    float: right;
}
.yb-business-hours-fields .cwp-field-container:nth-child(2) {
    margin: 0 15px !important;
}
.yb_business_hour_fulldayopen {
	      margin-top:12px;
}

.cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container .yb_business_hour_fulldayopen label{
	color:blue;
}
.cwp-ui-datepicker .ui-datepicker {
    background: #ffffff;
    border: 1px solid #fff !important;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.07) !important;
    padding: 15px;
    font-size: 12px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #fff;
    border: 2px solid #eee !important;
    border-radius: 20px;
    padding: 0 10px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #dc3545;
}
.cwp-ui-datepicker .ui-datepicker .ui-datepicker-buttonpane.ui-widget-content button {
    cursor: pointer;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 0px 20px;
}

.cwp-field-container.cwp-field-radio.cwp-booster-radio .cwp-field-radio {
	margin-left:10px !important;
	width: calc(100% / 2 - 10px) !important;
}
.cwp-field-container.cwp-field-radio:not(.cwp-field-radio-toggle) .cwp-field-radio-container .cwp-field-radio label:before{
	display:none;
}
.cwp-field-container.cwp-field-radio:not(.cwp-field-radio-toggle) .cwp-field-radio-container {
    display: flex
;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 15px 0 0 0;
}
.cwp-booster-form-section {
    padding: 32px 60px;
   border-radius: 10px 10px 0 0;
    background: #fff;
    border: 1px solid #eee;
}
.cwp-ui-datepicker .ui-datepicker{
	width: auto;
}
.single-footer-menu{
	display:none;
}
.with-years{
	font-size: 17px !important;
}
.yb-post-card-business-experience span.yb-years-count.certified {
    font-size: 10px;
    line-height: 13px;
    color: #128a03;
    text-align: center;
    background-color: #fff;
    border-radius: 30px;
    padding: 4px 15px;
	  border: 1px dashed #128a03;
	 text-transform: capitalize;
	cursor: help;
}
.yb-business-hours-fields .cwp-field-container {
    padding: 0;
    width: calc(33.3% - 40px) !important;
    margin-bottom: 0px;
}
.mobile-filter {
    margin: 15px 0 0 0;
    background: #ffffff;
    border: 1px dashed #eee;
    padding: 5px;
    border-radius: 8px;
}
.mf{
	margin: 0 0 0 10px !important;
}
.yb-discount {
    font-size: 14px;
    line-height: 16px;
    color: var(--button-color);
    border: 1px dashed #000;
    display: inline-block;
    padding: 8px 10px;
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 5px;
	  float:none;	
}
.desktop{
		display:block;
	}
	.mobile{
	display:none;
}
.mobile .yb-discount {
    margin-left: 9px;
    width: 70px;
    font-size: 10px;
}
.cwp-inbox-conversation-post-details{
	display:none !important;
}

.cwp-inbox-conversations-container .cwp-inbox-conversation-chat-container{
	justify-content: flex-start !important;
}
.yellowbooks-dashboard-header-container {
  margin-bottom: 0px;
	padding-top:18px;
	padding-bottom: 9px;
	padding-right: 9px;
	padding-left: 9px;
}
.cwp-user-dashboard .cwp-user-dashboard-tabs{
	padding:1px !important;
		border-radius: 5px !important;
}
@media (max-width: 1151px) {
.cwp-user-dashboard .cwp-user-dashboard-tabs li {
   width: auto !important;
}
.cwp-user-dashboard .cwp-user-dashboard-tabs {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none; /* Firefox */
       -ms-overflow-style: none;  /* Internet Explorer 10+ */
        gap: 0;
}
.cwp-user-dashboard .cwp-user-dashboard-tabs::-webkit-scrollbar {
  display: none;
}

.cwp-user-dashboard .cwp-user-dashboard-tabs li a, .cwp-user-dashboard .cwp-user-dashboard-tabs li.cwp-active-tab a {
    color: #fff !important;
    padding-left: 20px;
    height: 100%;
}
.cwp-user-dashboard .cwp-user-dashboard-tabs{
	border-radius: 0px !important;	
}
.cwp-user-dashboard .cwp-user-dashboard-tabs {
  display: -webkit-inline-box !important;
  background-color: #070026;
  flex-wrap: nowrap !important;
    margin-bottom: 12px;

}
.yellowbooks-dashboard-header-container{
	position:fixed;
		z-index:9999;
}
.cwp-user-dashboard .cwp-user-dashboard-tabs{
	position:fixed;
		z-index:9;
	margin-top:70px;
}
.cwp-user-dashboard .cwp-user-dashboard-tab-content-container{
	margin-top:130px;	
	}
}

@media (min-width: 1400px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  max-width: 1170px;
 }
}

/* Tablet only */
@media (min-width: 600px) and (max-width: 1023px) {
	.single-footer-menu{
		display:block;
	}
   .cwp-archive-container {
        padding: 0px !important;
    }
.cwp-plans-container .cwp-col-md-4 {
    min-width: 290px !important;
	margin-right: 15px;
	padding:0px;
}
	.yellowbooks-header-menus {
    width: 46px;
}
.yellowbooks-header-search{
  display: none;
}
.cwp-archive-container {
        padding: 20px 0px !important;
}
	.cwp-booster-form-section {
    padding: 32px 20px !important;
    border-radius: 10px 10px 0 0;
    display: none;
    background: #fff;
    border: 1px solid #eee;
}

.desktop-filter{
		display:none;
}
.mobile-filter{
	display:block;
}
	.yellowbooks-archive-content {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    padding-right: 0px;
}
	.yellowbooks-archive-sidebar {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    z-index: 0;
}
.cwp-dashboard-review .cwp-dashboard-review-actions {
    flex-direction: column;
}
}

/* Mobile only */
@media (max-width: 599px) {
  .cwp-frontend-form-container {
    padding: 40px 0px 20px 0px !important;
}
.mobile-flex {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}
.mobile-flex .mlocation {
    border-right: 2px dashed #eee;
    padding-right: 7px;
    height: 12px;
}
.bottom-info-left{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.baction-botton {
    display: flex;
    justify-content: space-between;
}

.bottom-contacts {
    justify-content: space-between;
}
span.contact-notice {
    border: 1px solid #eee;
    padding: 1px 6px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.05);
    font-size: 12px;
}
  .yb-single-current-user img{
    border-radius: 50%;
    width: 30px;
    height: 28px;
}
.yb-single-left {
    display: flex;
    flex-direction: column;
    width: 20%;
}
.share-icon {
    font-size: 12px;
    margin-left: 5px;
    margin-top: 3px;
    color: #bcbcbc;
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid #eee;
    padding: 0px 5px;
    border-radius: 5px;
}
.yellowbooks-footer-column {
    margin-top: 10px;
}
#yellowbooks-footer .col-6.col-lg-4:last-child .yellowbooks-footer-column ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px 40px;
    padding: 0;
    list-style: none;
}
.yb-review-useful{
  justify-content: space-between;
}
.cwp-dashboard-campaign .cwp-dashboard-campaign-bottom .cwp-dashboard-campaign-costs ul {
    border-radius: 0px 0px 8px 8px;
}
  .cwp-dashboard-campaign .cwp-dashboard-campaign-top .cwp-campaign-dates-container .cwp-campaign-dates span {
    background: #e7f5f1 !important;
    color: #000000 !important;
}
  .cwp-dashboard-campaign .cwp-dashboard-campaign-bottom .cwp-dashboard-campaign-costs {
    width: 100% !important;
}
.cwp-dashboard-campaign .cwp-dashboard-campaign-bottom .cwp-dashboard-campaign-stats {
    width: 100% !important;
}
.cwp-dashboard-campaign .cwp-dashboard-campaign-top .cwp-campaign-dates-container {
    width: 41.66666667%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.cwp-dashboard-campaign .cwp-dashboard-campaign-bottom {
    display: flex
;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
}
.cwp-dashboard-campaign .cwp-dashboard-campaign-top {
    padding: 20px 15px !important;
  
}
.cwp-dashboard-campaign 
.cwp-dashboard-campaign-bottom 
.cwp-dashboard-campaign-stats 
.cwp-dashboard-campaign-stats-list li:last-child {
    border-right: none !important;
}
.yb-post-card-business-experience span.yb-years-count.certified {
		line-height:10px;
	}
  .cwp-archive-container {
        padding: 0px !important;
    }
  .report-name input{
	width: 100% !important;
}
	.cwp-user-dashboard .cwp-user-dashboard-tabs{
	margin-top:62px;
}
/* Dashboard override start */
.cwp-dashboard-post-top {
    padding: 20px 10px !important;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.cwp-dashboard-post-info {
    width: 100%;
    min-width: 0px !important;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.cwp-dashboard-post-detail {
    width: 100% !important;
    align-items: center;
    justify-content: center;
}
.cwp-dashboard-post-detail .cwp-dashboard-post-id {
    margin: 5px 0 5px 0 !important;
   
}
.cwp-dashboard-fet-img {
    width: 80px;
    border-radius: 5px;
    height: 80px;
    object-fit: cover;
    margin-right: 0px !important;
}
.cwp-dashboard-post-details {
    align-items: center !important;
    text-align: center !important;
    width: auto !important;
    margin-right: 0px !important;
    flex-direction: column;
}
.cwp-dashboard-post-title-outer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cwp-dashboard-post-detail .cwp-dashboard-post-terms {
    display: flex;
    flex-wrap: wrap;
    margin: 2px 0 0 0;
    padding: 0;
    width: 100% !important;
    justify-content: center;
}
.cwp-dashboard-post-detail .cwp-dashboard-post-terms {
    display: flex;
    flex-wrap: wrap;
    margin: 2px 0 0 0;
    padding: 0;
    width: 100%;
    justify-content: center;
}
.cwp-dashboard-post-detail .cwp-dashboard-post-terms {
    display: flex;
    flex-wrap: wrap;
    margin: 2px 0 0 0;
    padding: 0;
    width: 100%;
    justify-content: center;
}

.cwp-dashboard-post-status {
    margin: 20px 0px 0 0px !important;
}
.cwp-dashboard-posts-action {
    width: 100%;
    min-width: 0px !important;
    text-align: right;
    position: relative;
    margin-top: -36px;
    padding-bottom: 20px;
}
.cwp-dashboard-post-bottom {
    display: flex;
    flex-direction: column;
    width: 100% !important;
}
.cwp-dashboard-post-engagements-container .cwp-dashboard-engagements-list {
    display: flex;
    list-style: none;
}
.cwp-dashboard-engagements-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.cwp-dashboard-post-engagements-container .cwp-dashboard-engagements-list li {
    border-left: 0px solid #eee !important;
}
.cwp-dashboard-engagements-list li:first-child {
    flex: 100% !important; /* First row full width */
}

.cwp-dashboard-engagements-list li:nth-child(n+2) {
    flex: 0 0 50%; /* Two per row */
    box-sizing: border-box;
    padding: 8px 12px;
    border-bottom: 1px solid #eee; /* Horizontal separator */
}

.cwp-dashboard-engagements-list li:nth-child(2),
.cwp-dashboard-engagements-list li:nth-child(4) {
    border-right: 3px solid #eee; /* Vertical pipe between items */
}

/* Remove bottom border for last row */
.cwp-dashboard-engagements-list li:nth-last-child(-n+2) {
    border-bottom: none;
}

.cwp-dashboard-post-bottom .cwp-dashboard-post-engagements-container {
    width: 100% !important;
    display: flex;
    flex-direction: column !important;
}
.cwp-dashboard-post-bottom .cwp-dashboard-posts-action-buttons {
        width: 100% !important;
        justify-content: space-around !important;
        background-color: #f5f5f5;
        border-radius: 0px 0px 5px 5px;
}
.cwp-dashboard-post-detail .cwp-dashboard-post-title-outer span.cwp-dashboard-post-focus svg path {
    fill: #bebebe !important;
}
.cwp-dashboard-post-bottom 
.cwp-dashboard-posts-action-buttons:last-child {
    border-left: none !important;
}

.cwp-dashboard-post {
    width: 100%;
}
/* Dashboard override End */
.p-5 {
    padding: 1.5rem !important;
}	
	.step-progress-bar-line {
		width: 80%;
	}
	.follow {
    width: 70px;
    margin-top: 10px;
		margin-left: 10px;
    padding: 2px 1px;

}
.page-id-81 .yellowbooks-get-listed{
     display: block !important;
}
.blog .yellowbooks-get-listed{
     display: block !important;
}

.veri-box{
	margin-bottom:20px;	
	}
	
.cwp-plans-container .cwp-col-12 {
        margin-right: 15px;
        width: 80% !important;
        padding: 0px;
 }
.yb-signle-post-thumnail {
    height: 70px;
    width: 70px;
}
.vtooltip .tooltiptext {
  visibility: hidden;
	width: 280px;
	}
.yb-business-hours-fields .cwp-field-container {
    padding: 0;
    width: calc(100% - 0px) !important;
    margin-bottom: 0px;
}
	.yb-discount,
	.yb-post-order-online {
		font-size:12px;
	}

.yb-copy{
margin: auto;
width:100%;
}
	.yb-business-hours-fields .cwp-field-container:nth-child(2) {
    margin: 0px !important;
}
.yb_business_hour_fulldayopen {
        margin-left: 0;
	      margin-top:5px;
	      color: #000 !important;
    }
	.desktop-filter{
		display:none;
	}
	.mobile-filter{
	display:block;
}
.desktop{
		display:none;
	}
	.mobile{
	display:block;
}
	.mapspace{
	  padding-right: .65rem;
    padding-left: .65rem;
	}
    .yb-post-card .yb-post-thumbnail {
        width: 50px;
        height: 50px;
        float: right;
        border-radius: 15px;
        border: 1px solid #eee;
        margin-left: 3px;
        margin-bottom: 6px;
        padding: 4px;
}
	.cwp-cpt-single-repeating-field-inner{
		width:80% !important;
		margin: 6px !important;
	}
	.products-name > p{
	font-size:13px;
	font-weight:700;
	
}
.yb-post-card .yb-post-thumbnail img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;         /* Optional: match or reduce slightly */
  object-fit: cover;          /* Or 'contain' based on your design */
  display: block;
}

.blog .yellowbooks-header-logo,.page-id-81 .yellowbooks-header-logo{
	width:120px;
}
	 .yellowbooks-dashboard-header .yellowbooks-header-logo{
	width:120px;
}
.yellowbooks-header-menus {
    width: 35px;
}
	.yellowbooks-header-search{
		display:none !important;
	}
	.review-text{
	width:8%;
	height:8%;
}
.review-image{
   width:80px;
	height:80px;
}
.yellowbooks-archive-sidebar{
		width:100% !important;
	}
.cwp-user-dashboard span.select2-container.select2-container--default.select2-container--open span.select2-dropdown.select2-dropdown--below {
    width: 120px !important;
}
	.cwp-frontend-form-container .cwp-frontend-section-container .cwp-frontend-section-content-container {
    border: 2px solid #eaecf0 !important;
		border-top:0px !important;
   border-radius: 0 0 10px 10px;
   border-top: 0;
   padding: 0px;
   background: #fff;
}
	.cwp-frontend-section-heading-container {
		padding: 10px 8px;
	}
.cwp-frontend-section-heading-container h2 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0;
    word-spacing: 5px;
}
	.cwp-inbox-conversation-new-chat {
		width:100%;
	}
.cwp-dashboard-review .cwp-dashboard-review-top {
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
	 flex-direction: column;
}
.cwp-dashboard-review .cwp-dashboard-review-actions {
    width: 100% !important;
    flex: 1;
   justify-content: space-evenly !important;

}	
.cwp-dashboard-review .cwp-dashboard-review-top .cwp-review-dates-container {
    width: 100% !important;
    display: flex;
   justify-content: space-evenly !important;
}	
	
.cwp-dashboard-review .cwp-dashboard-review-top .cwp-review-status-title {
 width: 100% !important;
 display: flex;
 flex-wrap: wrap;
 align-items: center;
   gap: 06px;
 flex-direction: column-reverse;
    }
 .cwp-review-title-container {
    width: calc(100% - 16px) !important;
    text-align: center;
}
 .yb-alert-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .yb-alert-btn {
        width: 100%;
    }

    .yb-alert-btn .yb-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
  .single-footer-menu{
		display:block;
	}
}
/*** End Responsive Mobile. **/

/*** PWA **/
@media all and (display-mode: standalone) {
  #hide-pwa {
    display: none;
  }
	#yellowbooks-sub-footer{
		padding-top:20px;
	}
	li.menu-item.pwa-install-menu-item{
		display:none;
	}
	.header-banner-overlay.visible {
   display:none !important;
}
}
/*** End PWA **/

.archive span.select2-selection.select2-selection--single span.select2-selection__arrow {
    top: 0px;
    right: 5px;
}
.archive span.select2-selection.select2-selection--single {
    margin: 0px 0 0 0;
    padding: 11px 10px;
    border-radius: 5px;
}
.cwp-pagination {
    padding: 20px 20px;
    color: #555;
    background-color: #fff;
    border-top: 0px solid #eee;
    border-bottom: 0px solid #eee;
}
.menu-icon {
    cursor: pointer;
    width: 45px;
}
.cwp-pagination>ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cwp-pagination ul li.active a {
    color: #000;
    background-color: #ecfdc4;
    border-radius: 5px;
    border: 1px solid #ecfdc4;
}
 .yb-amenities-info {
    padding: 5px 16px 20px;
    border-radius: 8px;
    box-shadow: 0 0 12px 5px rgba(0, 0, 0, .05);
    background-color: #fff;
    position: absolute;
    left: 80px;
    bottom: 30px;
    width: 100%;
    z-index: 10;
    flex-wrap: wrap;
}
.yb-single-post-terms-detail{
    padding: 5px 16px 20px;
    border-radius: 8px;
    box-shadow: 0 0 12px 5px rgba(0, 0, 0, .05);
    background-color: #fff;
    position: absolute;
    left: 80px;
    bottom: 30px;
    width: 75%;
    z-index: 10;
    flex-wrap: wrap;
}
.yb-single-post-terms-detail::after, .yb-amenities-info::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.yellowbooks-header-top-container {
   z-index: auto;
}
.yb-header-dropdown-menu {
    padding: 12px;
    border: 0;
    box-shadow: 0 0 12px 5px rgba(0, 0, 0, .05);
    border-radius: 10px !important;
    width: 260px;
    z-index: 99999;
    background: #fff;
}
.mapspace{
	z-index: 0 !important;
}
.yb-signout{
  margin-top:18px !important;
  border-top: 1px dashed #eee;
	padding-top:10px!important;
	padding-left:5px !important;
	margin-bottom: 0px !important;
}

.yb-signout a:hover{
    border: none !important;
}
.yb-inner-header .yellowbooks-header-menus {
 width: 35px !important;
}
.menu-profile{
display:flex;
border-bottom: 2px dashed #eee;
margin-bottom:20px;
padding-bottom:10px;
justify-content: space-between;

}
.elementor-shortcode .cwp-alert.cwp-alert-warning{
	margin-top:100px;
}

.menu-img{
	border-radius:50%;
	width: 45px;
	height:45px;
	margin-right:10px;
	border: 2px solid #e5f883;
}
.manu-name{
padding-top:0px;	
}
.nohoverborder:hover{
	border: none !important;
}
.cwp-plans-container >h5,.cwp-plans-image{
	display:none !important;
}
.cwp-featured-plan{
	font-size:17px !important;
}
.cwp-container.cwp-archive-container .cwp-archive-content-container {
    padding: 0 15px;
}
.yellowbooks-archive-map #archive-map {
    height: 500px;
    border-radius: 10px;
	  padding: 0 !important;
}

/*---Archive Filters----*/
.cwp-container.cwp-archive-container .cwp-archive-sidebar-filters-container {
    padding: 0;
}

.desktop-filter .cwp-search-filters-wrap {
    padding: 0 0 12px 0;
}
.desktop-filter .cwp-search-filters .cwp-reset-search-filters {
    font-size: 14px;
    padding: 8px 15px;
    text-align: left;
    border: 1px solid #f7f7f7;
    border-radius: 5px 5px 0 0;
    border-bottom: 0;
    background: #f7f7f7;
    display: flex;
    justify-content: space-between;
}
.desktop-filter .cwp-reset-search-filters p {
    font-weight: bold;
    margin: 0;
}
.desktop-filter .cwp-search-filters .cwp-reset-search-filters a {
    display: flex;
    align-items: center;
    word-break: keep-all;
}
.desktop-filter .cwp-search-filters .cwp-reset-search-filters svg {
    padding-right: 2px;
}
.desktop-filter .cwp-search-filters-fields {
    background: #fff;
    border: 1px solid #f7f7f7;
    border-radius: 0 0 5px 5px;
    padding: 15px 5px;
}
.desktop-filter .cwp-search-filters-fields .cwp-field-container {
    padding-bottom: 10px;
    margin-bottom: 0px;
}
.cwp-search-field label, .cwp-switch-container label {
    display: block;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 2px !important;
}
.desktop-filter .cwp-search-filters-fields .cwp-field-container ul li {
    width: 100%;
    margin-bottom: 5px;
}
select#cwp-sorting-filter, select#cwp-order-filter {
    cursor: pointer;
    font-size: 14px;
    padding: 5px;
    width: auto;
	  font-weight:700;
    color: #777777;
    min-width: 10%;
    height: 30px;
    border: 0px;
}
.claim-section{
	background-image: url("/img/unclaimed2.svg") !important;
background-size: cover;
}
.premium-business .yellowbooks-post-rating{
	border: 2px dashed #e4d794;
}

.premium-business .yb-signle-post-thumnail{
	border: 2px solid #e4d794;
}
.claim-section.premium-only{
	background-image: url("/img/gold2.svg") !important;
background-size: cover;
}
.claim-section.premium-only{
	border-color:#e4d794 !important;
}
.cwp-table-responsive{
	overflow:auto;
}

.premium-business .premium-only, 
.premium-business .premium-block {
    display: block;
}
.premium-business .premium-inline {
    display: inline;
}
.premium-business .premium-badge {
    display: inline-block ;
}
.premium-no .premium-badge,
.premium-no .premium-block,
.premium-no .premium-inline,
.premium-no .premium-only {
  display: none !important;
}
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #ccc;
    border-top-color: #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.flatten-keyword{
   
}

.yellowbooks-archive-content {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    padding-right: 0;
}
.yb-home-header .yellowbooks-header-menus .yellowbooks-navigation-nav li a,
.yb-inner-header .yellowbooks-navigation-nav a,
.yellowbooks-header-menus .yb-header-dropdown-menu .yb-sign-in,
.yellowbooks-header-menus .yb-header-dropdown-menu .yb-sign-up,
.yellowbooks-header-menus .yb-header-dropdown-menu .yb-sign-out, 
.yellowbooks-dashboard-header-nav .dash-li {
  padding: 6px 14px !important; /* Add spacing for button feel */
  border-radius: 999px; 
}

.yb-home-header .yellowbooks-header-menus .yellowbooks-navigation-nav li a:hover,
.yb-inner-header .yellowbooks-navigation-nav a:hover,
.yellowbooks-header-menus .yb-header-dropdown-menu .yb-sign-in:hover,
.yellowbooks-header-menus .yb-header-dropdown-menu .yb-sign-up:hover,
.yellowbooks-header-menus .yb-header-dropdown-menu .yb-sign-out:hover,
.yellowbooks-dashboard-header-nav .dash-li:hover {
  border: none !important;
  background-color: #fff;
  color: #88b200 ; /* Optional: brand color on hover */
  padding: 6px 14px; /* Add spacing for button feel */
  border-radius: 999px; /* Fully rounded */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Soft shadow for elevation */
  transition: all 0.2s ease;
}
.yellowbooks-header-bottom #menu-header-bottom-menus li {
    margin: 0 0 5px 0;
} 
.yb-home-header .yellowbooks-header-menus a:hover{
  border: none !important;  
}
.list-button-top{
	padding: 6px 14px;
	border-radius: 999px;
    color: #88b200; /* Optional: brand color on hover */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Soft shadow for elevation */
}
.list-button-top a:hover{
	border: none !important;
}
.list-button-home a{
	padding: 6px 14px !important;
	border-radius: 999px !important;
    color: #88b200 !important; /* Optional: brand color on hover */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important; /* Soft shadow for elevation */

}
.list-button-home a:hover{
	border: none !important;
    color: #0f100e !important;
}
.yellowbooks-group {
    display: flex;
    align-items: center;
    gap: 20px;
}
.yellowbooks-header-search {
    margin-right: 0;
    width: calc(100% - 360px);
}
.modal-body .form-group label {
    margin:0;
}
.modal-body .form-group textarea {
    border-radius: 5px;
    margin: 2px 0 0 0;
}
.yellowbooks-lead-form input, .yellowbooks-lead-form select {
    border: 2px solid #eee;
    border-radius: 5px;
    height: 42px;
}
/* Skeleton base */
.skeleton-box {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
  background-size: 400% 100%;
  animation: shimmer 1.2s ease-in-out infinite;
  border-radius: 6px;
}

/* Specific shape for the search bar */
.yellowbooks-header-search.loading .skeleton-input {
  width: 100%;
  height: 41px;
  margin: 0 auto;
}

/* Shimmer animation */
@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}
.page-id-81 .yellowbooks-get-listed{
       display: none;
}
.blog .yellowbooks-get-listed{
       display: none;
}
.yellowbooks-header-search .search-form-fields .cwp-search-field {
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
}
.yellowbooks-header-search .search-form-fields .cwp-search-field:nth-child(2) {
    border-bottom: 1px solid #eee;
}
.cwp-field-password .show-password {
    position: absolute;
    top: 56% !important;
    right: 16px;
    cursor: pointer;
    color: #a0a0a0;
}
.cwp-user-dashboard span.select2-selection.select2-selection--single {
    margin: 10px 0 10px 0;
    padding: 11px 10px;
    border: 2px solid #eee !important;
    border-radius: 5px !important;
}
.cwp-user-dashboard span.select2-selection.select2-selection--single span.select2-selection__arrow {
    top: 13px !important;
    right: 5px;
}
.cwp-reviews-dashboard-content-head .cwp-reviews-status-filter-container, 
.cwp-reviews-dashboard-content-head .cwp-reviews-associated-filter-container, 
.cwp-reviews-dashboard-content-head .cwp-reviews-type-filter-container {
    min-width: 125px !important;
    height: 45px;
}

.cwp-user-dashboard-tabs li {
  position: relative;
  cursor: pointer;
}

/* Add the arrow for the active tab */
.cwp-user-dashboard-tabs .cwp-active-tab::after {
  content: "";
  position: absolute;
  bottom: -6px; /* Adjust based on your design */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #050505; /* Adjust to match your active color */
}

.cwp-booster-dashboard-head{
  display: none !important;
}
.cwp-booster-dashboard-content, .cwp-booster-dashboard-content-head {
    margin-bottom: 45px;
}
.cwp-map-popover {
    text-align: center;
    max-width: 220px;
}
.cwp-map-logo {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}
.cwp-map-title {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}
.cwp-map-type {
    margin: 5px 0;
    font-size: 13px;
    color: #666;
}
.cwp-map-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 10px;
    background: #f9a825;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
}
.cwp-dashboard-content-table {
    width: 100%;
    min-width: 0 !important;
    caption-side: bottom;
    border-collapse: collapse;
    border: none;
    margin: 0 auto;
    border-radius: 0;
}
.cwp-dashboard-review {
    box-shadow: none !important;
    background: #fff;
    margin-bottom: 24px;
    border: 2px solid #eee;
    border-radius: 8px;
    max-width: 1150px ;
}

.modal-backdrop.show {
    backdrop-filter: blur(4px);
    background-color: rgb(0 0 0 / 0%);
}
.modal-backdrop.show {
    opacity: 1;
}
/* If you want only offcanvas (not modal) */
.offcanvas-backdrop.show {
  backdrop-filter: blur(4px);
  background-color: rgb(0 0 0 / 0%);
}
.offcanvas-backdrop.show {
    opacity: 1;
}

.cwp-field-container.cwp-field-review_star .cwp-radio-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: flex-start;
   flex-direction: column;
	 margin-top:15px;
}
.review-section{
	display:flex;
	
}
.review-button{
	border:1px solid #eee;
	background: #eee;
	padding: 1px 15px;
	border-radius:50px;
}
 #reviews {
  scroll-margin-top: 100px;
}
#write-review {
  scroll-margin-top: 150px;
}
.yb-review-count-link{
color: #2276a8;	
}
.verification-form {
    max-width: 700px;
    margin: 30px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.verification-form .ver-form-body{
	padding: 20px;
}
.verification-form h1 {
    text-align: center;
    margin-bottom: 0px;
    color: #333;
	  font-size:20px;
}

.verification-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}
.form-inline input[type="text"], .form-inline input[type="email"]{border-radius: 6px 0px 0 6px !important;
}
.verification-form input[type="text"],
.verification-form input[type="file"],
.verification-form input[type="email"]{
    width: 100%;
    padding: 10px;
	  height:40px;
    border: 2px solid #eee;
	  background:#fff;
    border-radius: 6px;
    margin-bottom: 5px;
    font-size: 14px;
}
.verification-form input[readonly] {
    background-color: #f9f9f9;
    cursor: not-allowed;
}
.verification-form .terms {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.verification-form .terms input {
    margin-right: 10px;
}
.verification-form button {
    width: 100%;
    background: #e7ef06;
    color: #000 !important;
    padding: 5px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}
.verification-header {
	   width:100%;
	  height:120px;
    background-size: cover;
   background-position: center;
    padding: 20px;
    color: white;
    border-radius: 8px 8px 0 0;
}

.verification-form .form-inline button {
    width: 40%;
    background: #e7ef06;
    color: #000;
    padding: 2px 8px;
    border: none;
 border-radius: 0px 6px 6px 0px !important;
    font-size: 16px;
    cursor: pointer;
	  height: 40px;
}
.verification-form button:hover {
    background: #e7ef06;
}

.verify-head .verify-image{
	width:120px;
	height:120px;
	background-color:#fff;
	border:2px solid #eee;
	padding:10px;
  border-radius:10px;
	margin-top:-40px;
}
.verify-head{
	display:flex;
	gap:10px;
	margin-bottom:30px;
}
.info-form-group{
	display:flex;
	gap:10px;
}
.form-group {
    margin-bottom: 15px;
}
.form-inline {
    display: flex;
   justify-content: center;
}
.form-inline label {
    min-width: 150px;
}
.verified {
    color: green;
    font-weight: bold;
}
.btn {
    background: #0073aa;
    color: #fff;
    padding: 6px 12px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.btn:hover {
    background: #005f87;
}
.file-upload .upload-box {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    transition: border-color 0.3s;
}
.file-upload .upload-box:hover {
    border-color: #0073aa;
}
.preview {
    margin-top: 10px;
}
.preview img, .preview video {
    max-width: 100%;
    border-radius: 6px;
}
.terms {
    font-size: 14px;
}
.yb-message {
    font-weight: 600;
    margin-top: 6px;
}
.cwp-field-container.review-content,
.cwp-field-container.review-title{
	margin-top:20px !important;
}
form#cwp-from-cwp_reviews .wp-editor-wrap {
    margin: 0 !important;
}

.yb-alert {
    padding: 12px;
    margin: 10px 0;
    border-left: 5px solid;
    background: #f8f9fa;
    color: #212529;
    border-radius: 4px;
}
.yb-alert-success { background: #e6ffed; border-color: #28a745; color: #155724; }
.yb-alert-info { background: #d1ecf1; border-color: #17a2b8; color: #0c5460; }
.yb-alert-warning { background: #fff3cd; border-color: #ffc107; color: #856404; }
.yb-alert-danger { background: #f8d7da; border-color: #dc3545; color: #721c24; }
.yb-alert-primary { background: #f0f7ff; border-color: #0073aa; color: #004085; }

.yb-btn {
    display: inline-block;
    padding: 6px 12px;
    margin-top: 8px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}
.yb-btn-primary { background: #0073aa; color: #fff; }
.yb-btn-secondary { background: #6c757d; color: #fff; }
.yb-btn-info { background: #17a2b8; color: #fff; }
.yb-btn-warning { background: #ffc107; color: #000; }
.yb-btn-danger { background: #dc3545; color: #fff; }

.yb-alert-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap; /* allows wrapping on small screens */
}

.yb-alert-text {
    flex: 1;
    min-width: 200px;
}

.yb-alert-btn {
    flex-shrink: 0;
}

/* Private note styling */
.yb-private-note {
    font-size: 0.8rem;
    color: #777;
    display: block;
    margin-bottom: 0.3rem;
}

/* Unique alert type borders */
.yb-alert-premium { border-left: 5px solid gold; }
.yb-alert-trial { border-left: 5px solid #17a2b8; }
.yb-alert-almost { border-left: 5px solid orange; }
.yb-alert-expired-verified { border-left: 5px solid darkred; }
.yb-alert-expired-unverified { border-left: 5px solid #b30000; }
.yb-alert-verified-no-premium { border-left: 5px solid #ffc107; }
.yb-alert-general { border-left: 5px solid #007bff; }

.report-name{
display:flex;
	justify-content:center;
	gap:10px;
}
.report-name input{
	width: 230px;
	height:40px;
	border:2px solid #eee;
	border-radius:5px;
}
.form-control:disabled, .form-control[readonly] {
    background-color: #f5f5f5;
    opacity: 1;
}
#business-report-form	
	.form-label {
    margin-bottom: 2px;
}
/* Loader bar */
#pwa-top-loader {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 4px;
    /* Gradient with your primary color and black */
 background: linear-gradient(270deg, #e7ef06, #C8CF02, #e7ef06);
background-size: 400% 100%;

    z-index: 9999;
    opacity: 0;
    transition: width 0.2s ease-out, opacity 0.3s ease;
    border-top-right-radius: 999px;
    border-bottom-right-radius: 999px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    animation: moveGradient 2s linear infinite;
}

#pwa-top-loader.show { opacity: 1; }

@keyframes moveGradient {
    0% { background-position: 0% 0; }
    100% { background-position: 400% 0; }
}

/* Spinner can match primary color */
#pwa-loader-spinner {
    position: fixed;
    top: 6px; right: 10px;
    width: 14px; height: 14px;
    border: 4px solid #C8CF02;
	 box-shadow: 0 0 6px #e7ef06; 
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10000;
}
#pwa-loader-spinner.show { opacity: 1; }

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.yellowbooks-dashboard-header-user img {
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #e7ef06;
    cursor: pointer;
}
.cwp-dashboard-posts-filters-container {
    display: flex;
    align-items: flex-start !important;
    gap: 13px;
}
.modal-fullscreen .modal-content {
    height: 100%;
    border: 0 !important;
    border-radius: 0px !important;
    box-shadow: none !important;
}
.yb-card{
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.modal-bg {
  background: url('/wp-content/uploads/2025/04/oooscillate.svg') no-repeat center center / cover;
}
.yb-business.cwp-dashboard-posts-filters-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.social-discount {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
}
.ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_minute:before, .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_second:before {
 margin: 5px;
}
.bottom-contacts {
    display: flex;
    gap: 10px;
}
span.contact-notice {
    border: 1px solid #eee;
    padding: 1px 10px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.05);
}
.yb-post-order-online{
  margin-top: 0px !important;
  margin-right: 0px !important;
}
.bottom-info{
	display:flex;
  justify-content: space-between;
  margin-top: 10px;
  align-items: center;
}
.yb-archive-content-inner {
    margin-top: 46px;
}
