@font-face {
  font-family: 'spanish';
  src: url('/stylesheets/spanish.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

.box1{
    border-radius: 10px !important
}

.main-home .search .search-default {
    border-radius: 10px  !important
}
	
h3 {
    font-size: 16px;
}

h1 {
font-family: 'spanish', sans-serif;
font-size: 38px;
}

h2.home {
  font-family: 'spanish', sans-serif;
  font-size: 30px  !important;
}

@media screen and (max-width: 600px) {
    body {
        padding: 0px !important;
    }
}

.main-home:after {
    position: absolute !important;
    content: "" !important;
    display: block !important;
    width: 100% !important;
    height: 400px !important;
    left: 0 !important;
    bottom: 0 !important;
    background-image: url('/images/spain/home/olas.svg') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    z-index: 1 !important;
	border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    background-color: transparent !important;
}

@media screen and (max-width: 768px) {
    .main-home:after {
        height: 35vw !important;
		bottom: 60px !important;
    }
}

@media screen and (max-width: 480px) {
    .main-home:after {
        height: 50vw !important;
		bottom: 60px !important;
    }
}

@media only screen and (max-width: 400px) {
    .nav .cnt-logo img {
        margin-top: 0px;
        height: 35px;
    }
	    .nav .logo-name {
        font-size: 11px;
        display: none;
    }
}

.left-image {
    float: left;
    width: 150px;
    height: 150px;
    padding-right: 10px;
}

.header.home .header-links {
    display: none;
}

.home.less {
    margin-top: -5px;
}

.links li:before {
    display: none  !important
}

.links li a {
    text-decoration: none;
}

.nav .menu-buttons .usermenu-button {
    opacity: 1;
}

/* tag cloud */

/* Container for the entire tag cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Individual tag style */
.tag {
  border: 1px solid #036;
  color: #036;
  background: white;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
  white-space: nowrap; /* Prevent tag text from wrapping */
}

/* Selected tag style */
.tag.selected {
  background: #036;
  color: white;
}

/* Search button tag */
.tag-search {
  border: 2px solid orange;
  color: white;
  background: orange;
}

/* Selected search button */
.tag-search.selected {
  background: orange;
  color: white;
}

/* Disabled search button */
.tag-search.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Heading style for tag groups */
.tag-group h3 {
  margin-top: 15px;	
  margin-bottom: 0px;
  color: #444;
  padding-bottom: 10px;
}

/* Wrapper for zone tags and toggle */
.zone-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

/* Visible zone tags container */
.visible-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1 1 auto; /* Allow to grow and shrink */
}

/* Hidden zone tags container */
.hidden-tags {
  display: none; /* Hidden by default */
  flex-wrap: wrap;
  gap: 10px;
  width: 100%; /* Full width below toggle */
  margin-top: 10px;
}

/* Show hidden tags when active */
.hidden-tags.active {
  display: flex;
}

/* More+ toggle tag style */
.tag-more {
  font-weight: bold;
  color: #036;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  border: 1px solid #036;
  background: white;
  padding: 8px 14px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

/* More+ toggle hover effect */
.tag-more:hover {
  background-color: #d0e7ff;
}

.tag-region {
  font-weight: bold;
  border-color: #063;
  color: #063;
}
.tag-region.selected {
  background: #063;
  color: white;
}



/* tag cloud */

/* sell page */

.role-description  {
  font-size: 13px
}


.midsize {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.centerit, .pricing-midsize {
    text-align: center;
}

.toggle-midsize {
    margin-bottom: 20px;
}

.toggle-btn {
    cursor: pointer;
    padding: 8px 15px;
    margin: 0 3px;
    background-color: #036;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #036;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    position: relative;
}

.toggle-btn img {
    width: 30px;
    height: 30px;
}

.toggle-btn.active {
    background-color: #036;
}

.toggle-btn:not(.active) {
    background-color: transparent;
    color: #036;
}

@media (max-width: 480px) {
    .toggle-midsize {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .toggle-btn {
        padding: 9px 5px;
        font-size: 14px;
        width: calc(33% - 4px);
        box-sizing: border-box;
        margin: 2px;
    }
    .toggle-btn img {
        width: 23px;
        height: 23px;
    }
}

.pricing-table {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
}

.pricing-option {
    position: relative; /* 👈 Add this line */
    border: 1px solid #036;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    flex-basis: calc(33.333% - 20px);
    box-sizing: border-box;
    margin: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}


.pricing-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pricing-option h2 {
    position: relative; /* Necessary for positioning the pseudo-element */
    padding-bottom: 10px; /* Adds some space below the h2 text */
    margin-bottom: 20px; /* Adds space between the line and the next element */
	margin-top: 5px;
	font-size: 24px;
}

.pricing-option h2::after {
    content: '';
    display: block;
    width: 160%; /* Adjust this value to increase the width of the line */
    height: 1px; /* Thickness of the line */
    background-color: #ccc; /* Color of the line */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* Centers the line */
}

.price, .price-per-month {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.select-button {
    background-color: white;
    color: #036;
    border: 1px solid #036;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    width: 80%;
    font-size: 16px;
    font-weight: bold;
}

.select-button:hover {
    background-color: #036;
    color: white;
    border: none;
}

@media (max-width: 768px) {
    .pricing-option {
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .pricing-option {
        flex-basis: 100%;
    }
}

.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
}

.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 10px 0;
  background: #f39c12; /* Change color if needed */
  color: white;
  font-weight: bold;
  text-align: center;
  transform: rotate(45deg);
  top: 30px;
  right: -50px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  font-size: 12px;
  text-transform: uppercase;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    margin-top: 15px;
}

.trust-badges span {
    background-color: #f1f1f1;
    color: #036;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid #ccc;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.trust-badges span:hover {
    background-color: #e0e0e0;
}

@media (max-width: 480px) {
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}

.billing-text {
    font-size: 14px; /* Adjust to match the design */
    color: #666; /* Adjust to match the design */
    margin: 5px 0 15px; /* Adjust spacing as needed */
    line-height: 1.4; /* Adjust to control line spacing */
    text-align: center; /* Center the text */
}

.billing-text strong {
    font-weight: bold; /* Or any other emphasis styling */
    color: #333; /* Darker color for emphasis, adjust as needed */
}

.billing-text img {
    margin-right: 5px;
    flex-shrink: 0;
    vertical-align: middle; /* Fallback for non-flex browsers */
}

.billing-text span {
    line-height: 1.2;
    vertical-align: middle; /* Fallback for non-flex browsers */
}

section h2, section h3 {
    color: #036;
}

section ol, section ul {
    padding: 0;
    list-style-position: inside;
}

#faq {
    border-top: 1px solid #ccc;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    cursor: pointer;
    color: #036;
    font-weight: bold;
    margin: 0;
}

.faq-answer {
    display: none;
    margin: 5px 0 0;
    color: #666;
    padding-left: 15px;
}

.faq-question:hover {
    text-decoration: underline;
}

.item-benefits {
    display: flex;
    flex-direction: column;
}

.item-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 10px;
	justify-content: center;
}

.item {
    display: flex;
    align-items: center;
    width: 48%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.item img {
    width: 150px;
    height: auto;
    margin-right: 10px;
}
.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text h3 {
    margin: 0;
    font-weight: bold;
    text-align: left;
}

.text p {
    margin: 5px 0 0;
    font-size: 0.9em;
    color: #555;
}

@media (max-width: 600px) {
    .item-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .item p,
    .item a {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .item {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* sell page end */

/* footer home */
.copyright {
    padding: 10px 0;
    border-top: 1px solid #ddd;
    background-color: #fff !important;            
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff !important;
}

.footer-column {
    flex: 1 1 20%;
    text-align: left;
}

.footer-column h3 {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
    margin-top: 8px;
}

.footer-column ul li {
    margin-bottom: 5px;
    display: flex;
    align-items: center !important;
}

.footer-column ul li a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-column img {
    margin-right:5px;
	border-radius:3px;
}


@media (max-width: 768px) {
    .footer-column {
        flex: 1 1 100%;
        text-align: left;
    }
}

.copyright,
.copyright li,
.copyright a,
.copyright strong {
    font-size: 14px !important;
}

.copyright strong {
    line-height: 10px;
    padding: 5px 0px;
}

/* footer end */

/* about page */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #1a5f7a;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline h2, .timeline h3 {
    color: #1a5f7a;
}

.timeline h2 {
    font-size: 20px;
}

.timeline h3 {
    font-size: 17px;
}

.container-about {
    position: relative;
    background-color: inherit;
    width: 50%;
}

.container-about::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid #1a5f7a;
    top: 125px;
    border-radius: 50%;
    z-index: 1;
}

.right-about {
    left: 50%;
    padding-left: 40px;
}

.left-about::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 132px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid #1a5f7a;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #1a5f7a;
}

.right-about::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 132px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid #1a5f7a;
    border-width: 10px 10px 10px 0;
    border-color: transparent #1a5f7a transparent transparent;
}

.right-about::after {
    left: -16px;
}

.content-about {
    padding: 20px;
    background-color: white;
    position: relative;
    border-radius: 6px;
}

.timeline-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 15px;
    -webkit-mask-image: url('/images/spain/about/mask.svg'); 
    mask-image: url('/images/spain/about/mask.svg');
    -webkit-mask-size: cover;
    mask-size: cover;
}

.left-about {
    padding-right: 40px;
}

.left-about .timeline-image {
    margin-right: 20px;
    margin-left: auto;
    display: block;
}

@media screen and (max-width: 600px) {
    body {
        padding: 10px;
    }
    .timeline::after {
        left: 31px;
    }
    .container-about {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .container-about::before {
        left: 60px;
        border: medium solid #1a5f7a;
        border-width: 10px 10px 10px 0;
        border-color: transparent #1a5f7a transparent transparent;
    }
    .left-about::after, .right-about::after {
        left: 15px;
    }
    .right-about {
        left: 0%;
    }
    .left-about, .right-about {
        padding: 0;
    }
    .content-about {
        padding: 0px;
        padding-left: 50px;
    }
    .timeline-image {
        margin-right: 0;   
        margin-left: auto;  
        display: block;     
    }
}



/* about page end */

/* contact us */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

.contact-info div {
    flex: 1 1 25%;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid grey;
}

.contact-info div:nth-child(4) {
    flex: 1 1 100%;
}

.contact-info h3 {
    margin-top: 0;
    font-size: 14px;
}

.contact-info p {
    font-size: 14px;
}

.map-container {
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.social-media {
    text-align: center;
    margin-top: 20px;
}

.social-media a {
    margin: 0 10px;
    color: #1a5f7a;
    font-size: 24px;
    text-decoration: none;
}

.social-media a:hover {
    color: #144b5f;
}

.whatsapp-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
}

.whatsapp-link:hover {
    background-color: #128C7E;
}

@media (max-width: 768px) {
    .contact-info div {
        flex: 1 1 100%;
    }
}
/* slider home*/
 .slider-container {
    width: 100%;
    max-width: 720px;
    overflow: hidden;
    position: relative;
}


.slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: max-content;
}

.itemc {
    flex: 0 0 auto;
    margin-right: 16px;
    position: relative;
    width: 270px;
    height: 275px;

}

.itemc:last-child {
    margin-right: 0; /* Ensures no extra margin at the end */
}

.itemc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    padding: 20px;
    border-radius: 0 0 8px 8px;
}

