@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap);
@import "https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,778;1,778&display=swap";

@keyframes tabActivate {
    0% {
        opacity: 0;
        transform: scale(.9)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

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

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }
    to {
        background-position: 200% 0
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

:root {
    --primary: #2cb34f;
    --primary-hover: #44b75f;
    --primary-light: #53c970;
    --primary-lighter: #d3f1db;
    --primary-dark: #249c43;
    --primary-darker: #1a7a33;
    --primary-alpha-10: rgba(44, 179, 79, 0.1);
    --primary-alpha-20: rgba(44, 179, 79, 0.2);
    --primary-alpha-30: rgba(44, 179, 79, 0.3);
    --primary-alpha-70: rgba(44, 179, 79, 0.7);
    --dark-accent: #475569;
    --dark-accent-light: #1a1a4d;
    --secondary: #f59e0b;
    --text-dark: #475569;
    --text-medium: #334155;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --border-light: #e2e8f0;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --white-alpha-70: rgba(255, 255, 255, 0.7);
    --white-alpha-80: rgba(255, 255, 255, 0.8);
    --white-alpha-90: rgba(255, 255, 255, 0.9);
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-primary: 0 8px 25px rgba(17, 130, 141, 0.15);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition: all 0.3s ease;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --text-color: #D3D3D3;
    --primary-color: #2d3436;
    --secondary-color: #636e72;
    --accent-color: #ffd700;
    --light-gray: #f5f5f5;
    --border-radius: 8px
}

* {
    padding: 0;
    box-sizing: border-box
}

body {
    background-color: var(--gray-50)
}

a {
    text-decoration: none !important
}

*, p {
    margin: 0
}

.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky
}

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
    justify-content: space-between;
    height: 70px
}

.header-container, .header-left, .logo {
    display: flex;
    align-items: center
}

.header-left {
    gap: .75rem
}

.logo {
    text-decoration: none;
    color: var(--primary);
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: .5px;
    transition: color var(--transition-fast)
}

.breadcrumb {
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: var(--gray-600);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--gray-700);
}

.property-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

/* Carousel */
.carousel {
    border-radius: 0.5rem;
    overflow: hidden;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

/* Thumbnail Gallery */
.thumbnail-gallery img {
    cursor: pointer;
    height: 70px;
    object-fit: cover;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.thumbnail-gallery img:hover,
.thumbnail-gallery img.active {
    border-color: var(--primary);
}

.logo:hover {
    color: var(--primary-dark)
}

.logo-svg {
    transition: transform var(--transition-fast)
}

.city-item:hover .city-image img, .listing-card:hover .listing-image img, .logo:hover .logo-svg {
    transform: scale(1.05)
}

.logo-svg text {
    transition: fill var(--transition-fast)
}

.logo i {
    font-size: 1.25rem
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0
}

.header .nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: .9rem;
    padding: .5rem 0;
    transition: color var(--transition-fast);
    position: relative
}

.location-selector i, .nav-link:hover {
    color: var(--primary)
}

#navMenu .nav-link::after, .search-tab.active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--primary)
}

#navMenu .nav-link::after {
    width: 0;
    height: 2px;
    transition: width var(--transition-fast)
}

#navMenu .nav-link:hover::after {
    width: 100%
}

.header-buttons {
    display: flex;
    gap: .75rem;
    align-items: center
}

.btn-outline {
    padding: .5rem 1.25rem;
    border: 1px solid var(--primary);
    background: 0 0;
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: .875rem;
    transition: all var(--transition-fast)
}

.btn-outline:hover, .btn-primary {
    background: var(--primary);
    color: var(--white)
}

.btn-primary {
    padding: .5rem 1.25rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: .875rem;
    border: 0;
    transition: all var(--transition-fast)
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white)
}

.btn-outline-primary {
    color: #11828d;
    border-color: #11828d;
}

.mobile-toggle {
    display: none;
    background: 0 0;
    border: 0;
    color: var(--gray-600);
    font-size: 1.25rem;
    cursor: pointer;
    padding: .5rem;
    border-radius: 8px;
    transition: background var(--transition-fast)
}

.mobile-toggle:hover {
    background: var(--gray-100);
    color: var(--primary)
}

.mobile-header-icons {
    display: none
}

.header-icon, .location-selector {
    align-items: center;
    background: var(--gray-100);
    transition: all var(--transition-fast)
}

.header-icon {
    width: 40px;
    height: 40px;
    color: var(--gray-600);
    position: relative
}

.header-icon:hover {
    background: var(--primary-alpha-10);
    color: var(--primary)
}

.header-icon, .header-icon .badge {
    border-radius: 50%;
    display: flex;
    justify-content: center
}

.header-icon .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary);
    color: #fff;
    width: 18px;
    height: 18px;
    font-size: 10px;
    align-items: center
}

.location-selector {
    display: none;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: 8px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: .875rem;
    cursor: pointer
}

.location-selector:hover {
    background: var(--primary-alpha-10)
}

.hero {
    background-image: url(/assets/images/hero.webp);
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    min-height: 400px
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: .75rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .2)
}

.hero-subtitle {
    font-size: 1rem;
    opacity: .9;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .2)
}

.search-card {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, .2);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal)
}

.search-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl)
}

.search-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    background: var(--white-alpha-70);
    border-radius: 12px;
    padding: .25rem;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden
}

.search-tab {
    flex: 1;
    padding: .75rem 1rem;
    background: 0 0;
    border: 0;
    border-radius: 10px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: .875rem;
    position: relative;
    z-index: 1
}

.search-tab.active {
    color: var(--white) !important;
}

.search-tab.active::before {
    top: 0;
    right: 0;
    border-radius: 10px;
    z-index: -1;
    animation: tabActivate .3s ease forwards
}

.search-tab:hover:not(.active) {
    background: var(--gray-200)
}

.search-tab i {
    margin-right: .5rem;
    font-size: .875rem
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center
}

.search-input-wrapper {
    flex: 1;
    min-width: 250px;
    position: relative
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    font-size: 1rem;
    transition: all var(--transition-normal);
    background: var(--white);
    box-shadow: var(--shadow-sm)
}

.search-input:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-alpha-10), var(--shadow-sm);
    transform: translateY(-2px)
}

.search-input::placeholder {
    color: var(--gray-400);
    transition: opacity var(--transition-normal)
}

.search-input:focus::placeholder {
    opacity: .7
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
    transition: color var(--transition-normal)
}

.search-input:focus + .search-icon {
    color: var(--primary)
}

.search-buttons {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

.btn-advanced, .btn-search {
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    white-space: nowrap
}

.btn-advanced {
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
    font-weight: 500;
    box-shadow: var(--shadow-sm)
}

.btn-advanced:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

.btn-search {
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border: 0;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(44, 179, 79, .3)
}

.btn-search:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(44, 179, 79, .4)
}

.btn-search.loading {
    opacity: .7;
    cursor: not-allowed
}

.btn-search.loading i {
    animation: spin 1s linear infinite
}

.popular-searches {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
    justify-content: center
}

.popular-search-tag {
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: .25rem .75rem;
    font-size: .75rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-fast)
}

.popular-search-tag:hover {
    background: var(--primary-alpha-10);
    border-color: var(--primary);
    color: var(--primary)
}

.autocomplete-items {
    position: absolute;
    border: 1px solid var(--gray-300);
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-height: 200px;
    overflow-y: auto;
    background: var(--white)
}

.autocomplete-item {
    padding: .75rem 1rem;
    cursor: pointer;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: .5rem
}

.autocomplete-item:hover {
    background-color: var(--primary-alpha-10)
}

.autocomplete-item i {
    color: var(--gray-400);
    font-size: .875rem
}

.content {
    padding: 4rem 0;
    background: var(--white)
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem
}

.section-title {
    text-align: center;
    color: var(--gray-800)
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.section-title p {
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto
}

.stats {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--primary-alpha-10);
    border: 1px solid var(--primary-alpha-20);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast)
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .5rem
}

.stat-label {
    color: var(--gray-600);
    font-size: .875rem
}

.housing-map {
    max-width: 900px;
    margin: 0 auto;
    padding: 15px
}

.map-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    gap: 15px
}

/* Property Specs */
.property-specs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.spec-label {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.spec-value {
    color: var(--text-dark);
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-success {
    background-color: #25d366;
    border-color: #25d366;
}

/* Feature Lists */
.feature-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Price */
.price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.75rem;
}

.price-sm {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.25rem;
}

/* Agent Info */
.agent-info {
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1rem;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
}

/* Similar Properties */
.similar-property {
    transition: transform 0.2s ease;
}

.similar-property:hover {
    transform: translateY(-5px);
}

.similar-property .price {
    font-size: 1.1rem;
    color: var(--primary);
}

.similar-property .location {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Map */
#map {
    width: 100%;
    height: 400px;
}

/* Badge */
.badge {
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    font-size: 0.75rem;
    position: static;
    color: #ffffff;
}

.property-quick-info {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Tabs */
.property-tabs .nav-tabs {
    border-bottom: none;
}

.property-tabs .nav-tabs .nav-link {
    color: var(--gray-700);
    font-weight: 500;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0;
    transition: all 0.2s ease;
}

.property-tabs h5 {
    color: #000 !important;
}

.property-tabs p {
    color: #000 !important;
}

.property-tabs .nav-tabs .nav-link:hover {
    color: var(--primary);
    background-color: var(--gray-100);
}

.property-tabs .nav-tabs .nav-link.active {
    color: var(--primary);
    background-color: transparent;
    border-bottom: 2px solid var(--primary);
}

.info-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background-color: var(--gray-100);
    border-radius: 0.25rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.bg-primary {
    background-color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .property-title {
        font-size: 1.3rem;
    }

    .carousel-item img {
        height: 400px;
    }

    .sticky-top {
        position: relative;
        top: 0 !important;
    }
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }

    .thumbnail-gallery img {
        height: 60px;
    }

    .property-quick-info {
        flex-direction: column;
    }

    .property-quick-info .d-flex:first-child {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        height: 250px;
    }

    .card-body {
        padding: 1rem;
    }

    .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

.right-card.card,
.similar-properties.card,
.property-tabs.card {
    width: 100%;
    margin: 0;
}


#send-message-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#textarea {
    resize: none;

}

.city-info h3, .map-title {
    font-weight: 600;
    color: var(--text-dark)
}

.map-title {
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px
}

.map-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px
}

.map-filters {
    display: flex;
    gap: 8px;
    background: var(--primary-lighter);
    padding: 4px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light)
}

.filter-btn {
    background: 0 0;
    border: 0;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: .8rem;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition)
}

.filter-btn:hover {
    color: var(--primary-hover);
    background: rgba(17, 130, 141, .1)
}

.filter-btn.active {
    background: var(--primary);
    color: #fff !important;
    box-shadow: var(--shadow-sm)
}

.cities-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px
}

.cities-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-lg)
}

.cities-track {
    display: flex;
    gap: 15px;
    transition: transform .5s ease;
    will-change: transform
}

.city-image, .city-item {
    position: relative;
    overflow: hidden
}

.profile-mobile {
    display: none;
    background-color: #fff;
    margin-top: 80px;
    margin-bottom: 5rem;
}

.city-item {
    min-width: 220px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light)
}

.city-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-primary);
    border-color: var(--primary)
}

.city-image {
    height: 110px
}

.city-image img, .listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0, rgba(0, 4, 51, .4) 100%);
    z-index: 1
}

.city-info h3 {
    font-size: 1rem;
    margin-bottom: 8px
}

.listing-stats {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.listing-count {
    font-size: .9rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px
}

.listing-count::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%
}

.listing-types {
    display: flex;
    gap: 8px;
    font-size: .75rem;
    color: var(--text-light)
}

.rent-count, .sale-count {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light)
}

.rent-count i, .sale-count i {
    color: var(--secondary);
    font-size: .7rem
}

.rent-count i {
    color: var(--primary)
}

.nav-btn, .view-btn {
    cursor: pointer;
    transition: var(--transition)
}

.view-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--primary);
    border: 0;
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: .75rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px)
}

.city-item:hover .view-btn {
    opacity: 1;
    transform: translateY(0)
}

.view-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px)
}

.nav-btn {
    background: #fff;
    border: 2px solid var(--primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    z-index: 10;
    font-size: .9rem;
    box-shadow: var(--shadow-sm)
}

.nav-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05)
}

.nav-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
    transform: scale(1);
    border-color: var(--text-lighter);
    color: var(--text-lighter)
}

.map-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid var(--border-light)
}

.dots {
    display: flex;
    gap: 8px
}

.all-cities-link, .dot {
    transition: var(--transition)
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-lighter);
    cursor: pointer
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2)
}

.dot:hover {
    background: var(--primary-light)
}

.all-cities-link {
    font-size: .85rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    justify-content: center
}

.all-cities-link:hover, .view-all:hover {
    color: var(--primary-hover);
    background: var(--primary-lighter);
    border-color: var(--primary)
}

.all-cities-link i, .view-all i {
    transition: transform .3s ease;
    font-size: .75rem
}

.all-cities-link:hover i, .view-all:hover i {
    transform: translateX(4px)
}

.featured-listings {
    max-width: 1200px;
    margin: 0 auto
}

.listings-header {
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light)
}

.listings-container, .listings-header, .view-all {
    display: flex;
    align-items: center
}

.view-all {
    font-size: .9rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    gap: 6px;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light)
}

.view-all i {
    font-size: .8rem
}

.listings-container {
    position: relative;
    gap: 15px;
    margin-bottom: 20px
}

.listings-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-lg)
}

.listings-track {
    display: flex;
    gap: 20px;
    transition: transform .5s ease;
    will-change: transform
}

.listing-card {
    min-width: 300px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
    border-color: var(--primary)
}

.listing-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    z-index: 2
}

.listing-image {
    position: relative;
    height: 180px;
    overflow: hidden
}

.listing-price {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--dark-accent);
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    padding: 6px 12px;
    border-top-left-radius: var(--radius-sm)
}

.listing-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.listing-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.8em
}

