@keyframes tabActivate {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
:root {
    --primary: #0464d7;
    --primary-hover: #132021;
    --primary-light: #132021;
    --primary-lighter: #132021b;
    --primary-dark: #132021;
    --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: #132021;
    --dark-accent-light: #1a1a4d;
    --secondary: #132021;
    --text-dark: #132021;
    --text-medium: #334155;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --bg-light: #ffffff;
    --bg-card: #ffffff;
    --border-light: #e2e8f0;
    --gray-50: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #132021;
    --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: #132021;
    --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: #000;
    --primary-color: #2d3436;
    --secondary-color: #636e72;
    --accent-color: #ffd700;
    --light-gray: #f5f5f5;
    --border-radius: 8px;
}
* {
    padding: 0;
    box-sizing: border-box;
}
html {
    height: 100%;
}
body {
    background-color: var(--gray-50);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.header ~ :not(.footer-area):not(footer):not(script):not(style) {
    flex: 1 0 auto;
}
.footer-area {
    flex-shrink: 0;
}
a {
    text-decoration: none !important;
}
*,
p {
    margin: 0;
}
.header {
    background: var(--white);
    box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
    border-bottom: 1px solid var(--gray-200);
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.header-container {
    width: 100%;
    height: 100%;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-container,
.header-left,
.logo {
    display: flex;
    align-items: center;
}
.logo {
    text-decoration: none;
    color: var(--primary);
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
}
.breadcrumb {
    font-size: 0.85rem;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
    scrollbar-width: thin;
    scrollbar-color: #79aae5 #fff0;
}
.breadcrumb::-webkit-scrollbar {
    height: 3px;
    display: block !important;
}
.breadcrumb::-webkit-scrollbar-track {
    background: #fff0;
}
.breadcrumb::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
}
.breadcrumb-item + .breadcrumb-item::before {
    padding-right: 1px;
}
.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) !important;
}
.breadcrumb-item + .breadcrumb-item {
    padding-left: 1px;
}
.thumbnail-gallery img.active,
.thumbnail-gallery img:hover {
    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: 2.25rem;
    margin: 0;
}
.header .nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.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: 0.75rem;
    align-items: center;
}
.btn-outline {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--primary);
    background: 0 0;
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}
.btn-outline:hover,
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary {
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    border: 0;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}
.btn-outline-primary {
    color: #0464d7;
    border-color: #0464d7;
}
.header.attop .mobile-toggle {
    color: var(--white);
}
.mobile-toggle {
    display: none;
    background: 0 0;
    border: 0;
    color: var(--gray-600);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background var(--transition-fast);
}
.mobile-toggle:hover {
    color: var(--primary);
}
.mobile-header-icons {
    display: none;
}
.mobile-header-icons button {
    background: #fff0;
    border: 1px solid #0464d7;
}
.header-icon,
.location-selector {
    align-items: center;
    background: var(--gray-100);
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}
.header-icon {
    width: 40px;
    height: 40px;
    color: #0464d7;
    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: -8px;
    right: -8px;
    background: var(--primary);
    color: #fff;
    width: 1px;
    height: 20px;
    font-size: 10px;
    align-items: center;
}
.location-selector {
    display: none;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
}
.location-selector:hover {
    background: var(--primary-alpha-10);
}
.hero {
    background-image: url(../images/hero.webp);
    background-size: cover;
    background-position: center;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    min-height: 400px;
}
.search-tab.active {
    color: var(--white) !important;
}
.search-tab.active::before {
    top: 0;
    right: 0;
    border-radius: 10px;
    z-index: -1;
    animation: tabActivate 0.3s ease forwards;
}
.search-tab:hover:not(.active) {
    background: var(--gray-200);
}
.btn-search.loading {
    opacity: 0.7;
    cursor: not-allowed;
}
.btn-search.loading i {
    animation: spin 1s linear infinite;
}
.autocomplete-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.autocomplete-item:hover {
    background-color: var(--primary-alpha-10);
}
.autocomplete-item i {
    color: var(--gray-400);
    font-size: 0.875rem;
}
.content {
    background: var(--white);
}
.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;
}
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-success {
    background-color: #25d366;
    border-color: #25d366;
}
.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 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.75rem;
}
.price-sm {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.25rem;
}
.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
}
.similar-property .price {
    font-size: 1.1rem;
    color: var(--primary);
}
.similar-property .location {
    font-size: 0.85rem;
    color: var(--gray-600);
}
#map {
    width: 100%;
    height: 400px;
}
.badge {
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    font-size: 0.75rem;
    position: static;
    color: #fff;
}
.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:
        color 0.2s ease,
        background-color 0.2s ease;
}
.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: #fff0;
    border-bottom: 2px solid var(--primary);
}
.bg-primary {
    background-color: var(--primary);
}
.property-tabs.card,
.right-card.card,
.similar-properties.card {
    width: 100%;
    margin: 0;
}
#send-message-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#textarea {
    resize: none;
}
.filter-btn {
    background: 0 0;
    border: 0;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover {
    color: var(--primary-hover);
    background: rgb(17 130 141 / 0.1);
}
.filter-btn.active {
    background: var(--primary);
    color: #fff !important;
    box-shadow: var(--shadow-sm);
}
.profile-mobile {
    display: none;
    background-color: #fff;
    margin-top: 80px;
    margin-bottom: 5rem;
}
.listing-types {
    display: flex;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-light);
}
.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);
}
.listings-container,
.listings-header,
.view-all {
    display: flex;
    align-items: center;
}
.listings-container {
    position: relative;
    margin-bottom: 20px;
}
.listings-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.listings-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}
.listing-card {
    min-width: 250px;
    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 {
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    display: inline-block;
}
.feature {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.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: 0.7rem;
}
.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: 0.8rem;
    font-weight: 500;
    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: rgb(0 0 0 / 0.5);
    z-index: 1000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.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 0.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: 0.5rem;
    border-radius: 50%;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}