.overlay .text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9); /* Transparent white */
    color: black; /* Black arrow for contrast */
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(0, 0, 0, 0.2);
    width: 40px; /* Make it round */
    height: 40px; /* Make it round */
    border-radius: 50%; /* Fully rounded button */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.3s ease;
	font-size: 18px;
    font-weight: bold;
	line-height: 22px
}

.scroll-btn:hover {
    background-color: rgba(255, 255, 255, 1); /* Fully opaque white on hover */
    transform: translateY(-50%) scale(1.1); /* Slightly enlarge on hover */
}

.scroll-btn.left {
    left: 10px;
}

.scroll-btn.right {
    right: 10px;
}


@media (max-width: 768px) {
    .itemc {
        width: calc(100% - 32px);
        max-width: 270px;
    }
}

/* Home buttons */



.button-container {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.custom-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #000;
    border-radius: 8px;
    background-color: transparent;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
}

.custom-button:hover {
    background-color: #eee;
	text-decoration: none;
}

.custom-button img {
    margin-right: 10px;

}

.custom-button img {
    order: 2;
    margin-left: 10px;
	width: 34px;
    height: 34px;
}

.custom-button span {
    order: 1;
}

@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
    }
    
    .custom-button {
        width: 100%;
    }
}
/* Home buttons end*/
/* Breadcrumbs mobile*/