.listing-location {
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px
}

.listing-location i {
    color: var(--primary);
    font-size: .8rem
}

.listing-features {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.feature {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .75rem;
    color: var(--text-medium);
    background: var(--bg-light);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light)
}

.feature i {
    font-size: .7rem
}

.listing-actions {
    display: flex;
    gap: 8px;
    margin-top: auto
}

.action-btn, .listings-footer {
    display: flex;
    justify-content: center;
    align-items: center
}

.action-btn {
    background: 0 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-medium)
}

.action-btn.contact, .action-btn.favorite {
    width: 32px;
    height: 32px
}

.action-btn.contact {
    background: var(--primary-lighter);
    color: var(--primary)
}

.action-btn.details {
    flex-grow: 1;
    font-size: .8rem;
    font-weight: 500;
    color: var(--primary)
}

.action-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary)
}

.action-btn.favorite:hover {
    background: #ef4444;
    border-color: #ef4444
}

.listings-footer {
    padding-top: 15px;
    gap: 1rem
}

.filter-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn .3s ease
}

.filter-modal.active {
    display: flex;
    align-items: center;
    justify-content: center
}

.filter-content {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp .3s ease;
    position: relative
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200)
}

.filter-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800)
}

.filter-close {
    background: 0 0;
    border: 0;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    padding: .5rem;
    border-radius: 50%;
    transition: all var(--transition-fast)
}

.filter-close:hover {
    background: var(--gray-100);
    color: var(--gray-600)
}

.filter-sections {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem
}

.filter-section {
    background: var(--gray-50);
    border-radius: 12px;
}

.filter-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.feature i, .filter-section-title i {
    color: var(--primary)
}

.filter-group {
    margin-bottom: 1.5rem
}

.filter-group:last-child {
    margin-bottom: 0
}

.filter-label {
    display: block;
    font-size: .875rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: .5rem
}

.filter-input {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: .875rem;
    transition: all var(--transition-fast);
    background: var(--white)
}

.filter-input:focus, .filter-select:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-alpha-10)
}

.filter-select {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: .875rem;
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast)
}

.price-range {
    display: flex;
    gap: 1rem;
    align-items: center
}

.price-input {
    flex: 1
}

.price-separator {
    color: var(--gray-400);
    font-weight: 500
}

.checkbox-group {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(120px, 1fr));
    gap: .75rem
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    padding: .5rem;
    border-radius: 8px;
    transition: background var(--transition-fast)
}

.register-modal .nav-tabs .nav-link {
    border: 0;
    color: #6c757d;
    padding: 1rem;
    font-weight: 500;
    position: relative
}

.login-modal .password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: 0 0;
    color: #718096;
    cursor: pointer;
    padding: .25rem
}

.checkbox-item:hover {
    background: var(--white)
}

.checkbox-item input[type=checkbox] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer
}

.register-modal .password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: 0 0;
    color: #718096;
    cursor: pointer;
    padding: .25rem
}

.checkbox-item label {
    font-size: .875rem;
    color: var(--gray-600);
    cursor: pointer
}

.range-slider {
    width: 100%;
    margin: 1rem 0
}

.range-input {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--gray-200);
    outline: 0;
    -webkit-appearance: none;
    appearance: none
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2)
}

.range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2)
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
    color: var(--gray-500);
    margin-top: .5rem
}

.filter-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200)
}

.btn-filter-apply, .btn-filter-clear {
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-fast)
}

.btn-filter-clear {
    padding: .75rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
    font-weight: 500
}

.btn-filter-clear:hover {
    background: var(--gray-100);
    border-color: var(--gray-400)
}

.btn-filter-apply {
    padding: .75rem 2rem;
    background: var(--primary);
    border: 0;
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .5rem
}

.btn-filter-apply:hover {
    background: var(--primary-dark)
}

.city-item.loading .city-image, .city-item.loading .city-info h3, .city-item.loading .listing-count, .city-item.loading .listing-types span {
    background: linear-gradient(90deg, var(--bg-light) 0%, var(--border-light) 50%, var(--bg-light) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite
}

.city-item.loading .city-info h3, .city-item.loading .listing-count, .city-item.loading .listing-types span {
    color: transparent;
    border-radius: 4px
}

.services-section {
    margin-top: 50px
}

.service-card {
    text-align: center;
    padding: 30px;

    border-radius: var(--border-radius);
    height: 100%
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px
}

.property-image img, .service-icon img {
    width: 100%;
    height: 100%
}
.service-card h3{
    color: #000;
}
.service-card h3, .service-card p {
    margin-bottom: 15px
}

.service-card p {
    color: var(--secondary);
    font-size: .9rem
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500
}

.service-link:hover {
    text-decoration: underline
}

.category {
    height: 50px;
    margin-top: 20px;
    border-radius: 20px;
    background-color: #fff;
    padding: 10px
}

.category > li, .list > li > a {
    display: flex;
    align-items: center
}

.category > li {
    justify-content: center;
    border-radius: 10px;
    width: 130px;
    padding-bottom: 10px;
    text-align: center;
    margin: auto;
    height: 50px;
    list-style: none
}

.category > li:hover {
    background-color: #f5f5f5
}

.nav-tabs .nav-link {
    color: #3c3d379c;
    font-weight: 500
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    background: 0 0;
    border-bottom: 2px solid #000
}

.footer-area ul {
    margin-bottom: 20px;
    height: auto
}

.footer-area h3{
    color: #000;
}

.categories-section {
    padding-bottom: 30px
}

.categories-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000433
}

.categories-section ul li {
    margin-bottom: 8px
}

.categories-section ul li a, .footer-area ul li a {
    color: #666;
    text-decoration: none;
    font-size: .9rem;
    transition: color .3s ease
}

.categories-section ul li a:hover {
    color: #000433;
    text-decoration: underline !important
}

.social-link > i > img {
    width: 22px;
    height: 22px
}

.app-downloads {
    justify-content: center
}

.list > li > a {
    width: 100%;
    height: 35px;
    gap: 20px
}

.list > li > a > p {
    font-size: 16px;
    color: #000
}

.list > li:hover > a > p {
    color: #fe7743;
    transform: scale(1.1);
    -webkit-text-decoration: underline 1px #fe7743;
    text-decoration: underline 1px #fe7743
}

.footer-accordion {
    display: none;
    margin: 10px 0
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #11828d !important
}

.accordion-button {
    outline: 0 !important;
    border: 0 !important;
    box-shadow: none !important
}

.btn-advanced:focus, .btn-outline:focus, .btn-primary:focus, .btn-search:focus, .header-icon:focus, .mobile-toggle:focus, .search-input:focus, .search-tab:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px
}



.orange-btn {
    background-color: #11828d
}

.orange-btn > i > svg {
    color: #fff
}

.orange-btn:hover > i > svg {
    color: #000 !important
}

.orange-btn:hover {
    background-color: #fff !important;
    border: 1px solid #000
}

.city-info {
    padding: 12px;
    position: relative
}

.property-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    margin-bottom: 20px;
    transition: transform .3s ease
}

.property-card:hover {
    transform: translateY(-5px)
}

.property-image {
    position: relative;
    height: 200px;
    overflow: hidden
}

/*.badge {*/
/*    position: absolute;*/
/*    top: 10px;*/
/*    left: 10px;*/
/*    z-index: 1;*/
/*    color: #11828d*/
/*}*/

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .8);
    border: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer
}

.nav-arrow.prev {
    left: 10px
}

.nav-arrow.next {
    right: 10px
}

.property-details {
    padding: 15px
}

.location, .property-details h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
    text-align: start
}

.features {
    display: flex;
    gap: 15px;
    margin-bottom: 10px
}

.features span {
    font-size: .9rem;
    color: var(--secondary-color)
}

.price {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--primary-color)
}

.date {
    color: var(--secondary-color);
    font-size: .8rem
}

.promo-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    text-align: center
}

.add-button, .bottom-nav {
    background-color: #fff;
    align-items: center;
    display: flex
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: space-around;
    height: 70px;
    border-top: 1px solid #e0e0e0;
    padding: 0 10px;
    z-index: 1000;
    box-shadow: 0 -2px 2px 1px #dedede78
}

.add-button {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    bottom: 15px;
    justify-content: center
}

.multi-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto
}

.carousel-wrapper {
    display: flex;
    transition: transform .5s ease;
    padding: 0 45px;
    align-items: center;
    height: 350px
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #11828d !important;
    color: #fff;
    border: 0;
    padding: 10px;
    cursor: pointer
}

.carousel-control.prev {
    left: 0
}

.carousel-control.next {
    right: 0
}

.swiper-container {
    width: 100%;
    max-width: 1300px;
    margin: 50px auto 20px;
    overflow-x: hidden !important
}

.swiper-slide-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    background-size: cover
}

.swiper-button-next, .swiper-button-prev {
    position: static !important;
    margin: 0 !important
}

.swiper-button-next:after, .swiper-button-prev:after {
    border: 1px solid #000433;
    border-radius: 100%;
    padding: 20px;
    color: #000433 !important;
    font-size: 10px !important;
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important
}

.swiper-container2 {
    height: 100%;
    max-height: 550px !important;
    min-height: 410px !important;
    margin-bottom: 20px
}

.cookiealert {
    background: #212327 url(data:image/png;base64,...)
}

.login-modal .modal-header {
    border-bottom: none;
    padding: 1.5rem 1.5rem .5rem
}

.login-modal .modal-content {
    border-radius: 12px;
    border: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1)
}

.login-modal .form-control {
    padding: .75rem 1rem;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    transition: all .2s
}

.login-modal .form-control:focus {
    border-color: #4a90a7;
    box-shadow: 0 0 0 3px rgba(74, 144, 167, .1)
}

.register-modal .modal-header {
    background-color: #4a90a7;
    color: #fff;
    border-bottom: none;
    padding: 1rem 1.5rem
}

.register-modal .nav-tabs {
    border-bottom: none;
    padding: 0 1rem;
    background-color: #f8f9fa
}

.register-modal .benefits-section {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(https://via.placeholder.com/400x600);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 2rem;
    border-radius: 0 12px 12px 0;
    height: 100%
}

.color-black {
    color: #000;
    border: 1px solid #000;
    border-radius: 5px
}

.col-lg-15 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width: 992px) {
    .col-lg-15 {
        flex: 0 0 20%;
        max-width: 20%
    }
}

.update-form {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.ui-menu .ui-menu-item-wrapper:hover {
    background: #11828d !important;
    border: #11828d !important;
    outline: 0 !important
}

.ui-menu-item:hover, .ui-state-active {
    background-color: #11828d !important
}

.ui-menu-item {
    background-color: #fff !important
}

.ball-place:hover {
    background-color: #000;
    transition: 300ms
}

.offcanvas {
    width: 100% !important
}

.ilan-span {
    position: relative;
    top: -4px
}

.title {
    font-size: 20px !important;
    color: #000
}

.section-title {
    color: #000;
    font-size: 20px
}

.ads {
    background-color: #fff
}

.img-wrapper {
    background-repeat: no-repeat;
    background-position: center;
    width: 100% !important
}

@media (min-width: 577px) {
    .header-left {
        display: contents
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 1.5rem
    }

    .categories-section .col-md {
        margin-bottom: 30px
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--gray-200);
        flex-direction: column;
        padding: 1rem;
        gap: .5rem;
        z-index: 100;
        box-shadow: var(--shadow-md)
    }

    .nav-menu.active {
        display: flex
    }

    .nav-link {
        padding: .75rem 1rem;
        border-radius: 8px;
        width: 100%;
        text-align: left
    }

    .nav-link:hover {
        background: var(--gray-100)
    }

    .hero {
        padding: 2rem 0 3rem;
        min-height: 320px
    }

    .hero-title {
        font-size: 1.75rem
    }

    .hero-subtitle {
        font-size: .9rem;
        margin-bottom: 1.5rem
    }

    .search-form {
        flex-direction: column
    }

    .search-card {
        padding: 1.5rem;
        margin: 0 1rem
    }

    .header-buttons {
        gap: .5rem
    }

    .btn-outline, .btn-primary {
        padding: .5rem 1rem;
        font-size: .8rem
    }

    .search-buttons {
        width: 100%;
        justify-content: space-between
    }

    .btn-advanced, .btn-search {
        flex: 1;
        justify-content: center;
        padding: .875rem 1rem
    }

    .search-input {
        padding: .875rem .875rem .875rem 2.5rem
    }

    .search-icon {
        left: .875rem
    }

    .header-container {
        justify-content: space-between
    }

    .mobile-header-icons {
        display: flex;
        gap: .75rem
    }

    .location-selector {
        display: flex
    }

    .housing-map {
        max-width: 100%;
        padding: 12px
    }

    .map-header {
        gap: 12px
    }

    .map-filters {
        width: auto;
        justify-content: center
    }

    .city-item {
        min-width: 200px
    }

    .cities-container {
        gap: 10px
    }

    .map-footer {
        gap: 15px;
        padding: 15px 0
    }

    .nav-btn {
        width: 32px;
        height: 32px;
        font-size: .8rem
    }

    .filter-content {
        width: 95%;
        padding: 1.5rem;
        max-height: 95vh
    }

    .filter-sections {
        grid-template-columns:1fr;
        gap: 1.5rem
    }

    .filter-section {
        padding: 1rem
    }

    .price-range {
        flex-direction: column;
        gap: .75rem
    }

    .price-separator {
        display: none
    }

    .checkbox-group {
        grid-template-columns:1fr
    }

    .filter-actions {
        flex-direction: column
    }

    .btn-filter-apply, .btn-filter-clear {
        width: 100%;
        justify-content: center
    }

    .footer-area {
        padding: 30px 0
    }

    .social-media {
        margin-bottom: 30px;
        justify-content: center
    }

    .about, .legal_membership {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.25rem;
        font-weight: 400
    }

    .logo div {
        width: 10px !important;
        height: 10px !important;
        margin-right: 6px !important
    }

    .header-container {
        height: 60px;
        justify-content: space-between;
        position: relative
    }

    .mobile-toggle {
        position: static
    }

    .mobile-header-icons {
        position: static;
        right: auto
    }

    .header-buttons .btn-outline,
    .header-buttons .btn-primary{
        width: 50%;
    }

    .header-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        padding: .75rem 1rem;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, .1);
        z-index: 99;
        display: flex;
        justify-content: space-around;
        gap: 1rem
    }

    .btn-outline, .btn-primary {

        text-align: center;
        padding: .75rem 0;
        border-radius: 10px;
        font-size: .875rem
    }

    body {
        padding-bottom: 70px
    }

    .hero {
        padding: 6rem 0 2.5rem;
        min-height: 280px
    }

    .hero-title {
        font-size: 1.5rem
    }

    .hero-subtitle {
        font-size: .875rem;
        margin-bottom: 1.25rem
    }

    .search-card {
        padding: 1.25rem;
        margin: 0 .75rem
    }

    .search-tab {
        padding: .625rem .5rem
    }

    .search-tab i {
        margin-right: 0;
        font-size: 1rem
    }

    .search-tab span {
        display: none
    }

    .popular-searches {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: .5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none
    }

    .popular-searches::-webkit-scrollbar {
        display: none
    }

    .popular-search-tag {
        flex: 0 0 auto
    }

    .stats {
        grid-template-columns:1fr 1fr;
        gap: 1rem
    }

    .stat-card {
        padding: 1rem
    }

    .section-title h2, .stat-number {
        font-size: 1.5rem
    }

    .stat-label {
        font-size: .75rem
    }

    .section-title p {
        font-size: .875rem
    }

    .location-selector {
        display: none
    }

    .housing-map {
        padding: 10px 8px
    }

    .map-title {
        font-size: 1.2rem
    }

    .city-item {
        min-width: 180px
    }

    .city-image {
        height: 90px
    }

    .city-info {
        padding: 10px
    }

    .view-btn {
        opacity: 1;
        transform: translateY(0);
        position: static;
        margin-top: 8px;
        width: 100%;
        font-size: .8rem;
        padding: 8px
    }

    .listing-types {
        flex-direction: column;
        gap: 4px
    }

    .cities-track {
        gap: 10px
    }

    .categories-section {
        display: none
    }

    .footer-accordion {
        display: block !important
    }

    .social-link {
        width: 35px;
        height: 35px
    }

    .mobile-footer-header {
        text-align: center !important
    }

    .line {
        border: 0 !important;
        padding: 0 !important
    }

    .legal_membership {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center
    }

    .autocomplete-item, .btn-advanced, .btn-search, .header-icon, .popular-search-tag, .search-tab {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .search-input {
        min-height: 44px
    }

    .search-input-wrapper {
        min-width: -webkit-fill-available
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center
    }
}