.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: #fff;
    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: 0.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: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}
.filter-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 0.875rem;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
    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: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 0.875rem;
    background: var(--white);
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.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: 0.75rem;
}
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.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: 0.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: 0.25rem;
}
.checkbox-item label {
    font-size: 0.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 rgb(0 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 rgb(0 0 0 / 0.2);
}
.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.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:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}
.btn-filter-clear {
    padding: 0.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: 0.75rem 2rem;
    background: var(--primary);
    border: 0;
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.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 {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}
.city-item.loading .city-image::after,
.city-item.loading .city-info h3::after,
.city-item.loading .listing-count::after,
.city-item.loading .listing-types span::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0,
        var(--border-light) 50%,
        transparent 100%
    );
    will-change: transform;
    animation: shimmer 1.5s infinite;
}
.city-item.loading .city-info h3,
.city-item.loading .listing-count,
.city-item.loading .listing-types span {
    color: #fff0;
    border-radius: 4px;
}
.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: #3c3d37;
    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: 0.9rem;
    transition: color 0.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: #c2410c;
    transform: scale(1.1);
    -webkit-text-decoration: underline 1px #c2410c;
    text-decoration: underline 1px #c2410c;
}
.footer-accordion {
    display: none;
    margin: 10px 0;
}
.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #0464d7 !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: #0464d7;
}
.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;
}
.property-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.property-card:hover {
    transform: translateY(-5px);
}
.property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255 255 255 / 0.8);
    border: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}