.breadcrumb {
    display: flex;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar styles */
.breadcrumb::-webkit-scrollbar {
    height: 3px; /* Thin scrollbar */
}

.breadcrumb::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track background */
    border-radius: 3px;
}

.breadcrumb::-webkit-scrollbar-thumb {
    background: #888; /* Scrollbar color */
    border-radius: 3px;
}

.breadcrumb::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Remove scrollbar buttons/arrows */
.breadcrumb::-webkit-scrollbar-button {
    display: none;
    height: 0;
    width: 0;
}

/* Breadcrumb list styling */
.breadcrumb ol {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.breadcrumb li:not(:last-child)::after {
    margin: 0 5px;
}

.breadcrumb li:first-child:before {
    content: none;
    width: 0;
}

.breadcrumb a {
    text-decoration: none;
    color: #007bff;
    font-size: 0.85rem !important;
}

/* Breadcrumbs mobile end*/

.results-addproperty .box1 .box-content:after,
.results-columns .box1 .box-content:after,
.suggestions-results .box1-details .box-content:after {
    width: 23px !important
}

#property-details h2 {
    padding-top: 0px;
}

/* searchbox*/



.search .search-default {
    width: 100%; 
    overflow: hidden;
}

@media (min-width: 600px) {
    .search .search-default .formfield.main-search {
        width: calc(100% - 310px);
        float: left;
        padding-right: 10px;
        box-sizing: border-box;
    }
}
.search .search-default .formfield {
    border-bottom: 0;
    float: left;
    border: none;
    padding: 0 10px 0 0;
    box-sizing: border-box;
}