@media (max-width: 480px) {
    .city-item {
        min-width: 160px
    }

    .city-image {
        height: 80px
    }

    .city-info h3 {
        font-size: .9rem
    }

    .listing-count {
        font-size: .8rem
    }
}

@media (max-width: 360px) {
    .search-buttons {
        flex-direction: column
    }

    .btn-advanced, .btn-search {
        width: 100%
    }

    .stats {
        grid-template-columns:1fr
    }

    .city-item {
        min-width: 160px
    }

    .city-image {
        height: 80px
    }

    .city-info h3 {
        font-size: .9rem
    }

    .listing-count {
        font-size: .8rem
    }
}

@media (min-width: 768px) {
    #citiesNextBtn2, #citiesPrevBtn2, #listingsNextBtn2, #listingsPrevBtn2 {
        display: none !important
    }

    #citiesNextBtn1, #citiesPrevBtn1, #listingsNextBtn1, #listingsPrevBtn1 {
        display: flex !important
    }
}

@media (max-width: 767px) {
    #citiesNextBtn1, #citiesPrevBtn1, #listingsNextBtn1, #listingsPrevBtn1 {
        display: none !important
    }

    #citiesNextBtn2, #citiesPrevBtn2, #listingsNextBtn2, #listingsPrevBtn2 {
        display: flex !important
    }
}


.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    padding: 1rem 0
}

.logo {
    height: 30px
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: .5rem 1rem
}

.btn-primary {
    background-color: #11828d;
    border-color: #11828d
}

.form-control:focus {
    border: 1px #dee2e6 solid !important;
    outline: 0 !important;
    box-shadow: 0 0 5px 1px #4d808b !important
}

.footer-area {
    background-color: #f8f9fa;
    padding: 0 0 50px;
    font-family: "Poppins", sans-serif
}

.footer-area ul li a:hover {
    color: #333;
    text-decoration: underline !important
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: opacity .3s ease;
    border: 1px solid #ededed
}

.social-link:hover {
    opacity: .8
}

.social-link > img {
    width: 22px;
    height: 22px
}

.app-downloads {
    display: flex;
    gap: 10px;
    margin-top: 15px
}

.app-link img {
    height: auto;
    width: 20px
}

.qr-code {
    text-align: center
}

.qr-code img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px
}

.qr-code p {
    font-size: .9rem;
    color: #666;
    margin: 0
}

.list-unstyled {
    list-style: none;
    padding-left: 0
}

.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    flex-shrink: 0;
}

.logo img, .logo-navbar > img {
    max-height: 40px
}

.logo-navbar {
    margin: 5px 0
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    width: 700px
}

.nav-list a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s
}

.nav-list a:hover {
    color: #fe7743
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem
}

.join-btn, .join-btn:hover {
    background-color: #4d808b !important;
    border-color: #4d808b !important;
    padding: .5rem 1.5rem;
    color: #fff
}

.join-btn:hover {
    background-color: #000 !important;
    border-color: #fff !important
}

.mobile-menu-btn {
    display: block;
    background: 0 0;
    border: 0;
    padding: .5rem
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.mobile-nav-list li {
    margin-bottom: 1rem
}

.mobile-nav-list a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: .5rem 0
}

.auth-buttons > .btn:nth-child(1) {
    color: #000;
    text-decoration: none
}

.hepsi-emlak {
    width: 100px;
    height: auto;
    margin: 20px 0
}

.list {
    width: 100%;
    padding: 0;
    flex-wrap: wrap
}

.app-link, .list > li {
    display: flex;
    align-items: center
}

.list > li {
    list-style: none;
    width: 250px;
    height: 35px;
    gap: 20px
}

.app-link {
    width: 150px;
    height: 55px;
    border: 1px solid #dedede;
    border-radius: 10px;
    gap: 10px;
    padding: 10px;
    background-color: #fff
}

.app-link > a {
    width: 30px;
    height: 30px
}

.app-link > p {
    font-size: 15px;
    color: #000
}

.app-link-a:hover {
    transform: scale(1.05)
}

.color-white {
    color: #000;
    border: 1px solid #000;
    border-radius: 5px;
    text-decoration: none
}

.color-white:hover {
    color: #fff !important;
    background-color: #000;
    border: 1px solid #000 !important
}

.color-white:focus-visible {
    color: #000 !important;
    border: 1px solid #000 !important;
    border-radius: 5px;
    text-decoration: none
}

.disclaimer-text {
    color: #767676;
    font-size: small !important;
    font-weight: 400;
    line-height: 1.5
}

h3 {
    font-size: 20px
}

.navbar {
    box-shadow: none;
    border: 0
}

.navbar .container {
    align-items: center
}

.kaydol-icon > li > svg, .navbar .container, .navbar-collapse, .navbar-nav {
    display: flex;
    justify-content: center
}

.kaydol-icon > li > svg, .navbar-nav {
    align-items: center
}

.nav-link-2 {
    color: #0f0a39 !important;
    font-weight: 500;
    padding: 1rem 0 !important;
    transition: color .3s ease;
    width: 100%;
    height: 60px;
    text-align: center;
    font-size: 15px
}

.nav-link-2:hover {
    color: #4d808b !important
}

.mega-menu {
    width: 500px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    padding: 1.5rem !important;
    margin-top: 60px
}

.dropdown-header {
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    font-size: .8rem;
    padding: .5rem 0;
    margin-bottom: .5rem
}

.dropdown-item {
    color: #333;
    padding: .5rem 0;
    font-size: .95rem;
    transition: all .2s ease
}

.dropdown-item:hover {
    color: #fe7743;
    background-color: transparent;
    padding-left: .5rem
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn .3s ease
}

.nav-li {
    position: relative;
    width: 100%;
    max-width: 100px
}

.nav-item span {
    font-size: .75rem;
    text-align: start
}

.nav-item.active {
    color: #4d808b
}

.ball {
    bottom: 10px;
    right: 10px;
    border-radius: 10px
}

.ball-div {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center
}

.ball-div > div {
    display: none;
    width: 50px;
    height: 50px;
    background-color: #fe7743;
    padding: 12px
}

#kurumsal-form > input, #login-form > input, #sign-form > input {
    margin-bottom: 10px
}

#login-form, .kaydol-icon > li {
    display: flex;
    justify-content: space-between
}

#login-form {
    flex-direction: column
}

.form-control-1 {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.app-store {
    gap: 20px !important
}

.kaydol-modal {
    width: 800px;
    right: 25%
}

.back-img {
    background-position: center;
    background-image: url(assets/images/background.webp);
    width: 375px;
    height: 350px;
    right: 25px;
    border-radius: 10px
}

.kaydol-icon {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.kaydol-icon > li {
    width: 100%;
    height: 30px;
    align-items: center;
    gap: 10px
}

.kaydol-icon > li > svg {
    width: 25px !important;
    height: 25px !important;
    border-radius: 5px;
    align-items: start;
    padding: 5px
}

.kaydol-icon > li:nth-child(1) > svg {
    background-color: #52ca46
}

.kaydol-icon > li:nth-child(2) > svg {
    background-color: #f16666
}

.kaydol-icon > li:nth-child(3) > svg {
    background-color: #4994ca
}

.kaydol-icon > li:nth-child(4) > svg {
    background-color: #ffaa19
}

.kaydol-icon > p {
    width: 100%
}

.kaydol-icon > li > span {
    font-size: 10px;
    color: #fff
}

.modal-header {
    background-color: #fe7743;
    color: #fff
}

button.form-control, input[type=submit].form-control {
    background-color: #fe7743 !important;
    color: #fff !important
}

input[type=submit].form-control.dark {
    background-color: #f05012 !important;
    color: #fff !important
}

.dot-line {
    padding-top: 3px;
    padding-bottom: 3px;
    border-color: #606060;
    border-style: dashed
}

.light {
    font-weight: 400 !important;
    color: #000 !important
}

.back-img-col:nth-child(2) > div {
    width: 375px;
    height: 375px
}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    padding: .75rem 1.25rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #212327 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEECAIAAAAd4J55AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OUIyQzg0Q0RDQ0ExMTFFNjkyMDJGQkMzNjQ3OUEyMTQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OUIyQzg0Q0VDQ0ExMTFFNjkyMDJGQkMzNjQ3OUEyMTQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5QjJDODRDQkNDQTExMUU2OTIwMkZCQzM2NDc5QTIxNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5QjJDODRDQ0NDQTExMUU2OTIwMkZCQzM2NDc5QTIxNCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnMLhJsAAB3qSURBVHja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)
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 1000ms
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline
}

.line {
    border-top: 1px solid #c9c9c9;
    padding-top: 50px
}

@media (min-width: 1400px) {
    .mobile-menu-btn {
        display: none
    }
}

@media (max-width: 360px) {
    .nav-item span {
        font-size: .7rem
    }
}

@media (max-width: 576px) {
    .mobile-svg {
        width: 100% !important;
        flex-wrap: wrap !important;
        gap: 10px !important
    }

    .mobile-svg > div {
        width: 100% !important;
        justify-content: start !important
    }

    .passive-ad-information {
        gap: 10px;
        align-items: start
    }

    .passive-ad-information > div:nth-child(1) {
        flex-wrap: wrap !important
    }

    .favorite-ads {
        margin-left: 5px !important
    }

    .favorite-p, .favorite-p-2 {
        width: 310px !important
    }

    .tab-content {
        margin: 0 !important
    }

    .slider {
        width: 50px !important
    }

    .switch {
        width: 100px !important
    }

    .reverse-mobile {
        flex-direction: row-reverse !important
    }

    .mobile-footer-header {
        text-align: center !important
    }

    .line {
        border: 0 !important;
        padding: 0 !important
    }

    .auth-buttons {
        display: none !important
    }

    .legal_membership {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center
    }

    .header-content:nth-child(1) > div {
        width: 100%
    }

    .social-link {
        width: 35px;
        height: 35px
    }
}

@media (max-width: 768px) {
    .announcement_stages {
        flex-wrap: wrap !important
    }

    .footer-area {
        padding: 30px 0
    }

    .social-media {
        margin-bottom: 30px
    }

    .app-downloads, .social-media {
        justify-content: center
    }

    .about, .legal_membership {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center
    }

    .text-start {
        text-align: center !important
    }
}

@media (max-width: 992px) {
    .profile {
        display: none !important
    }

    .profile-mobile {
        display: flex;
        flex-direction: column !important;
        gap: 20px !important
    }

    .messages {
        height: calc(100vh - 138px) !important
    }

    .messages.right {
        height: calc(100vh - 88px) !important
    }

    .messages.left, .messages.right {
        border-radius: 4px !important;
        margin-left: 8px;
        margin-right: 8px
    }

    .messages.right {
        border: 1px solid #e5e5e5 !important
    }

    .message-container .tab-content, .user-div {
        height: calc(100vh - 95px) !important
    }

    .nav-item {
        position: relative
    }

    .ball {
        bottom: 15px !important;
        right: 10px
    }

    .footer-container {
        margin-bottom: 100px
    }

    .back-img-col {
        display: none !important
    }

    .kaydol-modal {
        width: 100% !important;
        right: 0 !important
    }

    .message-container {
        padding-left: 5px;
        padding-right: 3px;
        margin-top: -45px
    }

    .message-container .tab-content .row.messages {
        height: 100% !important
    }
}

@media (max-width: 1200px) {
    .user-no {
        display: none !important
    }

    .passive-ad-div, .passive-ad-img {
        width: 100% !important
    }

    .passive-ad {
        flex-wrap: wrap
    }

    .sub_ads {
        flex-wrap: wrap !important
    }
}

@media (max-width: 1400px) {
    .desktop-nav {
        display: none !important
    }

    .favortrite-create {
        max-width: 100% !important
    }

    .header {
        padding: .7rem
    }

    .ads-div {
        max-width: 100% !important
    }
}


.nav-tabs .nav-link {
    border: 0
}

.nav-tabs, .tab-pane {
    border: 0 !important
}

.tab-pane {
    padding: 0 5px
}

.nav-link {
    color: #000;
    overflow: hidden !important
}

.error {
    color: red;
    margin: 3px 0;
    font-size: 16px
}


.profile {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background-color: #fff;
    padding: 20px 20px 30px
}


.nav-item-profile {
    display: flex;
    width: 100%;
    align-items: center !important;
    flex-direction: row
}

.profile-hr {
    width: 100%;
    height: 2px;
    background-color: #e5e5e5;
    margin: 10px 0
}

.nav-link-profile > svg {
    height: 25px;
    width: 25px;
    margin-left: 15px;
}

.profile-foto {
    height: 70px;
    width: 70px
}

.profile-place > span {
    color: #434343;
    font-size: 16px;
    font-weight: 600;
    margin-left: 11px;
    letter-spacing: .2px
}

.profile-nav-tabs {
    flex-direction: column;
    display: flex;
    gap: 30px
}

.profile-nav-tabs > div > h3, .tab-pane h3 {
    font-weight: 400;
    color: #434343;
    font-size: 20px;
    margin: 10px 0 15px
}

.profile-details, .profile-input-div > div > button {
    border-radius: 4px;
    background-color: #fff;
    display: flex
}

.profile-details {
    width: 100%;
    padding-inline: 20px;
    padding-block: 20px 30px;
    border: 1px solid #ddd;
    gap: 30px
}

.profile-details, .profile-input-div {
    flex-direction: column
}

.profile-input-div > div > input {
    border-radius: 4px;
    background-color: #f5f5f5;
    padding: 12px 15px;
    font-size: 14px;
    color: #767676;
    flex: 1;
    height: 40px;
    max-width: 250px
}

.profile-input-div, .profile-input-div > div {
    display: flex;
    gap: 10px
}

.offer-notification > div > span, .profile-input-div > label {
    font-size: 14px;
    font-weight: 500;
    color: #434343
}

.profile-input-div > div > button {
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .05);
    border: 1px solid #e1e1e1;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding-inline: 11px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #8d8d8d;
    gap: 11px
}