.nav-arrow.prev {
    left: 10px;
}
.nav-arrow.next {
    right: 10px;
}
.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: 0.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: 0.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 0.5s ease;
    padding: 0 45px;
    align-items: center;
    height: 350px;
}
.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-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 0.5rem;
}
.login-modal .modal-content {
    border-radius: 12px;
    border: 0;
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.1);
}
.login-modal .form-control {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.login-modal .form-control:focus {
    border-color: #132021;
    box-shadow: 0 0 0 3px rgb(74 144 167 / 0.1);
}
.register-modal .modal-header {
    background-color: #0464d7;
    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: #2f2f2f;
    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;
}
.update-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ui-menu .ui-menu-item-wrapper:hover {
    background: #0464d7 !important;
    border: #0464d7 !important;
    outline: 0 !important;
}
.ui-menu-item:hover,
.ui-state-active {
    background-color: #0464d7 !important;
}
.ui-menu-item {
    background-color: #fff !important;
}
.ball-place:hover {
    background-color: #000;
    transition: 0.3s;
}
.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;
}
.logo {
    height: 30px;
}
.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
}
.btn-primary {
    background-color: #0464d7;
    border-color: #0464d7;
}
.form-control:focus {
    border: 1px #dee2e6 solid !important;
    outline: 0 !important;
    box-shadow: 0 0 5px 1px #0464d7 !important;
}
.footer-area {
    background-color: #f8f9fa !important;
    padding: 0 0 50px;
    font-family: Poppins, sans-serif;
    position: relative;
    z-index: 1;
}
.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 0.3s ease;
    border: 1px solid #ededed;
}
.social-link:hover {
    opacity: 0.8;
}
.social-link > img {
    width: 22px;
    height: 22px;
}
.app-downloads {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.app-link img {
    height: auto;
    width: 20px;
}
.list-unstyled {
    list-style: none;
    padding-left: 0;
}
.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 0.3s;
}
.nav-list a:hover {
    color: #c2410c;
}
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.join-btn,
.join-btn:hover {
    background-color: #0464d7 !important;
    border-color: #0464d7 !important;
    padding: 0.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: 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: #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 .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 0.3s ease;
    width: 100%;
    height: 60px;
    text-align: center;
    font-size: 15px;
}
.nav-link-2:hover {
    color: #0464d7 !important;
}
.mega-menu {
    width: 500px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgb(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:
        color 0.2s ease,
        background-color 0.2s ease;
}
.dropdown-item:hover {
    color: #c2410c;
    background-color: #fff0;
    padding-left: 0.5rem;
}
.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}
.nav-li {
    position: relative;
    width: 100%;
    max-width: 100px;
}
.nav-item span {
    font-size: 0.75rem;
    text-align: start;
}
.nav-item.active {
    color: #0464d7;
}
.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: #c2410c;
    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;
}
.app-store {
    gap: 10px !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: #b45309;
}
.kaydol-icon > p {
    width: 100%;
}
.kaydol-icon > li > span {
    font-size: 10px;
    color: #fff;
}
.modal-header {
    background-color: #c2410c;
    color: #fff;
}
button.form-control,
input[type="submit"].form-control {
    background-color: #c2410c !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: 0.75rem 1.25rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition:
        opacity 0.5s ease-out,
        visibility 0.5s 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: 1s;
}
.cookiealert a {
    text-decoration: underline;
}
.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
.line {
    border-top: 1px solid #c9c9c9;
    padding-top: 50px;
}
.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: 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;
}
.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 rgb(0 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: #0464d7;
    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,
.switch-small input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider,
.slider:before {
    position: absolute;
    transition: 0.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: #0464d7;
}
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 rgb(0 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: #0464d7;
    transition: opacity 0.25s linear;
    text-align: center;
    border: 0;
}
.give_ad > a {
    line-height: 17px;
    color: #fff;
}
.announcement_stages {
    margin: 40px 0;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px;
}
.announcement_stages_div {
    width: 100%;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 1px 0 rgb(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;
}
.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-h3 {
    margin-bottom: 10px;
    color: #434343;
    font-size: 20px;
}
.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: #0464d7;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.3px;
    text-align: center;
    border: 0;
}
.ad-dropdown {
    height: 40px;
}
.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: #0464d7 !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: 0.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: #0464d7;
    padding-inline: 14px;
    width: 200px;
    border: 0;
}
.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 rgb(0 0 0 / 0.05);
    gap: 21px;
    width: 100%;
    height: 180px;
}
.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;
    min-height: 660px;
    height: auto;
}
.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;
}
.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: #0464d7 !important;
}
.text-place {
    height: 90%;
    overflow: auto;
    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 rgb(0 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-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:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}
.form-control:focus {
    border: 1px #dee2e6 solid !important;
    outline: 0 !important;
    box-shadow: 0 0 5px 1px #0464d7 !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;
}
.list-unstyled {
    list-style: none;
    padding-left: 0;
}
.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: #c2410c;
}
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.join-btn {
    background-color: #0464d7 !important;
    border-color: #0464d7 !important;
    padding: 0.5rem 1.5rem;
    color: #fff;
}
.join-btn:hover {
    background-color: #132021 !important;
    border-color: #fff !important;
    padding: 0.5rem 1.5rem;
    color: #fff;
}
.mobile-menu-btn {
    display: block;
    background: 0 0;
    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: #132021;
    text-decoration: none;
}
.hepsi-emlak {
    width: 100px;
    height: auto;
    margin: 20px 0;
}
.list > li:hover > a > p {
    color: #c2410c;
    transform: scale(1.1);
    -webkit-text-decoration: underline 1px #c2410c;
    text-decoration: underline 1px #c2410c;
}
.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: #132021;
}
.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: #132021;
}
.app-link-a:hover {
    transform: scale(1.05);
}
.color-white {
    color: #132021;
    border: 1px solid #132021;
    border-radius: 5px;
    text-decoration: none;
}
.color-white:hover {
    color: #fff !important;
    background-color: #132021;
    border: 1px solid #132021 !important;
}
.color-white:focus-visible {
    color: #132021 !important;
    border: 1px solid #132021 !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 .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: #0464d7 !important;
}
.mega-menu {
    width: 500px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgb(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:
        color 0.2s ease,
        background-color 0.2s ease;
}
.dropdown-item:hover {
    color: #c2410c;
    background-color: #fff0;
    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: #0464d7;
}
.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: #c2410c;
    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;
}
.app-store {
    gap: 10px !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: #b45309;
}
.kaydol-icon > p {
    width: 100%;
}
.kaydol-icon > li > span {
    font-size: 10px;
    color: #fff;
}
.modal-header {
    background-color: #c2410c;
    color: #fff;
}
input[type="submit"].form-control {
    background-color: #c2410c !important;
    color: #fff !important;
}
input[type="submit"].form-control.dark {
    background-color: #f05012 !important;
    color: #fff !important;
}
button.form-control {
    background-color: #c2410c !important;
    color: #fff !important;
}
.dot-line {
    padding-top: 3px;
    padding-bottom: 3px;
    border-color: #606060;
    border-style: dashed;
}
.light {
    font-weight: 400 !important;
    color: #132021 !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:
        opacity 0.5s ease-out,
        visibility 0.5s 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: 1s;
}
.cookiealert a {
    text-decoration: underline;
}
.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
.line {
    border-top: 1px solid #c9c9c9;
    padding-top: 50px;
}
.nav-tabs .nav-link .active {
    border-bottom: 1px solid #0464d7 !important;
    color: #0464d7 !important;
    border-left: 1px solid #0464d7 !important;
}
.nav-tabs .nav-link {
    border: none;
}
.nav-tabs {
    border: none !important;
}
.tab-pane {
    border: none !important;
    padding: 0 5px;
}
.nav-link:hover {
    color: #0464d7 !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 rgb(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: #0464d7;
    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: #fff;
    transition: 0.4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #0464d7;
}
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 rgb(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: #0464d7;
    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 rgb(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-h3 {
    margin-bottom: 10px;
    color: #434343;
    font-size: 20px;
}
.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: #0464d7;
    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;
}
.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: #0464d7 !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: #0464d7;
    padding-inline: 14px;
    width: 200px;
    border: none;
}
.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;
    min-height: 660px;
    height: auto;
}
.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: 0 16px;
    background-color: #fff;
    border-bottom: 1px solid #e4e4e4;
    font-size: 14px;
    line-height: 1;
    height: 40px;
}
.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: 0 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: 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 {
    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: #0464d7 !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 rgb(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;
}
.logo {
    height: 30px;
}
.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
}
.section-margin {
    margin-top: 6rem;
}
.form-control:focus {
    border: 1px #dee2e6 solid !important;
    outline: 0 !important;
    box-shadow: 0 0 5px 3px #0464d7 !important;
}
.navbar-buttons {
    display: none;
    text-decoration: none;
}
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255 255 255 / 0.8);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}
.footer-area {
    background-color: #f8f9fa;
    padding: 0 0 50px 0;
    font-family: Roboto, 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: #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 0.3s ease;
    border: 1px solid #ededed;
}
.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;
}
.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #0464d7 !important;
}
.accordion-button {
    outline: 0 !important;
    border: none !important;
    box-shadow: none !important;
}
.list-unstyled {
    list-style: none;
    padding-left: 0;
}
.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: #000433;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-list a:hover {
    color: #0464d7;
}
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.join-btn {
    background-color: #0464d7 !important;
    border-color: #0464d7 !important;
    padding: 0.5rem 1.5rem;
    color: #fff;
}
.join-btn:hover {
    background-color: #000 !important;
    border-color: #fff !important;
    padding: 0.5rem 1.5rem;
    color: #fff;
}
.mobile-menu-btn {
    display: block;
    background: 0 0;
    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: #000433;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
}
.auth-buttons > .btn:nth-child(1) {
    color: #000;
    text-decoration: none;
}
.hepsi-emlak {
    width: 100px;
    height: auto;
    margin: 20px 0;
}
.list > li:hover > a > p {
    color: #0464d7;
    transform: scale(1.1);
    text-decoration: underline 1px #0464d7;
}
.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: #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 .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 0 !important;
    transition: color 0.3s ease;
    width: 100%;
    height: 60px;
    text-align: center;
    font-size: 15px;
}
.nav-link-2:hover {
    color: #0464d7 !important;
}
.dropdown-toggle::after {
    display: none !important;
}
.mega-menu {
    width: 500px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgb(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: #000433;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}
.dropdown-item:hover {
    color: #0464d7;
    background-color: #fff0;
    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: #000433;
}
.nav-item i {
    font-size: 1.25rem;
    margin-bottom: 4px;
}
.nav-item span {
    font-size: 0.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: #0464d7;
    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;
}
.ui-menu .ui-menu-item-wrapper:hover {
    background: #0464d7 !important;
    border: #0464d7 !important;
    outline: 0 !important;
}
.ui-menu-item:hover {
    background-color: #0464d7 !important;
}
.ui-state-active {
    background-color: #0464d7 !important;
}
.ui-menu-item {
    background-color: #fff !important;
}
.app-store {
    gap: 10px !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: #b45309;
}
.kaydol-icon > p {
    width: 100%;
}
.kaydol-icon > li > span {
    font-size: 10px;
    color: #fff;
}
.modal-header {
    background-color: #0464d7;
    color: #fff;
}
input[type="submit"].form-control {
    background-color: #0464d7 !important;
    color: #fff !important;
}
input[type="submit"].form-control.dark {
    background-color: #f05012 !important;
    color: #fff !important;
}
button.form-control {
    background-color: #0464d7 !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: 0.75rem 1.25rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition:
        opacity 0.5s ease-out,
        visibility 0.5s 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: 1s;
}
.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) {
    display: flex;
    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) {
    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) {
    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: 0;
    color: #939393;
    border-radius: 5px;
}
.categories:nth-child(5) {
    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: 0 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 {
    width: 100%;
    border: 1px solid #d8d8d8;
    background-color: #fafafa;
}
.line {
    border-top: 1px solid #c9c9c9;
    padding-top: 50px;
}
li {
    list-style: none;
    color: #000;
}
.categories-features {
    width: 100%;
}
.input-radio {
    border-radius: 100% !important;
}
.nav-item:active {
    color: #0464d7 !important;
}
.nav-tabs .nav-link {
    border: none;
}
.ads {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.nav-link {
    color: #000;
}
.nav-link:hover {
    color: #0464d7 !important;
}
link.active {
    background-color: none !important;
}
.tabs {
    display: flex;
    gap: 20px;
}
.tag-div {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 5px;
}
.new {
    padding: 4px 8px;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;
    color: #f16666;
    background-color: #fff;
    border-radius: 5px;
}
.money {
    color: #000;
    font-size: 22px;
    font-weight: 700;
}
.name {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #000;
}
.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 {
    color: #0464d7 !important;
}
.tab-pane {
    border: none !important;
}
.navigation-numbers:hover {
    color: #0464d7 !important;
}
.page-item:first-child .page-link {
    border-radius: 100% !important;
}
.page-item:last-child .page-link {
    border-radius: 100% !important;
}
.city-ul {
    margin: 0 0 40px 0;
}
.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;
}
.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: #0464d7 !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: 0 !important;
}
.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;
}
.error {
    color: red;
    margin: 3px 0;
    font-size: 16px;
}
#mobil_filter {
    background-color: #0464d7;
    width: 100%;
    color: #fff;
}
.filters-spans {
    font-size: 14px;
    font-weight: 600;
    color: #5f787e;
    padding: 16px 15px 8px;
}
.btn-close {
    border: none !important;
    outline: 0 !important;
}
.filters-mobil-money {
    gap: 20px;
    align-items: center;
}
.brut {
    justify-content: center;
    gap: 20px;
    align-items: center;
}
.filters-mobil a {
    margin-right: 8px;
}
.filter-clear {
    font-size: smaller;
    font-weight: 600;
    color: #0464d7 !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: #0464d7 !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 .form-check {
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: space-between !important;
    padding-left: 0.86em !important;
    padding-bottom: 0.96em !important;
}
.mobile-selected-filters {
    font-size: small;
    font-weight: 500;
    color: #0464d7;
    overflow: hidden;
    margin-left: 12px;
    padding-top: 3px;
}
.about {
    flex-direction: column;
}
.legal_membership {
    flex-direction: column;
}
.margin-checkbox {
    margin-left: 20px;
}
.filter-button.absolute {
    position: absolute;
    bottom: 20px;
}
.filter-section {
    margin-bottom: 15px;
}
.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: 0.83em;
    margin-bottom: 0.83em;
}
.page-knowledge-p {
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #9099a1 !important;
}
.page-knowledge-span {
    font-weight: bolder;
}
.page-knowledge-link {
    font-size: 0.875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: #0464d7 !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: 0 0;
    border: none;
    text-align: left;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: 0;
}
.about-accordion-button:focus {
    box-shadow: none;
}
.about-accordion-body {
    padding: 15px;
    font-size: 14px;
    color: #555;
}
.about-icon {
    font-weight: 700;
    transition: transform 0.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;
}
.border-green {
    border: 1px solid #0464d7;
}
.price {
    font-size: 2rem;
    font-weight: 700;
    color: #132021;
}
.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-not-included {
    color: #a0aec0;
}
#publish-the-ad {
    position: relative;
    white-space: nowrap;
    height: 40px;
    padding: 11px 13px;
    border-radius: 4px;
    color: #fff;
    background-color: #0464d7;
    font-size: 14px;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.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: #0464d7;
    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;
}
.ad-dropdown::after {
    display: block !important;
}
.nav-link-2::after {
    display: none !important;
}
#myTab .nav-item {
    flex-direction: row;
    width: max-content !important;
}
#myTab .nav-item .nav-link.active {
    border-bottom: 3px solid #0464d7 !important;
}
#buy-advert-package .nav-item {
    flex-direction: row;
    width: max-content !important;
}
#myProfile .active {
    border-bottom: 1px solid #0464d7 !important;
    color: #0464d7 !important;
    border-left: 1px solid #0464d7 !important;
}
select {
    padding-right: 30px;
}
.no-arrow {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none !important;
}
.advert-checboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.form-check-input:checked[type="checkbox"] {
    background-color: #0464d7;
    border-color: #0464d7;
}
.description {
    color: #777;
    font-size: 14px;
    margin-top: 4px;
    text-align: start;
}
.turbo-card.selected {
    border: 2px solid #0464d7;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0.5);
    overflow-x: hidden;
    overflow-y: auto;
}
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    border-radius: 8px;
    max-width: 600px;
    position: relative;
    text-align: center;
}
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}
.open-btn {
    padding: 10px 20px;
    background-color: #e53935;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}
.modal {
    z-index: 1050 !important;
}
.modal-backdrop {
    z-index: 1040 !important;
}
#myModal h2,
#myModal p {
    color: #000;
}
.hero {
    background: #0f172a !important;
}
.listing-types {
    margin-top: 10px !important;
    padding-top: 10px !important;
    border-top: 1px solid #f8fafc !important;
    display: flex !important;
    justify-content: space-between !important;
}
@media (max-width: 1180px) {
    .sticky-top {
        position: relative;
        top: 0 !important;
    }
}
@media (max-width: 1180px) {
    .property-quick-info .d-flex:first-child {
        margin-bottom: 1rem;
    }
    .hero {
        padding: 2rem 0 3rem;
        min-height: 320px;
    }
    .header-buttons {
        gap: 0.5rem;
    }
    .btn-outline,
    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    .mobile-header-icons {
        display: flex;
        gap: 0.75rem;
    }
    .location-selector {
        display: flex;
    }
    .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: 0.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;
    }
    .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;
    }
    .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;
    }
    .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;
    }
    .text-start {
        text-align: center !important;
    }
    .benefits-section {
        display: none;
    }
    .modal-dialog {
        width: 95% !important;
        max-width: 400px;
        margin: 1rem auto !important;
    }
    .modal-content {
        border-radius: 12px;
    }
    .modal-body {
        max-height: 80vh;
        overflow-y: auto;
    }
    .modal-dialog {
        margin-top: 1vh !important;
        margin-bottom: 1vh !important;
    }
    .modal-content {
        max-height: 95vh;
        overflow-y: auto;
        border-radius: 10px;
    }
}
@media (max-width: 576px) {
    .card-body {
        padding: 1rem;
    }
    .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    .logo {
        font-size: 1.25rem;
        font-weight: 400;
    }
    .logo div {
        width: 10px !important;
        height: 10px !important;
        margin-right: 6px !important;
    }
    .header-container {
        height: 70px;
        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: 0.75rem 1rem;
        box-shadow: 0 -2px 10px rgb(0 0 0 / 0.1);
        z-index: 99;
        display: flex;
        justify-content: space-around;
        gap: 1rem;
    }
    .btn-outline,
    .btn-primary {
        text-align: center;
        padding: 0.75rem 0;
        border-radius: 10px;
        font-size: 0.875rem;
    }
    body {
        padding-bottom: 70px;
    }
    .hero {
        padding: 6rem 0 2.5rem;
        min-height: 280px;
    }
    .section-title h2,
    .stat-number {
        font-size: 1.5rem;
    }
    .section-title p {
        font-size: 0.875rem;
    }
    .location-selector {
        display: none;
    }
    .listing-types {
        flex-direction: column;
        gap: 4px;
    }
    .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;
    }
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .mobile-svg {
        width: 100% !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
    .mobile-svg > div {
        width: 100% !important;
        justify-content: start !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;
    }
    .announcement_stages {
        grid-template-columns: 1fr !important;
    }
    .mobile-svg {
        width: 100% !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
    .mobile-svg > div {
        width: 100% !important;
        justify-content: start !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: 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;
    }
    .reverse-mobile {
        flex-direction: row-reverse !important;
    }
    .mobile-footer-header {
        text-align: center !important;
    }
    .navbar-brand img {
        height: 24px;
    }
    .line {
        border: none !important;
        padding: 0 !important;
    }
    .auth-buttons {
        display: none !important;
    }
    .navbar-buttons {
        display: flex !important;
    }
    .legal_membership {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .margin-top {
        margin-top: 140px !important;
    }
    .my-5 {
        margin-top: 0 !important;
    }
}
@media (min-width: 1180px) {
    .tab-content {
        padding-block: 25px;
    }
    .col-lg-15 {
        flex: 0 0 20%;
        max-width: 20%;
    }
    .bottom-nav {
        display: none;
    }
}
@media (min-width: 577px) {
    .header-left {
        display: contents;
    }
}
@media (max-width: 1180px) {
    .nav-menu {
        gap: 1.5rem;
    }
    .categories-section .col-md {
        margin-bottom: 30px;
    }
    .profile {
        display: none !important;
    }
    .profile-mobile {
        display: flex;
        flex-direction: column !important;
        gap: 20px !important;
    }
    .messages {
        min-height: calc(100vh - 138px);
        height: auto !important;
    }
    .messages.right {
        min-height: calc(100vh - 88px);
        height: auto !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 {
        min-height: calc(100vh - 95px);
        height: auto !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;
    }
    .announcement_stages {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .profile {
        display: none !important;
    }
    .profile-mobile {
        display: flex;
        flex-direction: column !important;
        gap: 20px !important;
    }
    .messages {
        min-height: calc(100vh - 138px);
        height: auto !important;
    }
    .messages.right {
        min-height: calc(100vh - 88px);
        height: auto !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 {
        min-height: calc(100vh - 95px);
        height: auto !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 {
        min-height: calc(100vh - 95px);
        height: auto !important;
    }
    .message-container .tab-content .row.messages {
        height: 100% !important;
    }
    .margin-top {
        margin: 0 !important;
        margin-top: 80px !important;
        padding: 0 !important;
    }
}
@media (min-width: 1400px) {
    .mobile-menu-btn {
        display: none;
    }
    .mobile-menu-btn {
        display: none;
    }
    .mobile-menu-btn {
        display: none;
    }
}
@media (max-width: 360px) {
    .nav-item span {
        font-size: 0.7rem;
    }
    .nav-item span {
        font-size: 0.7rem;
    }
    .nav-item span {
        font-size: 0.7rem;
    }
    .bottom-nav {
        padding: 0 5px;
    }
}
@media (max-width: 1200px) {
    .user-no {
        display: none !important;
    }
    .sub_ads {
        flex-wrap: wrap !important;
    }
    .user-no {
        display: none !important;
    }
    .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;
    }
    .desktop-nav {
        display: none !important;
    }
    .favortrite-create {
        max-width: 100% !important;
    }
    .header {
        padding: 0.7rem;
    }
    .ads-div {
        max-width: 100% !important;
    }
    .header {
        padding: 0.3rem;
    }
    .desktop-nav {
        display: none !important;
    }
}
@media (max-width: 1180px) {
    .footer-container {
        margin-bottom: 100px;
    }
    .back-img-col {
        display: none !important;
    }
    .kaydol-modal {
        width: 100% !important;
        right: 0 !important;
    }
}
.footer-area .app-downloads {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    align-items: center;
}
.footer-area .app-link-a {
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle;
}
.footer-area .app-link-a:hover {
    transform: none !important;
}
.footer-area .app-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 145px !important;
    height: 46px !important;
    border: 1px solid #dedede !important;
    border-radius: 10px !important;
    gap: 10px !important;
    padding: 0 12px !important;
    background-color: #fff !important;
    box-sizing: border-box !important;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease !important;
}
.footer-area .app-link img {
    height: 22px !important;
    width: auto !important;
    max-width: 24px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}
.footer-area .app-link p,
.footer-area .app-link > p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #132021 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    display: block !important;
}
.footer-area .app-store {
    gap: 10px !important;
}
.footer-area .app-link-a:hover .app-link {
    transform: scale(1.03);
    border-color: #0464d7 !important;
}
@media (max-width: 1180px) {
    .footer-categories-desktop {
        display: none !important;
    }
    .footer-categories-mobile {
        display: block !important;
        background: #f8fafc;
        padding: 16px 0;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
    }
}
@media (min-width: 1180px) {
    .footer-categories-desktop {
        display: block !important;
    }
    .footer-categories-mobile {
        display: none !important;
    }
}
.profile-mobile .profile-item {
    display: flex;
    align-items: center;
    min-height: 50px;
    height: auto;
    padding: 12px 16px 12px 21px;
}
.profile-mobile .profile-item.home {
    align-items: center;
    min-height: 60px;
    height: auto;
}
.profile-mobile .profile-link {
    width: 100%;
    text-decoration: none;
    color: inherit;
}
.profile-mobile .profile-text {
    flex: 1;
    min-width: 0;
    align-items: center;
}
.profile-mobile .profile-item > p,
.profile-mobile .profile-text p {
    margin: 0;
    line-height: 1.3;
}
.profile-mobile .big-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.profile-mobile .big-svg svg {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 20px;
    max-height: 20px;
}
.profile-mobile .profile-ads .profile-item:not(.home) .profile-text {
    padding-left: 30px;
}
.profile-mobile .arrow-svg {
    flex-shrink: 0;
}
.profile-mobile .new {
    margin-left: 6px;
}