.search .search-default .search-buttons {
    float: left;
    white-space: nowrap;
}

.search .search-default .formfield.main-search input[type="text"] {
    width: 100%;
    box-sizing: border-box;
}


@media (max-width: 768px) {
    .main-home .search .search-default .main-search {
        width: auto;
        float: left;
        width: calc(100% - 100px);
    }


    .search .search-default .main-search {
		width: auto;
        float: left;
        width: calc(100% - 154px); 
    }

    .search .search-default .search-buttons {
        float: left;
    }
}

.search .search-default .km-range {
    padding: 5px 10px !important;
    box-sizing: border-box;
}

/* p details*/

.property-information table {
    margin: 20px 0px;
}

@media (min-width: 380px) and (max-width: 499px) {
    .popup-respond #contact-form, .respond #contact-form {
        width: 350px;
        margin-top: 15px;
		float:left
    }
}

@media (min-width: 500px) {
    .popup-respond #contact-form, .respond #contact-form {
        width: 490px;
        margin-top: 15px;
		float:left
    }
}

 #property-details .whatsapp-button {
    background-color: #25D366;
}

.share-icons li.mail a {
    padding-left: 3px;
}
table {
    border: 1px solid #cccccc; /* Lighter grey color */
    border-radius: 8px; /* Rounded corners for the table */
    overflow: hidden; /* Ensures the rounded corners are visible, especially if there's a background color */
}


.arrow-energy.purple1 .arrow-point {
  background-color: #f6ecfd;
}

.arrow-energy.purple2 .arrow-point {
  background-color: #e1c2f9;
}

.arrow-energy.purple3 .arrow-point {
  background-color: #d4a9f6;
}

.arrow-energy.purple4 .arrow-point {
  background-color: #cc95f4;
}

.arrow-energy.purple5 .arrow-point {
  background-color: #b971ee;
}

.arrow-energy.purple6 .arrow-point {
  background-color: #a74dec;
}

.arrow-energy.purple7 .arrow-point {
  background-color: #8918de;
}