.offer {
    font-size: 14px;
    letter-spacing: .3px;
    color: #767676
}

.offer > span {
    font-weight: bolder
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px
}

.switch input, .switch-small input {
    opacity: 0;
    width: 0;
    height: 0
}

.slider, .slider:before {
    position: absolute;
    transition: .4s
}

.slider {
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    border-radius: 25px
}

.slider:before {
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2.5px;
    background-color: #fff;
    border-radius: 50%
}

input:checked + .slider, input:checked + .slider-small {
    background-color: #4d808b
}

input:checked + .slider:before {
    transform: translateX(25px)
}

.offer-notification {
    display: flex;
    align-items: center;
    gap: 50px
}

.offer-notification > div {
    max-width: 330px
}

.offer-notification > div > p {
    font-size: 14px;
    color: #767676
}

.offer-notification > label {
    margin-top: 20px
}

.sub-ads-active > div, .sub_ads {
    display: flex;
    justify-content: space-between
}

.sub_ads {
    align-items: center;
    gap: 20px;
    margin-bottom: 40px
}

.sub-ads-active {
    border-radius: 4px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
    border: 1px solid #e1e1e1;
    background-color: #fff;
    width: 100%
}

.sub-ads-active > div {
    flex-direction: column;
    height: 110px;
    padding: 10px
}

.ads-title {
    color: #434343;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px
}

.ads-text {
    color: #767676;
    font-size: 14px;
    font-weight: 400
}

.ads-text-span, .announcement_stages_p > span {
    font-weight: 700
}

.number_ball {
    width: 33px;
    height: 33px;
    padding: 7px;
    border: 2px solid #e1e1e1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}

.give_ad > a, .number_ball > p {
    font-weight: 700;
    font-size: 16px
}

.number_ball > p {
    color: #e1211b;
    text-align: center;
    transform: translateY(-1px);
    height: 23px
}

.ad_title, .h1-title {
    color: #434343;
    font-size: 20px
}

.ad_title {
    margin: 0 0 15px
}

.h1-title {
    font-weight: 700;
    padding: 20px
}

.ad_steps {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    margin-bottom: 7rem;
}

.about-ad {
    display: flex;
    flex-direction: column;
    padding: 0 20px 20px
}

.give_ad {
    width: 160px;
    height: 40px;
    border-radius: 4px;
    background-color: #e1251b;
    transition: opacity .25s linear;
    text-align: center;
    border: 0
}

.give_ad > a {
    line-height: 17px;
    color: #fff
}

.announcement_stages {
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

.announcement_stages_div {
    width: 100%;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
    border: 1px solid #e1e1e1;
    background-color: #fff
}

.announcement_stages_span {
    color: #434343;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px
}

.announcement_stages_p {
    color: #767676;
    font-size: 14px;
    font-weight: 400
}

.active_postings {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 180px;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #fff
}

.active_postings > svg {
    width: 62px;
    height: 62px
}

.active_postings > span {
    margin-top: 15px;
    font-size: 15px;
    color: #767676
}

.active-h3 {
    margin-bottom: 10px;
    color: #434343;
    font-size: 20px
}

.active-span {
    margin-bottom: 20px;
    color: #9f9f9f;
    font-size: 14px;
    font-weight: 700
}

.active-div {
    margin-bottom: 30px
}

.pasive-p {
    margin-bottom: 20px;
    color: #9f9f9f;
    font-size: 14px;
    font-weight: 700
}

.pasive-h3 {
    margin-bottom: 10px;
    color: #434343;
    font-size: 20px
}

.passive-ad {
    height: auto;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #fff;
    display: flex;
    gap: 20px
}

.passive-ad-img {
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 110px;
    width: 200px
}

.passive-ad-img > div {
    height: 38px;
    width: 32px
}

.ad-p {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    width: 100%
}

.ad-p-div {
    height: 24px;
    width: 100% !important;
    background: rgba(0, 0, 0, .53);
    display: flex;
    align-items: center;
    justify-content: center
}

.passive-ad-div {
    height: 85%;
    width: 200px
}

.ad-money {
    margin-right: 12px;
    font-size: 14px;
    color: #797979;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: flex;
    align-items: center
}

.ad-money > span {
    width: 1px !important;
    height: 16px !important;
    background-color: #cbcbcb;
    margin: 0 10px
}

#publish-the-ad, .ad-money-title {
    white-space: nowrap;
    font-weight: 700
}

.ad-money-title {
    font-size: 16px;
    color: #434343;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin: 0
}

.ad-div > p, .ad-lifting, .ad-publishing {
    font-size: 14px;
    color: #767676
}

.passive-ad-information {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.ad-div {
    margin-left: auto;
    height: 40px;
    padding: 12px;
    border-radius: 4px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    width: auto;
    gap: 10px
}

.ad-div-svg {
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
    display: block
}

.ad-div > p {
    font-weight: 700;
    color: #434343
}

.litle-svg > svg {
    width: 15px;
    height: 15px
}

.litle-svg {
    height: 28px;
    padding: 7px 9px;
    border-radius: 4px;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px
}

.litle-svg > p {
    font-size: 12px;
    color: #797979;
    line-height: normal
}

#publish-the-ad {
    position: relative;
    padding: 11px 13px;
    color: #fff;
    background-color: #4d808b;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: .3px;
    text-align: center;
    border: 0
}

.ad-dropdown {
    height: 40px
}

.ad-dropdown::after, .ad-money > span {
    display: block !important
}


#publish-the-ad, .ad-process {
    font-size: 14px;
    height: 40px;
    border-radius: 4px
}

.ad-process {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    align-items: center;
    color: #434343 !important;
    background: #fff !important;
    border: 1px solid #cbcbcb;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    transition: all .12s linear
}

.ad-process:hover {
    background-color: #fff !important;
    color: #434343;
    border: 1px solid #cbcbcb
}

.ad-item {
    display: flex;
    gap: 5px;
    justify-content: start;
    padding: 10px
}

.ad-item > span {
    display: block
}

.ad-item > span, .ad-item > span > svg {
    width: 16px;
    height: 16px
}

.ad-item:hover {
    color: #4d808b !important
}

.profile-img, .profile-img > svg {
    width: 75px;
    height: 75px
}

.profile-span {
    font-size: 16px;
    color: #434343;
    font-weight: 700
}

.profile-modal-form {
    gap: 10px !important;
    display: flex !important;
    flex-direction: column !important
}

.profile-modal {
    background-color: #4d808b !important
}

.profile-litle {
    font-size: 14px;
    color: #767676
}

.e-mail-form-span {
    color: #434343;
    font-size: 14px;
    font-weight: 500;
    text-align: center
}

.favorite-h4 {
    font-size: 20px;
    line-height: 22px;
    color: #434343;
    font-weight: 400
}

.favorite-p {
    font-size: 15px;
    color: #838383
}

.favorite-p-2 {
    font-size: 14px;
    color: #434343
}


.fovori-svg, .fovori-svg > svg {
    width: 60px;
    height: 60px
}

.favortrite-create > p, .show-ads {
    letter-spacing: .3px;
    text-align: center
}

.favortrite-create > p {
    font-size: 13px;
    color: #767676;
    margin-top: 14px
}

.fovori-svg > button {
    width: 100%;
    height: 100%;
    border: 0 !important
}

.show-ads {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    border-radius: 4px;
    background-color: #e1251b;
    padding-inline: 14px;
    width: 200px;
    border: 0
}

.ads-div, .favorite-div {
    display: flex;
    justify-content: space-between
}

.ads-div {
    flex-direction: column;
    border-radius: 6px;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 20px;
    position: relative;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .05);
    gap: 21px;
    width: 100%;
    height: 180px
}

.favorite-div {
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.ads-div-span {
    font-size: 18px;
    font-weight: 700;
    color: #434343;
    margin-bottom: 10px
}

.user-tabs {
    display: flex;
    flex-direction: column;
    justify-content: start
}

.user-tabs > .nav-item {
    align-items: start;
    padding-bottom: 3px;
    display: flex
}

.messages {
    padding: 0;
    height: 660px
}

.messages.left, .messages.right {
    border: 1px solid #e5e5e5;
    border-radius: 4px 0 0 4px
}

.messages.right {
    border-left: none;
    border-radius: 0 4px 4px 0
}

.user-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 75px;
    height: 56px;
    background-color: #e2e3e8;
    border-radius: 4px;
    margin-right: 9px
}

.user-img > svg {
    width: 45px;
    height: 30px
}

.user-name {
    overflow: hidden;
    width: 75px
}

.user-p {
    width: 160px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.user-name {
    font-size: 14px !important;
    color: #434343
}

.user-name-span, .user-text {
    font-size: 12px;
    color: #434343
}

.user-text {
    height: 20px;
    font-size: 14px !important;
    overflow: hidden;
    padding: 0;
    text-align: start
}

.border-message {
    border-right: 1px solid #e5e5e5 !important
}

.messsage-top {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    background-color: #fff;
    border-bottom: 1px solid #e4e4e4;
    font-size: 14px;
    line-height: 1;
    height: 40px
}

.switch-small {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 16px
}

.slider-small {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    transition: .4s;
    border-radius: 25px
}

.slider-small:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    left: 2px;
    bottom: 2.5px;
    background-color: #fff;
    transition: .4s;
    border-radius: 50%
}

input:checked + .slider-small:before {
    transform: translateX(14px)
}

.all-span {
    font-size: 12px;
    font-weight: 500;
    color: #434343
}

.border-left-wall, .border-right {
    height: 100%;
    display: flex;
    align-items: center;
    width: 120px
}

.border-left-wall {
    border-left: 1px solid #e9e9e9;
    padding-left: 10px;
    justify-content: space-between
}

.border-right {
    gap: 10px
}

.border-right > span {
    color: #747474
}

#user_1, .user-div, .user-name-div {
    display: flex;
    justify-content: space-between
}

#user_1, .user-div {
    flex-direction: column;
    height: 100%
}

.user-name-div {
    border-bottom: 1px solid #e4e4e4;
    height: 40px;
    padding: 0 10px;
    align-items: center
}

.user-name-div > span {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: normal;
    color: #434343
}

.user-svg {
    padding: 5px 9px;
    height: 18px;
    color: #767676;
    cursor: pointer
}

.user-svg > svg {
    height: 15px;
    width: 15px;
    color: #767676
}

.user-messages-info {
    height: 90px;
    border-bottom: 1px solid #e4e4e4;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    padding: 0 20px;
    cursor: pointer;
    justify-content: space-between
}

.user-messages-info-span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #e2e3e8;
    flex-shrink: 0;
    width: 90px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px
}

.user-messages-info-span > svg {
    width: 45px;
    height: 30px
}

.user-money, .user-money-icon > span {
    color: #767676;
    font-size: 14px
}

.user-money-icon {
    display: flex;
    align-items: center;
    gap: 2px
}

.user-money-icon > svg {
    width: 13px;
    height: 13px
}

.user-m2, .user-money-icon > svg, .user-no > span {
    color: #767676;
    font-size: 14px
}

.user-no {
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 100%;
    padding-top: 10px
}

.submit-form {
    display: flex;
    padding: 20px;
    gap: 10px
}

.submit-form > input:nth-child(1) {
    width: 75%
}

.submit-form > input:nth-child(2) {
    width: 25%;
    background-color: #4d808b !important
}

.text-place {
    height: 90%;
    overflow: hidden;
    padding: 20px;
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.text-place-div {
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    width: 400px;
    max-width: 100%;
    padding: 10px
}

.text-place-div > p {
    font-size: 14px;
    color: #434343
}

.text-place-div-2 {
    margin-left: auto !important;
}


.margin-top-mobile {
    margin-top: 55px
}

.profile-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px
}

.profile-item {
    justify-content: space-between;
    width: 90%;
    height: 50px;
    padding: 15px 16px 16px 21px;
    border-radius: 10px;
    box-shadow: 0 6px 8px 0 rgba(0, 0, 0, .05);
    border: 1px solid #dfdfdf;
    background-color: #fff;
    margin: auto
}

.profile-link, .profile-text {
    display: flex;
    align-items: center
}

.profile-link {
    height: 100%;
    justify-content: space-between
}

.profile-text {
    gap: 5px;
    color: #000
}

.litte-svg {
    height: 18px
}

.arrow-svg {
    width: 14px;
    height: 14px;
    transform: rotate(180deg);
    color: #bababa
}

.big-svg {
    width: 20px;
    height: 20px;
    margin-right: 10px
}

.home {
    display: flex;
    justify-content: start;
    height: 60px
}

.home > p {
    color: #f11009;
    font-weight: 500
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    padding: 0 !important;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}


.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.form-control:focus {
    border: 1px #dee2e6 solid !important;
    outline: none !important;
    box-shadow: 0 0 5px 1px #4d808b !important;
}

.footer-area {
    background-color: #f8f9fa;
    padding: 0 0 50px 0;
    font-family: "Poppins", sans-serif;
}

.footer-area ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-area ul li a:hover {
    color: #333;
    text-decoration: underline !important;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}


.social-link:hover {
    opacity: 0.8;
}

.social-link > i > img {
    width: 22px;
    height: 22px;
}

.app-downloads {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.app-link img {
    height: auto;
    width: 20px;
}

.qr-code {
    text-align: center;
}

.qr-code img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.qr-code p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.list-unstyled {
    list-style: none;
    padding-left: 0;
}

.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo img {
    max-height: 40px;
}

.logo-navbar {
    margin: 5px 0;
}

.logo-navbar > img {
    max-height: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    width: 700px;
}

.nav-list a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #fe7743;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.join-btn {
    background-color: #4d808b !important;
    border-color: #4d808b !important;
    padding: 0.5rem 1.5rem;
    color: #fff;
}

.join-btn:hover {
    background-color: #000000 !important;
    border-color: #fff !important;
    padding: 0.5rem 1.5rem;
    color: #fff;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 1rem;
}

.mobile-nav-list a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
}

.auth-buttons > .btn:nth-child(1) {
    color: #000000;
    text-decoration: none;
}

.hepsi-emlak {
    width: 100px;
    height: auto;
    margin: 20px 0;
}

.list > li:hover > a > p {
    color: #fe7743;
    transform: scale(1.1);
    -webkit-text-decoration: underline 1px #fe7743;
    text-decoration: underline 1px #fe7743;
}

.list {
    width: 100%;
    padding: 0;
    flex-wrap: wrap;
}

.list > li {
    list-style: none;
    width: 250px;
    height: 35px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.list > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 35px;
    gap: 20px;
}

.list > li > a > p {
    font-size: 16px;
    color: #000000;
}

.app-link {
    display: flex;
    align-items: center;
    width: 150px;
    height: 55px;
    border: 1px solid #dedede;
    border-radius: 10px;
    gap: 10px;
    padding: 10px;
    background-color: #ffffff;
}

.app-link > a {
    width: 30px;
    height: 30px;
}

.app-link > p {
    font-size: 15px;
    color: #000000;
}

.app-link-a:hover {
    transform: scale(1.05);
}

.color-white {
    color: #000000;
    border: 1px solid #000000;
    border-radius: 5px;
    text-decoration: none;
}

.color-white:hover {
    color: #ffffff !important;
    background-color: #000000;
    border: 1px solid #000000 !important;
}

.color-white:focus-visible {
    color: #000000 !important;
    border: 1px solid #000000 !important;
    border-radius: 5px;
    text-decoration: none;
}

.disclaimer-text {
    color: #767676;
    font-size: small !important;
    line-height: 1;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
}

h3 {
    font-size: 20px;
}

a {
    text-decoration: none !important;
}