.masked {
    width: 100%;
    max-width: 150px;
    height: auto;
    -webkit-mask-image: url(/images/spain/about/mask.svg);
    mask-image: url(/images/spain/about/mask.svg);
    -webkit-mask-size: cover;
    mask-size: cover
}

.popup-respond picture, .respond picture {
border-radius: 0px;
}

    .video-container {
        position: relative;
        width: 100%; /* Full width of the parent container */
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0; /* Zero height to allow padding to define aspect ratio */
        overflow: hidden;
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%; /* Full width of the container */
        height: 100%; /* Full height of the container */
        border: 0; /* Remove iframe border */
    }
	
	.share-icons li.twitter a:before {
		content: "";
		display: inline-block;
		width: 20px;
		height: 20px;
		background: url('/images/fonts/X_logo.svg') no-repeat center;
		background-size: contain;
	}
	
	.icon-location:before, .search-leafletbutton:before {
		content: "";
		display: inline-block;
		width: 20px;
		height: 20px;
		background: url('/images/fonts/map.svg') no-repeat center;
		background-size: contain;
		margin-top: 3px;
		margin-left: -3px;
	}		
	
	.extended-search:before {
		content: "";
		display: inline-block;
		width: 20px;
		height: 20px;
		background: url('/images/fonts/filter.svg') no-repeat center;
		background-size: contain;
		margin-top: 3px;
		margin-left: -3px;
	}
	.extended-search span {display: none;}
	
	.property-stats .do-map {
	  display: inline-flex !important;
	  align-items: center !important;
	  font-size: inherit !important;
	  color: inherit !important;
	  background-color: transparent !important;
	  border: none !important;
	  border-radius: 0 !important;
	  margin-top: 0 !important;
	  padding: 15px !important;
	  text-decoration: none
	}

	.property-stats .do-map::before {
	  content: "" !important;
	  display: inline-block !important;
	  width: 20px !important;
	  height: 20px !important;
	  margin-right: 5px !important;
	  background-image: url("/images/fonts/map2.svg") !important;
	  background-size: contain !important;
	  background-repeat: no-repeat !important;
	  background-position: center !important;
	  vertical-align: middle !important;
	}
	
	.cnt-detailhandle .detail-handle {
    margin: 0px auto 20px auto !important;
	}
/* p details end*/

/* results page */

@media only screen and (min-width: 1024px) {
    .results-addproperty .box1, 
    .results-columns .box1,
    .results-addproperty .box1.big-box, 
    .results-columns .box1.big-box,
    .results-addproperty .box1.small-box, 
    .results-columns .box1.small-box {
        width: 49%;
    }

    .row .column.is2-3 {
        padding-right: 10px;
    }
}

.results-addproperty .box1.verified-agent:after, 
.results-columns .box1.verified-agent:after {
    background: url(/images/verified_agent.svg) no-repeat;
    width: 44px; /* Original width */
    height: 55px; /* Original height */
    right: 15px;
    top: 10px;
    left: auto;
    z-index: 3;
    opacity: 1;
    content: ""; /* Remove the text "verified" */
    padding-top: 0; /* Remove padding */
    font-weight: 700;
    color: #fff;
    background-size: contain; /* Ensure proper scaling of SVG */
}

.callout.verified-agent {
    background: #f1f1f1 url(/images/verified_agent_grey.svg) no-repeat right 20px top 20px;
}


dl {
  display: flex !important;
  flex-wrap: wrap !important;
  padding: 0 !important;
  margin: 15px !important;
}

dt {
  font-weight: bold !important;
  margin: 0 !important;
  padding: 5px 10px 5px 0 !important; /* Add spacing between dt and dd */
  flex: 1 1 150px; /* Ensures dt has enough space */
  text-align: left; /* Aligns text properly */
}

dd {
  margin: 0 !important;
  padding: 5px 0 !important;
  flex: 2 1 calc(100% - 150px); /* Makes dd take the remaining space */
}


@media (max-width: 600px) {
  dl {
    display: block !important;
  }


  dd {
    padding-left: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word; /* Break long text */	

  }
  
  @media (max-width: 600px) {
    dt, dd {
        display: block;
        width: 100%;
    }
    dd {
        margin-top: -15px  !important;
    }
}


    dt a, dd a {
        word-break: break-word; /* Ensure long URLs or emails break */
    }  
  
  
}