.navbar {
    box-shadow: none;
    border: none;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-collapse {
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link-2 {
    color: #0f0a39 !important;
    font-weight: 500;
    padding: 1rem 0 !important;
    transition: color 0.3s ease;
    width: 100%;
    height: 60px;
    text-align: center;
    font-size: 15px;
}

.nav-link-2:hover {
    color: #4d808b !important;
}

.mega-menu {
    width: 500px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem !important;
    margin-top: 60px;
}

.dropdown-header {
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
}

.dropdown-item {
    color: #333;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    color: #fe7743;
    background-color: transparent;
    padding-left: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

.nav-li {
    position: relative;
    width: 100%;
    max-width: 100px;
}

p {
    margin: 0;
}


.nav-item:hover {
    color: #333;
}

.nav-item i {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.nav-item span {
    font-size: 0.75rem;
    text-align: start;
}

.nav-item.active {
    color: #4d808b;
}

.footer-area ul {
    margin-bottom: 20px;
    height: auto;
}

.ball {
    bottom: 10px;
    right: 10px;
    border-radius: 10px;
}

.ball-div {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.ball-div > div {
    display: none;
    width: 50px;
    height: 50px;
    background-color: #fe7743;
    padding: 12px;
}

#login-form > input {
    margin-bottom: 10px;
}

#login-form {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

#sign-form > input {
    margin-bottom: 10px;
}

.form-control-1 {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.app-store {
    gap: 20px !important;
}

.kaydol-modal {
    width: 800px;
    right: 25%;
}

.back-img {
    background-position: center;
    background-image: url(assets/images/background.webp);
    width: 375px;
    height: 350px;
    right: 25px;
    border-radius: 10px;
}

#kurumsal-form > input {
    margin-bottom: 10px;
}

.kaydol-icon {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kaydol-icon > li {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.kaydol-icon > li > svg {
    width: 25px !important;
    height: 25px !important;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 5px;
}

.kaydol-icon > li:nth-child(1) > svg {
    background-color: #52ca46;
}

.kaydol-icon > li:nth-child(2) > svg {
    background-color: #f16666;
}

.kaydol-icon > li:nth-child(3) > svg {
    background-color: #4994ca;
}

.kaydol-icon > li:nth-child(4) > svg {
    background-color: #ffaa19;
}

.kaydol-icon > p {
    width: 100%;
}

.kaydol-icon > li > span {
    font-size: 10px;
    color: #ffffff;
}

.modal-header {
    background-color: #fe7743;
    color: #fff;
}

input[type=submit].form-control {
    background-color: #fe7743 !important;
    color: #fff !important;
}

input[type=submit].form-control.dark {
    background-color: #f05012 !important;
    color: #fff !important;
}

button.form-control {
    background-color: #fe7743 !important;
    color: #fff !important;
}

.dot-line {
    padding-top: 3px;
    padding-bottom: 3px;
    border-color: #606060;
    border-style: dashed;
}

.light {
    font-weight: 400 !important;
    color: #000000 !important;
}

.back-img-col:nth-child(2) > div {
    width: 375px;
    height: 375px;
}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    padding: 0.75rem 1.25rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #212327 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEECAIAAAAd4J55AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OUIyQzg0Q0RDQ0ExMTFFNjkyMDJGQkMzNjQ3OUEyMTQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OUIyQzg0Q0VDQ0ExMTFFNjkyMDJGQkMzNjQ3OUEyMTQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5QjJDODRDQkNDQTExMUU2OTIwMkZCQzM2NDc5QTIxNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5QjJDODRDQ0NDQTExMUU2OTIwMkZCQzM2NDc5QTIxNCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnMLhJsAAB3qSURBVHja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");
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline;
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}

.line {
    border-top: 1px solid #c9c9c9;
    padding-top: 50px;
}

@media (min-width: 1400px) {
    .mobile-menu-btn {
        display: none;
    }
}

@media (max-width: 360px) {
    .nav-item span {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .mobile-svg {
        width: 100% !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    .mobile-svg > div {
        width: 100% !important;
        justify-content: start !important;
    }

    .passive-ad-information {
        gap: 10px;
        align-items: start;
    }

    .passive-ad-information > div:nth-child(1) {
        flex-wrap: wrap !important;
    }

    .favorite-ads {
        margin-left: 5px !important;
    }

    .favorite-p-2, .favorite-p {
        width: 310px !important;
    }

    .tab-content {
        margin: 0 !important;
    }

    .slider {
        width: 50px !important;
    }

    .switch {
        width: 100px !important;
    }

    .reverse-mobile {
        flex-direction: row-reverse !important;
    }

    .mobile-footer-header {
        text-align: center !important;
    }

    .line {
        border: none !important;
        padding: 0 !important;
    }

    .auth-buttons {
        display: none !important;
    }

    .legal_membership {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .header-content:nth-child(1) > div {
        width: 100%;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .announcement_stages {
        flex-wrap: wrap !important;
    }

    .footer-area {
        padding: 30px 0;
    }

    .social-media {
        justify-content: center;
        margin-bottom: 30px;
    }

    .app-downloads {
        justify-content: center;
    }

    .about {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .legal_membership {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .text-start {
        text-align: center !important;
    }
}

@media (max-width: 992px) {
    .profile {
        display: none !important;
    }

    .profile-mobile {
        display: flex;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .messages {
        height: calc(100vh - 138px) !important;
    }

    .messages.right {
        height: calc(100vh - 88px) !important;
    }

    .messages.left {
        border-radius: 4px !important;
        margin-left: 8px;
        margin-right: 8px;
    }

    .messages.right {
        border-radius: 4px !important;
        margin-left: 8px;
        margin-right: 8px;
        border: 1px solid #e5e5e5 !important;
    }

    .user-div {
        height: calc(100vh - 95px) !important;
    }

    .nav-item {
        position: relative;
    }

    .ball {
        bottom: 15px !important;
        right: 10px;
    }

    .footer-container {
        margin-bottom: 100px;
    }

    .back-img-col {
        display: none !important;
    }

    .kaydol-modal {
        width: 100% !important;
        right: 0 !important;
    }

    .message-container {
        padding-left: 5px;
        padding-right: 3px;
        margin-top: -45px;
    }

    .message-container .tab-content {
        height: calc(100vh - 95px) !important;
    }

    .message-container .tab-content .row.messages {
        height: 100% !important;
    }
}

@media (max-width: 1200px) {
    .user-no {
        display: none !important;
    }

    .passive-ad-div {
        width: 100% !important;
    }

    .passive-ad-img {
        width: 100% !important;
    }

    .passive-ad {
        flex-wrap: wrap;
    }

    .sub_ads {
        flex-wrap: wrap !important;
    }
}

@media (max-width: 1400px) {
    .desktop-nav {
        display: none !important;
    }

    .favortrite-create {
        max-width: 100% !important;
    }

    .header {
        padding: 0.7rem;
    }

    .ads-div {
        max-width: 100% !important;
    }
}

.nav-tabs .nav-link .active {
    border-bottom: 1px solid #4d808b !important;
    color: #4d808b !important;
    border-left: 1px solid #4d808b !important;
}

.nav-tabs .nav-link {
    border: none;
}

.nav-tabs {
    border: none !important;
}

.tab-pane {
    border: none !important;
    padding: 0 5px;
}


.nav-link:hover {
    color: #4d808b !important;
}

.error {
    color: red;
    margin: 3px 0;
    font-size: 16px;
}

.margin-top {
    margin-top: 125px;
}

.profile {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background-color: #fff;
    padding: 20px 20px 30px;
}

.nav-link-profile {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.nav-item-profile {
    display: flex;
    width: 100%;
    align-items: center !important;
    flex-direction: row;
}

.profile-hr {
    width: 100%;
    height: 2px;
    background-color: #e5e5e5;
    margin: 10px 0;
}


.profile-foto {
    height: 70px;
    width: 70px;
}

.profile-place > span {
    color: #434343;
    font-size: 16px;
    font-weight: 600;
    margin-left: 11px;
    letter-spacing: 0.2px;
}

.profile-nav-tabs {
    flex-direction: column;
    display: flex;
    gap: 30px;
}

.profile-nav-tabs > div > h3, .tab-pane h3 {
    font-weight: 400;
    color: #434343;
    font-size: 20px;
    margin: 10px 0 15px 0;
}

.profile-details {
    width: 100%;
    padding-inline: 20px;
    padding-block: 20px 30px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-input-div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-input-div > div > input {
    border-radius: 4px;
    background-color: #f5f5f5;
    padding: 12px 15px;
    font-size: 14px;
    color: #767676;
    flex: 1;
    height: 40px;
    max-width: 250px;
}

.profile-input-div > div {
    display: flex;
    gap: 10px;
}

.profile-input-div > label {
    font-size: 14px;
    font-weight: 500;
    color: #434343;
}

.profile-input-div > div > button {
    border-radius: 4px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e1e1;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding-inline: 11px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #8d8d8d;
    gap: 11px;
}

.offer {
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #767676;
}

.offer > span {
    font-weight: bolder;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    transition: 0.4s;
    border-radius: 25px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2.5px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #4d808b;
}

input:checked + .slider:before {
    transform: translateX(25px);
}

.offer-notification {
    display: flex;
    align-items: center;
    gap: 50px;
}

.offer-notification > div {
    max-width: 330px;
}

.offer-notification > div > span {
    font-size: 14px;
    font-weight: 500;
    color: #434343;
}

.offer-notification > div > p {
    font-size: 14px;
    color: #767676;
}

.offer-notification > label {
    margin-top: 20px;
}

.sub_ads {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.sub-ads-active {
    border-radius: 4px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e1e1;
    background-color: #fff;
    width: 100%;
}

.sub-ads-active > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 110px;
    padding: 10px;
}

.ads-title {
    color: #434343;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ads-text {
    color: #767676;
    font-size: 14px;
    font-weight: 400;
}

.ads-text-span {
    font-weight: 700;
}

.number_ball {
    width: 33px;
    height: 33px;
    padding: 7px;
    border: 2px solid #e1e1e1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.number_ball > p {
    color: #e1211b;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    transform: translateY(-1px);
    height: 23px;
}

.ad_title {
    margin: 0 0 15px;
    font-size: 20px;
    color: #434343;
}

.h1-title {
    color: #434343;
    font-size: 20px;
    font-weight: 700;
    padding: 20px;
}

.about-ad {
    display: flex;
    flex-direction: column;
    padding: 0 20px 20px;
}

.give_ad {
    width: 160px;
    height: 40px;
    border-radius: 4px;
    background-color: #e1251b;
    transition: opacity 0.25s linear;
    text-align: center;
    border: none;
}

.give_ad > a {
    font-weight: 700;
    line-height: 17px;
    font-size: 16px;
    color: #fff;
}

.announcement_stages {
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.announcement_stages_div {
    width: 100%;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e1e1;
    background-color: #fff;
}

.announcement_stages_span {
    color: #434343;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.announcement_stages_p {
    color: #767676;
    font-size: 14px;
    font-weight: 400;
}

.announcement_stages_p > span {
    font-weight: 700;
}

.active_postings {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 180px;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #fff;
}

.active_postings > svg {
    width: 62px;
    height: 62px;
}

.active_postings > span {
    margin-top: 15px;
    font-size: 15px;
    color: #767676;
}

.active-h3 {
    margin-bottom: 10px;
    color: #434343;
    font-size: 20px;
}

.active-span {
    margin-bottom: 20px;
    color: #9f9f9f;
    font-size: 14px;
    font-weight: 700;
}

.active-div {
    margin-bottom: 30px;
}

.pasive-p {
    margin-bottom: 20px;
    color: #9f9f9f;
    font-size: 14px;
    font-weight: 700;
}

.pasive-h3 {
    margin-bottom: 10px;
    color: #434343;
    font-size: 20px;
}

.passive-ad {
    height: auto;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #fff;
    display: flex;
    gap: 20px;
}

.passive-ad-img {
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 110px;
    width: 200px;
}

.passive-ad-img > div {
    height: 38px;
    width: 32px;
}

.ad-p {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    width: 100%;
}

.ad-p-div {
    height: 24px;
    width: 100% !important;
    background: rgba(0, 0, 0, 0.53);
    display: flex;
    align-items: center;
    justify-content: center;
}

.passive-ad-div {
    height: 85%;
    width: 200px;
}

.ad-money {
    margin-right: 12px;
    font-size: 14px;
    color: #797979;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: flex;
    align-items: center;
}

.ad-money > span {
    width: 1px !important;
    height: 16px !important;
    background-color: #cbcbcb;
    margin: 0 10px;
    display: block !important;
}

.ad-money-title {
    font-size: 16px;
    font-weight: 700;
    color: #434343;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin: 0;
}

.ad-publishing {
    font-size: 14px;
    color: #767676;
}

.ad-lifting {
    font-size: 14px;
    color: #767676;
}

.passive-ad-information {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ad-div {
    margin-left: auto;
    height: 40px;
    padding: 12px;
    border-radius: 4px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    width: auto;
    gap: 10px;
}

.ad-div-svg {
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
    display: block;
}

.ad-div > p {
    font-size: 14px;
    font-weight: 700;
    color: #434343;
}

.litle-svg > svg {
    width: 15px;
    height: 15px;
}

.litle-svg {
    height: 28px;
    padding: 7px 9px;
    border-radius: 4px;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
}

.litle-svg > p {
    font-size: 12px;
    color: #797979;
    line-height: normal;
}

#publish-the-ad {
    position: relative;
    white-space: nowrap;
    height: 40px;
    padding: 11px 13px;
    border-radius: 4px;
    color: #fff;
    background-color: #4d808b;
    font-size: 14px;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.3px;
    text-align: center;
    border: none;
}

.ad-dropdown {
    height: 40px;
}


.nav-link-2::after {
    display: none !important;
}

.ad-process {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    align-items: center;
    color: #434343 !important;
    font-size: 14px;
    background: #fff !important;
    height: 40px;
    border: 1px solid #cbcbcb;
    border-radius: 4px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    transition: all 0.12s linear;
}

.ad-process:hover {
    background-color: #fff !important;
    color: #434343;
    border: 1px solid #cbcbcb;
}

.ad-item {
    display: flex;
    gap: 5px;
    justify-content: start;
    padding: 10px;
}

.ad-item > span {
    width: 16px;
    height: 16px;
    display: block;
}

.ad-item > span > svg {
    width: 16px;
    height: 16px;
}

.ad-item:hover {
    color: #4d808b !important;
}

.profile-img {
    width: 75px;
    height: 75px;
}

.profile-img > svg {
    width: 75px;
    height: 75px;
}

.profile-span {
    font-size: 16px;
    color: #434343;
    font-weight: 700;
}

.profile-modal-form {
    gap: 10px !important;
    display: flex !important;
    flex-direction: column !important;
}

.profile-modal {
    background-color: #4d808b !important;
}

.profile-litle {
    font-size: 14px;
    color: #767676;
}

.e-mail-form-span {
    color: #434343;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.favorite-h4 {
    font-size: 20px;
    line-height: 22px;
    color: #434343;
    font-weight: 400;
}

.favorite-p {
    font-size: 15px;
    color: #838383;
}

.favorite-p-2 {
    font-size: 14px;
    color: #434343;
}

.favortrite-create {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #e1e1e1;
    background-color: #fbfbfb;
    border-radius: 6px;
    padding: 44px 15px;
    box-shadow: none;
    display: flex;
    width: 100%;
    height: 180px;
}

.fovori-svg {
    width: 60px;
    height: 60px;
}

.fovori-svg > svg {
    width: 60px;
    height: 60px;
}

.favortrite-create > p {
    font-size: 13px;
    text-align: center;
    color: #767676;
    letter-spacing: 0.3px;
    margin-top: 14px;
}

.fovori-svg > button {
    width: 100%;
    height: 100%;
    border: none !important;
}

.show-ads {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    background-color: #e1251b;
    padding-inline: 14px;
    width: 200px;
    border: none;
}


.favorite-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ads-div-span {
    font-size: 18px;
    font-weight: 700;
    color: #434343;
    margin-bottom: 10px;
}

.user-tabs {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.user-tabs > .nav-item {
    align-items: start;
    padding-bottom: 3px;
    display: flex;
}

.messages {
    padding: 0;
    height: 660px;
}

.messages.left {
    border: 1px solid #e5e5e5;
    border-radius: 4px 0 0 4px;
}

.messages.right {
    border: 1px solid #e5e5e5;
    border-left: none;
    border-radius: 0 4px 4px 0;
}

.user-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 75px;
    height: 56px;
    background-color: #e2e3e8;
    border-radius: 4px;
    margin-right: 9px;
}

.user-img > svg {
    width: 45px;
    height: 30px;
}

.user-name {
    overflow: hidden;
    width: 75px;
}

.user-p {
    width: 160px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-name {
    font-size: 14px !important;
    color: #434343;
}

.user-name-span {
    font-size: 12px;
    color: #434343;
}

.user-text {
    height: 20px;
    font-size: 14px !important;
    overflow: hidden;
    padding: 0;
    text-align: start;
    color: #434343;
}

.border-message {
    border-right: 1px solid #e5e5e5 !important;
}

.messsage-top {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 10px;
    padding: 0px 16px;
    background-color: #fff;
    border-bottom: 1px solid #e4e4e4;
    font-size: 14px;
    line-height: 1;
    height: 40px;
}

.switch-small {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 16px;
}

.switch-small input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-small {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    transition: 0.4s;
    border-radius: 25px;
}

.slider-small:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    left: 2px;
    bottom: 2.5px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider-small {
    background-color: #4d808b;
}

input:checked + .slider-small:before {
    transform: translateX(14px);
}

.all-span {
    font-size: 12px;
    font-weight: 500;
    color: #434343;
}

.border-left-wall {
    border-left: 1px solid #e9e9e9;
    padding-left: 10px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 120px;
}

.border-right {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 120px;
}

.border-right > span {
    color: #747474;
}

.user-div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.user-name-div {
    border-bottom: 1px solid #e4e4e4;
    height: 40px;
    padding: 0px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-name-div > span {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: normal;
    color: #434343;
}

.user-svg {
    padding: 5px 9px;
    height: 18px;
    color: #767676;
    cursor: pointer;
}

.user-svg > svg {
    height: 15px;
    width: 15px;
    color: #767676;
}

.user-messages-info {
    height: 90px;
    border-bottom: 1px solid #e4e4e4;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    cursor: pointer;
    justify-content: space-between;
}

.user-messages-info-span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #e2e3e8;
    flex-shrink: 0;
    width: 90px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
}

.user-messages-info-span > svg {
    width: 45px;
    height: 30px;
}

.user-money {
    color: #767676;
    font-size: 14px;
}

.user-money-icon {
    display: flex;
    align-items: center;
    gap: 2px;
}

.user-money-icon > svg {
    width: 13px;
    height: 13px;
    color: #767676;
    font-size: 14px;
}

.user-money-icon > span {
    color: #767676;
    font-size: 14px;
}

.user-m2 {
    color: #767676;
    font-size: 14px;
}

.user-no {
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 100%;
    padding-top: 10px;
}

.user-no > span {
    color: #767676;
    font-size: 14px;
}

#user_1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.submit-form {
    display: flex;
    padding: 20px;
    gap: 10px;
}

.submit-form > input:nth-child(1) {
    width: 75%;
}

.submit-form > input:nth-child(2) {
    width: 25%;
    background-color: #4d808b !important;
}


.margin-top-mobile {
    margin-top: 55px;
}

.profile-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.profile-item {
    justify-content: space-between;
    width: 90%;
    height: 50px;
    padding: 15px 16px 16px 21px;
    border-radius: 10px;
    box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #dfdfdf;
    background-color: #fff;
    margin: auto;
}

.profile-link {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-text {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000;
}

.litte-svg {
    height: 18px;
}

.arrow-svg {
    width: 14px;
    height: 14px;
    transform: rotate(180deg);
    color: #bababa;
}

.big-svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.home {
    display: flex;
    justify-content: start;
    height: 60px;
}

.home > p {
    color: #f11009;
    font-weight: 500;
}

.btn-bg-green {

    background: #11828d;
    color: #fff;

}


.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    padding: 1rem 0
}

.logo {
    height: 30px
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: .5rem 1rem
}

.section-margin{
    margin-top: 6rem;
}

.form-control:focus {
    border: 1px #dee2e6 solid !important;
    outline: none !important;
    box-shadow: 0px 0px 5px 3px #11828d !important
}

.navbar-buttons {
    display: none;
    text-decoration: none
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .8);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer
}

.footer-area {
    background-color: #f8f9fa;
    padding: 0px 0px 50px 0px;
    font-family: "Roboto", serif
}

.footer-area ul li a {
    color: #666;
    text-decoration: none;
    font-size: .9rem;
    transition: color .3s ease
}

.footer-area ul li a:hover {
    color: #000433;
    text-decoration: underline !important
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: opacity .3s ease;
    border: 1px solid #ededed
}

.social-link:hover {
    opacity: .8
}

.social-link > i > img {
    width: 22px;
    height: 22px
}

.app-downloads {
    display: flex;
    gap: 10px;
    margin-top: 15px
}

.app-link img {
    height: auto;
    width: 20px
}

.qr-code {
    text-align: center
}

.qr-code img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px
}

.qr-code p {
    font-size: .9rem;
    color: #666;
    margin: 0
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #11828d !important
}

.accordion-button {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background-color: #fafafa !important
}

.list-unstyled {
    list-style: none;
    padding-left: 0
}

.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between
}


.logo img {
    max-height: 40px
}

.logo-navbar {
    margin: 5px 0px
}

.logo-navbar > img {
    max-height: 40px
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    width: 700px
}

.nav-list a {
    color: #000433;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s
}

.nav-list a:hover {
    color: #11828d
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem
}

.join-btn {
    background-color: #11828d !important;
    border-color: #11828d !important;
    padding: .5rem 1.5rem;
    color: #fff
}

.join-btn:hover {
    background-color: #000 !important;
    border-color: #fff !important;
    padding: .5rem 1.5rem;
    color: #fff
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    padding: .5rem
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.mobile-nav-list li {
    margin-bottom: 1rem
}

.mobile-nav-list a {
    color: #000433;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: .5rem 0
}

.auth-buttons > .btn:nth-child(1) {
    color: #000;
    text-decoration: none
}

.hepsi-emlak {
    width: 100px;
    height: auto;
    margin: 20px 0px
}

.list > li:hover > a > p {
    color: #11828d;
    transform: scale(1.1);
    text-decoration: underline 1px #11828d
}

.list {
    width: 100%;
    padding: 0px;
    flex-wrap: wrap
}

.list > li {
    list-style: none;
    width: 250px;
    height: 35px;
    display: flex;
    gap: 20px;
    align-items: center
}

.list > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 35px;
    gap: 20px
}

.list > li > a > p {
    font-size: 16px;
    color: #000
}

.app-link {
    display: flex;
    align-items: center;
    width: 150px;
    height: 55px;
    border: 1px solid #dedede;
    border-radius: 10px;
    gap: 10px;
    padding: 10px;
    background-color: #fff
}

.app-link > a {
    width: 30px;
    height: 30px
}

.app-link > p {
    font-size: 15px;
    color: #000
}

.app-link-a:hover {
    transform: scale(1.05)
}

.color-white {
    color: #000;
    border: 1px solid #000;
    border-radius: 5px;
    text-decoration: none
}

.color-white:hover {
    color: #fff !important;
    background-color: #000;
    border: 1px solid #000 !important
}

.color-white:focus-visible {
    color: #000 !important;
    border: 1px solid #000 !important;
    border-radius: 5px;
    text-decoration: none
}

.disclaimer-text {
    color: #767676;
    font-size: small !important;
    line-height: 1;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5
}

h3 {
    font-size: 20px
}

a {
    text-decoration: none !important
}

.navbar {
    box-shadow: none;
    border: none
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: center
}

.navbar-collapse {
    display: flex;
    justify-content: center
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center
}

.nav-link-2 {
    color: #000433 !important;
    font-weight: 500;
    padding: 1rem 0px !important;
    transition: color .3s ease;
    width: 100%;
    height: 60px;
    text-align: center;
    font-size: 15px
}

.nav-link-2:hover {
    color: #11828d !important
}

.dropdown-toggle::after {
    display: none !important
}

.mega-menu {
    width: 500px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    padding: 1.5rem !important;
    margin-top: 60px
}

.dropdown-header {
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    font-size: .8rem;
    padding: .5rem 0;
    margin-bottom: .5rem
}

.dropdown-item {
    color: #000433;
    padding: .5rem 0;
    font-size: .95rem;
    transition: all .2s ease
}

.dropdown-item:hover {
    color: #11828d;
    background-color: rgba(0, 0, 0, 0);
    padding-left: .5rem
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn .3s ease
}

.nav-li {
    position: relative;
    width: 100%;
    max-width: 100px
}

p {
    margin: 0px
}


.nav-item:hover {
    color: #000433
}

.nav-item i {
    font-size: 1.25rem;
    margin-bottom: 4px
}

.nav-item span {
    font-size: .75rem
}

.nav-item.active {
    color: #ff3b30
}

.nav-item-fixed {
    width: 75px
}

.nav-item-fixed > span {
    font-size: 10px;
    font-weight: 500;
    color: #434343
}

.nav-item-fixed:hover > i > svg > path {
    fill: red
}

.footer-area ul {
    margin-bottom: 20px;
    height: auto
}

.ball {
    bottom: 10px;
    right: 10px;
    border-radius: 10px
}

.ball-div {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center
}

.ball-div > div {
    display: none;
    width: 50px;
    height: 50px;
    background-color: #11828d;
    padding: 12px
}

#login-form > input {
    margin-bottom: 10px
}

#login-form {
    display: flex;
    justify-content: space-between;
    flex-direction: column
}

#sign-form > input {
    margin-bottom: 10px
}

.update-form {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.form-control-1 {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.ui-menu .ui-menu-item-wrapper:hover {
    background: #11828d !important;
    border: #11828d !important;
    outline: none !important
}

.ui-menu-item:hover {
    background-color: #11828d !important
}

.ui-state-active {
    background-color: #11828d !important
}

.ui-menu-item {
    background-color: #fff !important
}

.app-store {
    gap: 20px !important
}

.kaydol-modal {
    width: 800px;
    right: 25%
}

.back-img {
    background-position: center;
    background-image: url(assets/images/background.webp);
    width: 375px;
    height: 350px;
    right: 25px;
    border-radius: 10px
}

#kurumsal-form > input {
    margin-bottom: 10px
}

.kaydol-icon {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.kaydol-icon > li {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px
}

.kaydol-icon > li > svg {
    width: 25px !important;
    height: 25px !important;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 5px
}

.kaydol-icon > li:nth-child(1) > svg {
    background-color: #52ca46
}

.kaydol-icon > li:nth-child(2) > svg {
    background-color: #f16666
}

.kaydol-icon > li:nth-child(3) > svg {
    background-color: #4994ca
}

.kaydol-icon > li:nth-child(4) > svg {
    background-color: #ffaa19
}

.kaydol-icon > p {
    width: 100%
}

.kaydol-icon > li > span {
    font-size: 10px;
    color: #fff
}

.modal-header {
    background-color: #11828d;
    color: #fff
}

input[type=submit].form-control {
    background-color: #11828d !important;
    color: #fff !important
}

input[type=submit].form-control.dark {
    background-color: #f05012 !important;
    color: #fff !important
}

button.form-control {
    background-color: #11828d !important;
    color: #fff !important
}

.dot-line {
    padding-top: 3px;
    padding-bottom: 3px;
    border-color: #606060;
    border-style: dashed
}

.light {
    font-weight: 400 !important;
    color: #000 !important
}

.back-img-col:nth-child(2) > div {
    width: 375px;
    height: 375px
}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    padding: .75rem 1.25rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #212327 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEECAIAAAAd4J55AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OUIyQzg0Q0RDQ0ExMTFFNjkyMDJGQkMzNjQ3OUEyMTQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OUIyQzg0Q0VDQ0ExMTFFNjkyMDJGQkMzNjQ3OUEyMTQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5QjJDODRDQkNDQTExMUU2OTIwMkZCQzM2NDc5QTIxNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5QjJDODRDQ0NDQTExMUU2OTIwMkZCQzM2NDc5QTIxNCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnMLhJsAAB3qSURBVHja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")
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline
}

.category-div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.categories:nth-child(1) {
    display: flex;
    flex-direction: column;
    padding: 20px
}

.categories:nth-child(1) > .categories-inputs {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    height: 100%
}

.categories:nth-child(1) > .categories-inputs > input {
    width: 100%;
    height: 30px
}

.categories:nth-child(2) {
    height: 130px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 20px;
    gap: 10px
}

.categories:nth-child(2) > input {
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    padding: 10px
}

.categories:nth-child(3) {
    height: 190px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 5px
}

.categories:nth-child(3) > div {
    display: flex;
    gap: 10px
}

.categories:nth-child(3) > div > span {
    color: #000
}

.categories:nth-child(4) {
    height: 115px;
    display: flex;
    flex-direction: column;
    padding: 20px
}

.categories:nth-child(4) > div > div {
    display: flex;
    justify-content: space-between;
    padding: 10px 5px;
    align-items: center
}

.categories:nth-child(4) > div > div > input {
    width: 75px;
    border: 1px solid #d8d8d8;
    height: 40px;
    padding: 10px;
    border-radius: 5px
}

.categories:nth-child(4) > div > div > select {
    width: 75px;
    border: 1px solid #d8d8d8;
    height: 40px;
    outline: none;
    color: #939393;
    border-radius: 5px
}

.categories:nth-child(5) {
    height: 115px;
    padding: 20px
}

.categories:nth-child(5) > div {
    display: flex;
    padding: 10px 5px;
    align-items: center;
    width: 200px;
    justify-content: space-between
}

.categories:nth-child(5) > div > input {
    width: 75px;
    border: 1px solid #d8d8d8;
    height: 40px;
    padding: 10px;
    border-radius: 5px
}

.categories:nth-child(5) > div > span {
    margin: 0px 10px
}

.categories:nth-child(6) {
    height: 100%
}

.categories:nth-child(7) {
    height: 100%
}

.categories:nth-child(8) {
    height: 100%
}

.categories:nth-child(9) {
    height: 100%
}

.categories:nth-child(10) {
    height: 100%
}

.categories:nth-child(11) {
    height: 100%
}

.categories:nth-child(12) {
    height: 100%
}

.categories:nth-child(13) {
    height: 100%
}

.categories:nth-child(14) {
    height: 100%
}

.categories:nth-child(15) {
    height: 100%
}

.categories:nth-child(16) {
    height: 100%
}

.categories:nth-child(17) {
    height: 100%
}

.categories:nth-child(18) {
    height: 100%
}

.categories:nth-child(19) {
    height: 100%
}

.categories:nth-child(20) {
    height: 100%
}

.categories:nth-child(21) {
    height: 100%
}

.categories:nth-child(22) {
    height: 100%
}

.categories:nth-child(23) {
    height: 100%
}

.categories:nth-child(24) {
    height: 100%
}

.categories:nth-child(25) {
    height: 242px
}

.categories-real-estate {
    height: 227px;
    width: 100%;
    border: 1px solid #d8d8d8;
    background-color: #fafafa
}

.categories {
    width: 100%;
    border: 1px solid #d8d8d8;
    background-color: #fafafa
}

.line {
    border-top: 1px solid #c9c9c9;
    padding-top: 50px
}


.categories-h5 {
    font-weight: 700;
    font-size: 14px;
    padding: 12px;
    color: #000;
    padding-bottom: 0px
}

.sale-li {
    font-size: 13px;
    font-weight: 700;
}

.categories-places > li > div {
    display: flex;
    gap: 1px
}

.categories-places > li > div > a {
    color: #000;
    font-size: 13px;
    font-weight: 700
}

.categories-places > li > div > span {
    color: #000;
    font-size: 13px;
    font-weight: 500
}

.active-sale {
    font-weight: 700
}

.categories-real-estate-ul {
    width: 100%;
    height: 100%;
    padding: 0px;
    overflow: auto;
    display: flex;
    flex-direction: column
}

.categories-real-estate-ul > li {
    font-size: 13px;
    padding: 6px 10px;
    gap: 5px
}

.categories-real-estate-ul > li > a {
    color: #000
}

.categories-real-estate-ul::-webkit-scrollbar {
    display: none
}

.categories-real-estate-ul-up::-webkit-scrollbar {
    width: 5px !important
}

.categories-real-estate-ul-up::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px
}

.categories-real-estate-ul-up {
    overflow: auto;
    height: 150px;
    padding: 5px 0px 0px 13px
}

li {
    list-style: none;
    color: #000
}

.categories-title {
    color: #000
}

.categories-features {
    width: 100%;
    background-color: #fafafa
}

.checbox-li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0px
}

.checbox-ul {
    height: 250px;
    overflow: auto;
    margin: 0px;
    background-color: #fafafa !important
}

.input-radio {
    border-radius: 100% !important
}

.checbox-ul::-webkit-scrollbar {
    width: 5px
}

.checbox-ul::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px
}

.checbox-ul-under {
    padding: 10px;
    display: flex;
    flex-direction: column;
    overflow: visible !important;
    gap: 10px;
    height: 100% !important
}

.nav-item:active {
    color: #11828d !important
}

.nav-tabs .nav-link {
    border: none
}


.ads {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.nav-link {
    color: #000
}

.nav-link:hover {
    color: #11828d !important
}

link.active {
    background-color: none !important
}

.tabs {
    display: flex;
    gap: 20px
}

.real-estate {
    display: flex;
    align-items: flex-start;
    border: 1px solid #d8d8d8;
    height: 100%;
    border-radius: 5px
}

.real-estate-up-div {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-start-start-radius: 5px;
    border-end-start-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
}

.real-estate-up-div > img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px
}

.tag-div {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 5px
}

.new {
    padding: 4px 8px;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 700;
    color: #f16666;
    background-color: #fff;
    border-radius: 5px
}

.featured {
    padding: 4px 8px;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 700;
    color: #ffaa19;
    background-color: #fff;
    border-radius: 5px
}

.real-estate-info {
    padding: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 200px;
    max-height: 200px;
    justify-content: space-between
}

.real-estate-tel {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.tel-button {
    border-radius: 100px;
    height: 40px;
    width: 150px;
    background-color: #11828d;
    border: none
}

.tel-button > a {
    color: #fff
}

.money {
    color: #000;
    font-size: 22px;
    font-weight: 700
}

.name {
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #000
}

.locaiton {
    white-space: nowrap;
    font-size: 13px;
    color: #000
}

.daire-info {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 500
}

.real-estate-pagination {
    display: flex;
    justify-content: center
}

.page-link {
    border: none;
    margin-top: 2px;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center
}

.active {
    border-bottom: 1px solid #11828d !important;
    color: #11828d !important
}

.tab-pane {
    border: none !important
}

.none-active {
    color: #939393
}

.title-for-sale {
    font-size: 20px;
    font-weight: 600;
    color: #000
}

.title-for-sale-span {
    font-size: 20px;
    font-weight: 500;
    color: #5f787e;
    display: flex;
    gap: 10px
}

.favorite-button {
    position: absolute;
    top: -5px;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: clamp(20px, 2.5vw, 28px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    padding: 8px;
    transition: transform .2s ease;
    z-index: 10
}

.selecet-div {
    display: flex;
    justify-content: end
}

.selecet-div > select {
    height: 100%;
    cursor: default;
    border-radius: .25rem;
    border-width: 1px;
    border-color: #d8d8d8;
    background-color: #fff;
    font-size: 15px;
    height: 40px;
    outline: none;
    padding: 0px 10px
}

.navigation-numbers:hover {
    color: #11828d !important
}

.page-item:first-child .page-link {
    border-radius: 100% !important
}

.page-item:last-child .page-link {
    border-radius: 100% !important
}

.city-ul {
    margin: 0px 0px 40px 0px
}

.city-ul > li > a {
    color: #000 !important;
    font-size: 14px;
    font-weight: 500
}

.city-ul > li {
    border-radius: 100px;
    padding: 10px 15px;
    border: 1px solid #d8d8d8;
    margin-right: 10px;
    margin-bottom: 10px
}

.city-span {
    font-weight: 600;
    color: #000;
    font-size: 22px;
    margin-bottom: 20px
}

.city-ul::-webkit-scrollbar {
    width: 5px !important
}

.city-ul::-webkit-scrollbar {
    background-color: #888;
    border-radius: 10px
}

.real-estate-up-div > img {
    width: 270px
}

@media (min-width: 992px) {
    .bottom-nav {
        display: none
    }
}

@media (min-width: 1400px) {
    .mobile-menu-btn {
        display: none
    }
}

@media (max-width: 360px) {
    .nav-item span {
        font-size: .7rem
    }

    .bottom-nav {
        padding: 0 5px
    }
}

@media (max-width: 576px) {
    .reverse-mobile {
        flex-direction: row-reverse !important
    }

    .mobile-footer-header {
        text-align: center !important
    }

    .navbar-brand img {
        height: 24px
    }

    .line {
        border: none !important;
        padding: 0px !important
    }

    .auth-buttons {
        display: none !important
    }

    .navbar-buttons {
        display: flex !important
    }

    .legal_membership {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center
    }

    #sort {
        display: none !important
    }

    .margin-top {
        margin-top: 140px !important
    }

    .mobil-filters {
        display: block !important
    }

    .mobil-navbar {
        top: 70px;
        background-color: #fff;
        border: 1px solid #f0f0f0;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .5), inset 0 1px 0 0 #f0f0f0;
        z-index: 1;
    }

    .top-search-result {
        gap: 0 !important;
        padding: 0 !important
    }

    .my-5 {
        margin-top: 0 !important
    }
}

@media (max-width: 768px) {
    .footer-area {
        padding: 30px 0
    }

    .social-media {
        justify-content: center;
        margin-bottom: 30px
    }

    .app-downloads {
        justify-content: center
    }

    .about {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center
    }

    .legal_membership {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center
    }

    .city-ul {
        justify-content: center !important
    }

    .header-content:nth-child(1) > div {
        width: 100%
    }

    .social-link {
        width: 35px;
        height: 35px
    }

    .real-estate {
        flex-direction: column
    }

    .title-for-sale {
        font-size: 16px !important
    }

    .title-for-sale-span {
        font-size: 16px !important
    }

    .real-estate-up-div > img {
        width: 100%
    }

    .advert-a {
        width: 100%
    }

    .text-start {
        text-align: center !important
    }
}

@media (max-width: 991px) {
    .footer-container {
        margin-bottom: 100px
    }

    .back-img-col {
        display: none !important
    }

    .kaydol-modal {
        width: 100% !important;
        right: 0px !important
    }

    .categories-div {
        display: none !important
    }

    #myTab {
        display: none
    }
}

@media (max-width: 1400px) {
    .header {
        padding: .3rem
    }

    .desktop-nav {
        display: none !important
    }
}

.select2-container {
    margin-bottom: 10px !important
}

.select2-container .select2-selection--single {
    height: 47px !important
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 47px !important;
    right: 5px !important
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 47px !important
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #d8d8d8 !important;
    border-radius: 5px !important
}

.select2-results__option {
    color: #585858 !important
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #11828d !important;
    color: #fff !important
}

.select2-container--default .select2-results > .select2-results__options {
    overflow-y: hidden !important
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
    outline: none !important
}

.mobil-filters {
    display: none
}

#sort_mobil {
    border: none;
    outline: none;
    height: 30px;
    width: 50%;
    background-color: #fff
}

.mobil-nav-button {
    width: 50%;
    box-shadow: none !important;
    outline: none !important;
    font-size: 16px;
    color: #202020
}

.filters {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%
}

.filters-mobil {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d9d9d9;
    min-height: 48px;
    padding: 0 10px 0 15px;
    background-color: #fff
}

.menu-content .filters .filters-mobil:nth-child(2) {
    border-top: 1px solid #d9d9d9 !important
}

.mobil-filters .mobil-ofcanvas-body {
    padding: 0 !important
}

.error {
    color: red;
    margin: 3px 0px;
    font-size: 16px
}

.mobil-filters-bottom {
    width: 100%;
    height: 70px;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .2), inset 0 1px 0 0 #d9d9d9, inset 0 -1px 0 0 #d9d9d9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px !important;
    background-color: #fff
}

#mobil_filter {
    background-color: #11828d;
    width: 100%;
    color: #fff
}

.filters-spans {
    font-size: 14px;
    font-weight: 600;
    color: #5f787e;
    padding: 16px 15px 8px
}

.btn-close {
    border: none !important;
    outline: none !important
}

.mobil-ofcanvas-body {
    background-color: #f5f5f5
}

.filters-bottom {
    margin-bottom: 80px
}

.filters-mobil-money {
    gap: 20px;
    align-items: center
}

.brut {
    justify-content: center;
    gap: 20px;
    align-items: center
}


.filters-mobil a {
    margin-right: 8px
}

.mobil-filter-btn {
    background-color: #11828d !important;
    border: none;
    border-radius: 3px;
    width: 100%;
    height: calc(100% - 35px);
    color: #fff !important
}

.offcanvas-header .offcanvas-title {
    font-size: large
}

.filter-clear {
    font-size: smaller;
    font-weight: 600;
    color: #11828d !important
}

.mobil-filters .form-control {
    border-radius: 0
}

select {
    background-color: #f0f0f0;
    color: #000
}

select option {
    background-color: #fff !important;
    color: #000
}

select option:hover {
    background-color: #fa4903 !important;
    color: #fff !important
}

select option:checked {
    background-color: #11828d !important;
    color: #fff !important
}

.mobil-filters .accordion-item:first-of-type .accordion-button {
    border-radius: 0 !important
}

.mobil-filters .accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0 !important
}

.mobil-filters .accordion-button {
    background-color: #fff !important
}

.mobil-filters .accordion-body {
    background: #fafafa
}

.mobil-filters .form-check {
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: space-between !important;
    padding-left: .86em !important;
    padding-bottom: .96em !important
}

.mobile-selected-filters {
    font-size: small;
    font-weight: 500;
    color: #11828d;
    overflow: hidden;
    margin-left: 12px;
    padding-top: 3px
}

.about {
    flex-direction: column
}

.legal_membership {
    flex-direction: column
}

.margin-checkbox {
    margin-left: 20px
}

.categories-div {
    position: relative
}

.filter-button.absolute {
    position: absolute;
    bottom: 20px
}

.filter-section {
    margin-bottom: 15px
}

.filter-button {
    position: sticky;
    bottom: 20px;
    width: 100%;
    padding: 15px;
    background-color: #11828d !important;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 100;
    border-radius: 6px
}

.filter-button.absolute {
    position: absolute;
    bottom: 20px
}

.page-knowledge {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem
}

.page-knowledge-h2 {
    font-size: 22px;
    color: #000;
    margin-top: .83em;
    margin-bottom: .83em
}

.page-knowledge-p {
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: .875rem;
    line-height: 1.25rem;
    color: #9099a1 !important
}

.page-knowledge-span {
    font-weight: bolder
}

.page-knowledge-link {
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: #11828d !important;
    text-decoration-line: underline;
    font-weight: bolder
}

.slider-container {
    position: relative;
    width: 100%
}

.form-range {
    position: relative;
    z-index: 1
}

.slider-dots {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 10px;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    z-index: 10
}

.slider-dot {
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
    transform: translateY(-50%)
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px
}

.range-labels span {
    font-size: 14px;
    font-weight: 500
}

.about-accordion {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden
}

.about-accordion-item {
    border-bottom: 1px solid #ddd
}

.about-accordion-button {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none
}

.about-accordion-button:focus {
    box-shadow: none
}

.about-accordion-body {
    padding: 15px;
    font-size: 14px;
    color: #555
}

.about-icon {
    font-weight: bold;
    transition: transform .2s ease-in-out
}

.about-accordion-head {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding: 15px
}

.about-accordion-head > p {
    color: #000;
    font-size: 16px;
    font-weight: 500
}

.about-accordion-head > p > strong {
    font-weight: 800 !important
}

.package-features {
    margin: 1rem -1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.package-description {
    color: #6c757d;
    font-size: 0.9rem;
    min-height: 40px;
}

.favorite-ads {
    margin: 0px 15px;
    gap: 15px;
    display: flex;
    flex-direction: column
}

.favorite-ads-button {
    display: flex;
    justify-content: space-between
}

.btn-bg-green {

    background: #11828d;
    color: #fff;

}

.btn-bg-green:hover {
    color: #11828d;
    background: #fff;
    border: 1px solid #11828d;
}

.border-green {
    border: 1px solid #11828d;
}

.pricing-card {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    height: 100%;
}

.pricing-card:hover {
    border-color: #17a2b8;
    box-shadow: 0 0 0 1px #17a2b8;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #17a2b8;
}

.currency {
    font-size: 1.25rem;
    vertical-align: super;
}

.btn-buy {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: white;
    padding: 0.5rem 1rem;
    width: 100%;
    border-radius: 0.25rem;
}

.btn-buy:hover {
    background-color: #138496;
    border-color: #138496;
    color: white;
}


.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 0.9rem;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #edf2f7;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-included {
    color: #48bb78;
}

.feature-not-included {
    color: #a0aec0;
}


#publish-the-ad {
    position: relative;
    white-space: nowrap;
    height: 40px;
    padding: 11px 13px;
    border-radius: 4px;
    color: #fff;
    background-color: #4d808b;
    font-size: 14px;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: .3px;
    text-align: center;
    border: none
}

#publish-the-ad-2 {
    position: relative;
    white-space: nowrap;
    height: 40px;
    padding: 11px 13px;
    border-radius: 4px;
    color: #fff;
    background-color: #4d808b;
    font-size: 14px;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: .3px;
    text-align: center;
    border: none
}

.ad-dropdown {
    height: 40px
}

.ad-dropdown::after {
    display: block !important
}

.nav-link-2::after {
    display: none !important
}

.ad-process {
    user-select: none;
    align-items: center;
    color: #434343 !important;
    font-size: 14px;
    background: #fff !important;
    height: 40px;
    border: 1px solid #cbcbcb;
    border-radius: 4px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    transition: all .12s linear
}

.ad-process:hover {
    background-color: #fff !important;
    color: #434343;
    border: 1px solid #cbcbcb
}

.ad-item {
    display: flex;
    gap: 5px;
    justify-content: start;
    padding: 10px
}

.ad-item > span {
    width: 16px;
    height: 16px;
    display: block
}

.ad-item > span > svg {
    width: 16px;
    height: 16px
}

.ad-item:hover {
    color: #4d808b !important
}

.categories-div input[type=checkbox] {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: #fafafa;
    border: 1px solid gray;
    border-radius: 4px;
    cursor: pointer;
    padding: 0 !important;
}

.categories-div input[type=checkbox]:checked {
    background-color: #11828d !important
}

#myTab .nav-item {
    flex-direction: row;
    width: max-content !important;
}

#myTab .nav-item .nav-link.active {
    border-bottom: 3px solid #11828d !important;
}