.row:not(.callout.agent-details .row):not(:has(form)):not(.steps) :not(div) {
    flex-basis: auto !important;
}

}
/* Ensure the layout for dt and dd is not messed up */
.row dl {
    display: flex;
    flex-wrap: wrap;
}

.row dt {
    flex: 0 0 150px; /* Fixed width */
    font-weight: bold;
}

.row dd {
    flex: 1; /* Take remaining space */
}


.callout {
	padding:20px !important;
    overflow-wrap: break-word; /* Ensures long words break properly */
    word-wrap: break-word; /* For legacy support */
}

/* results page */

/* login page */
/* Base Styles */
.steps ul li {
    list-style-type: none;
    display: inline-block;
    float: left;
    text-align: center;
    font-size: 12px;
    width: 25%; /* Corrected width for 4 steps */
    padding-right: 0;
    position: relative;
    z-index: 2;
    color: #d7dcdf;
}

.steps ul li span {
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 76px;
    border-radius: 50%;
    border: 3px solid white;
    outline: 3px solid #fff;
    outline-offset: -7px;
    background-color: #ccc;
    color: #333;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.steps ul li span:hover {
    background-color: #4CAF50;
    color: white;
}

/* Ensure text inside the circle doesn't touch edges */
.steps ul li span {
    padding-top: 5px;
}

/* Arrow Between Steps */
.steps ul li:not(:last-child)::after {
    content: "";
    border-top: solid 2px #c2c2c2;
    display: block;
    position: absolute;
    top: 45px;
    left: calc(100% - 10px);  /* Start from the edge of the circle */
    width: 200%;  /* Adjust length of the line so it starts after the circle and goes to the other one*/
    z-index: 1;
    transform: translateX(-50%);
}

/* Remove arrow from last step */
.steps ul li:last-child::after {
    content: none;
}

/* Current Step Styling */
.steps ul li.current-step span {
    background-color: #4CAF50;
    color: white !important;
}

/* Next Step Styling */
.steps ul li.next-step span {
    background-color: #FFC107;
}

/* Mobile Styles: Show only Current and Next Step */
@media (max-width: 480px) {
    .steps ul {
        display: flex;
        justify-content: space-between;
    }

    .steps ul li {
        width: 48%;
        float: none;
    }

    .steps ul li:not(.current-step):not(.next-step) {
        display: none;
    }

    /* Correct the line position in mobile view */
    .steps ul li.current-step:after {
        left: calc(100% - 10px);  /* Shift right to start at the circle edge */
        width: 200%;  /* Adjust length of the line*/
       transform: translateX(-50%);
    }
}

@media only screen and (min-width: 1024px) {
    body.info-page .results-addproperty .box1,
    body.info-page .results-columns .box1,
    body.info-page .results-addproperty .box1.big-box,
    body.info-page .results-columns .box1.big-box,
    body.info-page .results-addproperty .box1.small-box,
    body.info-page .results-columns .box1.small-box {
        width: 32%;
    }
}

/* login page end */
/* extended search */
@media screen and (min-width: 641px) {
  [maptype=regionmap] {
    max-width: 600px !important;
    max-height: 600px !important;
  }
}

/* For screens 640px and smaller */
@media screen and (max-width: 640px) {
  [maptype=regionmap] {
    max-width: 380px !important;
    max-height: 600px !important;
  }
}

@media only screen and (min-width: 640px) {
    .svgmap {
        width: 100%;
    }
}

/* default menu */
.links li a {
    display: flex;
    align-items: center;
}

.links li a img {
    outline: 1px solid black;
    outline-offset: -1px;
    margin-right: 5px;
}
/* default menu end */
/* agent page */

.agent-list .links li::before {
    content: "👨‍💼 "; /* Adds the emoji before the text */
    margin-right: 8px; /* Optional: Adjusts the space between the emoji and the text */
    display: inline-block !important; /* Ensures the emoji shows up despite previous styles */
}

/* agent page end*/