#buy-advert-package .nav-item {
    flex-direction: row;
    width: max-content !important;
}

#myProfile .active {
    border-bottom: 1px solid #4d808b !important;
    color: #4d808b !important;
    border-left: 1px solid #4d808b !important;
}

.ck-editor__editable {
    height: 300px !important;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.category-select-area {
    display: flex;
    align-items: center;
    gap: 1rem;

    margin-top: .5rem;
    padding: 1rem;
}

.bg-gray {
    background: #f9f9f9;
}

.btn-bg-green {

    background: #11828d;
    color: #fff;

}

.btn-bg-green:hover {
    color: #11828d;
    background: #fff;
    border: 1px solid #11828d;
}

.advert-card {
    border: 1px solid #e5e7eb;
    border-radius: .25rem;
    padding: .5rem;
    margin-bottom: 1rem;
}

.select-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 33%;
}

.select-wrapper select {
    min-height: 42px;
}

select {
    padding-right: 30px;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    color: #11828d;
    display: none;
}

.close-btn {
    position: absolute;
    right: 5px;
    cursor: pointer;
    color: #6b7280;
    display: none;
    font-weight: 400;
}

.no-arrow {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none !important;
}

.advert-area select {
    padding: .5rem;
    border-width: 1px;
    background: #ffffff;
    width: 100%;
}

.listing-feature-title {
    color: #111827;
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
}

.advert-title {
    color: #111827;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-top: .5rem;
    margin-left: .5rem;
}

.advert-checboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}


.form-check-input:checked[type=checkbox] {
    background-color: #11828d;
    border-color: #11828d;
}

.upload-box {

    width: 120px;
    height: 120px;
    border: 2px solid #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

.upload-box i {
    font-size: 40px;
    color: #11828d;
}

.upload-box p {
    color: #6b7280;
    font-weight: 600;
}

.video-upload {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    width: fit-content;
}

.video-upload i {
    font-size: 20px;
    color: #11828d;
}

.video-upload p {
    margin: 0;
    color: #6b7280;
    font-weight: 600;

}

.custom-box {
    position: relative;
    background: white;
    padding: 0.8rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

.custom-box::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 20%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid #11828d;
}


.turbo-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    margin-bottom: 1rem;
    cursor: pointer;
}

.checkbox-label {
    font-weight: bold;
}

.description {
    color: #777;
    font-size: 14px;
    margin-top: 4px;
    text-align: start;
}

.preview-link {
    color: #11828d;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 8px;
    display: block;
}

.turbo-dropdown {
    margin-top: 12px;
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.turbo-total-price {
    font-size: 18px;
    font-weight: bold;
}

.turbo-title {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1rem;
}

.turbo-card.selected {
    border: 2px solid #11828d;
}

.advert-final-step {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}

.advert-final-step::before {
    content: '';
    position: absolute;
    width: 0;
    top: -14px;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #11828d;
}

.advert-card-final {
    width: 50%;
}

.small-title {
    font-size: 14px;
}

.step-icon {
    color: white;
    border-radius: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: gray;
    width: 35px;
    height: 35px;
}

.advert-custom-final {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid #11828d;
    z-index: 1000;
}


@media (min-width: 1441px) {

    .turbo-cards {
        padding-left: 120px;
        padding-right: 120px;
    }
}

@media (max-width: 480px) {
    .advert-final-step {
        display: none;
    }
}

@media (max-width: 1023px) {

    .custom-box {
        display: none;
    }
}


@media (max-width: 767px) {
    .advert-card-final {
        width: 100%;
    }

    .category-select-area {
        flex-wrap: wrap;
        justify-content: center;
    }

    .select-wrapper {
        width: 100%;
    }

    .arrow-icon {
        width: 30px;
        height: 30px;
        transform: rotate(90deg);
    }
}

@media (min-width: 768px) {
    .advert-custom-final {
        display: none;
    }
}


/* Modal Arkaplan */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal İçerik */
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    border-radius: 8px;
    max-width: 600px;
    position: relative;
    text-align: center;
}

/* Kapat Butonu */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* Buton Stili */
.open-btn {
    padding: 10px 20px;
    background-color: #e53935;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

/* Modal */
.modal {
    z-index: 1050 !important;
}

/* Modal Backdrop */
.modal-backdrop {
    z-index: 1040 !important;
}

.map-info,
.turbo-cards label,
.advert-area label {
    color: #000;
}

#myModal p,
#myModal h2 {
    color: #000;
}

.mb-7 {
    margin-bottom: 6rem !important;
}