@import url(https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&display=swap);
#qwik-image-warning-container {
  display: none;
}
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
picture {
  display: block;
}
body {
  margin: 0;
  padding: 0;
  color: var(--black);
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
object {
  pointer-events: none;
}
ul,
p {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}
ol {
  padding: 0 0 0 18px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: unset;
}
option,
select {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
}
a {
  text-decoration: none;
  color: var(--black);
}
button {
  background: none;
  border: none;
}
input {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

:root {
  --black: #000;
  --white: #fff;
  --bgGrey: #eff1f6;
}

/* body {
  background-color: var(--bgGrey);
} */

.general-root {
  background: #EFF1F6;
  padding: 20px;
  height: 100vh;
  display: flex;
  gap: 19px;
}
.general-root.bgGray {
  background: #F8F8F8;
}

.not-found-data {
  text-align: center;
}

.main-root {
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: auto;
  border-radius: 20px;
  padding-right: 8px;
  position: relative;
}

.main-root::-webkit-scrollbar {
  width: 8px; 
}

.main-root::-webkit-scrollbar-thumb {
  background: #ccc; 
  border-radius: 4px;
  margin-right: 2px; 
}

.main-root::-webkit-scrollbar-track {
  background: transparent;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 4px;
  /* margin: 61px 0 0 0; */
}
.pagination-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #EFF1F6;
 display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.pagination-btn.active {
  background: #7E8EA2;
}


.side-menu-root {
    max-width: 233px;
    padding: 32px 8px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 233px;
}

.side-menu-block {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.side-menu-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 6px;
   
    
}




.side-menu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-menu-item:hover {
    background: var(--bgGrey);
}

.side-menu-item.active {
    background: var(--bgGrey);
}

.quit-block {
    padding: 8px 10px;
    align-items: center;
    display: flex;
    border: 1px solid var(--bgGrey);
    border-radius: 10px;
    width: fit-content;
    cursor: pointer;
    margin: 0 0 0 12px;
}
.quit-block span {
    color: #7E8EA2;
    font-size: 11px;
}
.quit-block svg {
    margin-right: 6px;

}

.side-menu-item a {
    padding: 13px 9px;
    display: flex;
    width: 100%;
}
.side-menu-item a img {
    margin: 0 18px 0 0;
}

.side-menu-item a span {
    color: #7E8EA2;
    font-size: 16px;
    font-weight: 600;
}
.side-menu-item a span .unread-count {
    color: red;
    margin-left: 4px;
}
.side-menu-logo {
    margin-bottom: 42px;
    display: flex;
    justify-content: center;
}
.side-menu-logo img {
    width: 137px;
}


@media (max-height: 800px) {
   .side-menu-list{
    max-height: 500px;
    overflow: auto;
   }
}

.add-card-block {
    display: flex;
    justify-content: end;
    align-items: center;
}

.add-card-link {
    padding: 8px;
    background: #EFF1F6;
    border-radius: 8px;
    display: flex;
    width: 32px;
    height: 32px;
}
.search-root {
    padding: 16px 34px;
    border-radius: 20px;
    background: var(--white);
    display: flex;
    justify-content: end;
}

.search-input-block {
    display: flex;
    align-items: center;
    flex: 1 1;
    justify-content: space-between;
    padding-right: 16px;
    border-right: 1px solid #DDDDDD;
}
.search-input-block input {
    width: 100%;
    margin: 0 24px;
    padding: 13px;
}


.notification-bar {
    padding: 12px;
    border-radius: 12px;
    background: var(--bgGrey);
}
.search-profile {
    display: flex;
    padding-left: 16px;
}
.search-profile-photo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-right: 10px;
}

.search-profile-name {
    display: flex;
    align-items: center;
}
.messages-table-root {
    display: flex;
    margin: 24px 0 0 0;
    flex-direction: column;
}

.messages-left {
    display: flex;
    align-items: center;
}

.messages-left img {
    margin: 0 10px 0 0;
}

.messages-head-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 0 24px 0;
}
.messages-left span {
    font-size: 14px;
    color: #7E8EA2;
    font-weight: 700;
}

.messages-table {
    border-radius: 20px;
    background:var(--white);
    padding: 33px 30px;
    position: relative;
}
.messages-info {
    display: flex;
        width: 100%;
        gap: 21px;
        align-items: center;
        justify-content: space-between;
}
.messages-profile {
    min-width: 66px;
    min-height: 66px;
    border-radius: 50%;
    background-color: #EFF1F6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 21px;
}
.messages-info-container {
    display: flex;
    flex-direction: column;
    gap: 21px;
}
.messages-edit {
    cursor: pointer;
}
.messages-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DADEE8;
    padding: 21px 0;
}
.messages-item:first-child {
    padding:  0 0 21px 0;
}
.messages-profile span {
    font-size: 22px;
    color: #7E8EA2;
    font-weight: 600;
}
.messages-info-name {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
}

.messages-info-name .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #D9D9D9;
}
.dashboard-dot{
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #D9D9D9;
    display: none;
    align-self: end;
}
.dashboard-dot.notReaded {
    background:#53B567;
}
.messages-info-name span:first-child {
    font-size: 18px;
    color: #292929;
}
.messages-info-name span {
    font-size: 14px;
    color: #292929;
}
.messages-info-name .messages-info-name-time{
    display: none;
}
.messages-info-address {
    color: #606D7D;
    font-size: 16px;
    font-weight: 700;
}
.messages-info p {
    font-size: 14px;
    color: #606D7D;
}
.messages-info-date span {
    color: #AEB8C5;
    font-size: 13px;
    font-weight: 500;
}
.messages-info-date span:first-child {
    margin: 0 8px 0 0;
}
.messages-table-root.dashboard{
    flex: 1 1;
}
.dashboard .messages-info-container{
    width: 100%;
    gap: 4px;
}
.dashboard .messages-info-name{
    justify-content: space-between;
}
.dashboard .messages-info-name span{
    display: none;
}
.dashboard .messages-info-name span:first-child{
    display: block;
}
.dashboard .messages-info-name .messages-info-name-time{
    display: block;
}
.dashboard .messages-info-msg{
    display: none;
}
.dashboard .messages-info-date{
    display: none;
}
.dashboard .messages-edit{
    display: none;
}
.dashboard .dashboard-dot{
    display: block;
}
.inline-search {
    position: relative;
}
.inline-search input{
    padding: 10px 44px 10px 16px;
  border-radius: 12px;
  width: 251px;
  font-size: 12px;
  color: var(--black);
}
.inline-search input::placeholder {
    color: #D6D9E2;
    font-size: 12px;
    font-weight: 600;
}
.inline-search-icon {
    position: absolute;
    right: 4px;
    top: 4px;
    padding: 8px;
    border-radius: 8px;
    background: #7E8EA2;
    width: 32px;
    height: 32px;
   
}
.filter-block {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 32px 0 0 0;
    position: relative;

  }
  
  .filter-button {
    background: var(--white);
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
  }
  
  .filter-button span {
    margin: 0 4px 0 0;
    color: var(--black);
  }
  
  .filter-button svg {
    transition: ease-in 0.2s;
  }
  .filter-button.active svg {
    transform: rotate(180deg);
  }
  .dropdown-content {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 6px;
    position: absolute;
    top: 45px;
    background: white;
    z-index: 3;
    gap: 6px;
  }
  .dropdown-content label {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #757575;
    cursor: pointer;
  }
  .dropdown-content label input[type="number"] {
    background-color: #f5f5f5; /* Hafif gri bir renk */
    border-radius: 8px; /* Kenarların yuvarlaklaştırılması */
    padding: 10px;
  }
  .cityDistrict {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #fff; /* Beyaz arka plan */
    border: 1px solid #ddd; /* İnce gri kenarlık */
    border-radius: 8px; /* Yuvarlatılmış köşeler */
    padding: 16px; /* İç boşluk */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
    position: absolute; /* Diğer içeriklerin üstünde görünmesi için */
    z-index: 10;
    width: 400px; /* Genişlik */
  }
  
  .cityDistrict .city-list, .cityDistrict .district-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .cityDistrict .city-list {
    border-right: 1px solid #f5f5f5;
    width: 100%;
    padding-right: 4px;
  }
  .city-list.no-bor {
    border: none;
  }
  .cityDistrict .district-list {
    width: 100%;
    padding-right: 4px;
    margin-left: 16px;
  }
  .cityDistrict .dropdown-title {
    font-size: 14px;
    font-weight: bold;
    color: #292929;
    margin-bottom: 8px;
  }
  .city-district-bl {
    display: flex;
    justify-content: space-between;
  }
  .cityDistrict .dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: 14px;
    color: #292929;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cityDistrict .dropdown-item:hover {
    background-color: #f5f5f5; /* Hover rengi */
  }
  
  .cityDistrict .dropdown-item.selected {
    background-color: #e6f7ff; /* Seçili arka plan rengi */
    font-weight: bold;
  }
  
  .cityDistrict .dropdown-item .checkmark {
    font-size: 14px;
    color: #007bff; /* Tik işaretinin rengi */
  }
  
  .cityDistrict .divider {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 8px 0;
  }

  .city-list-bl,.district-list-bl {
    max-height: 340px;
    overflow: auto;
  }
  .city-list-bl,.district-list-bl{
    padding-right: 16px;
  }


  .filter-warning-text {
    color: var(--black);
    margin-top: 24px;
  }
.input-item {
    width: 100%;
    position: relative;
}
.input-item.add-collection-input{
  margin: 0;
  width: 30%;
}
.input-item.add-collection-input input{
  padding: 10px;
}
input[type="datetime-local"] {
  cursor: pointer;
}
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
.input-item input {
   
    border: solid #e0e0e0 1px;
    border-radius: 12px;
    padding: 20px;
    font-size: 16px;
    width: 100%;
    background-color: var(--white);
}
.input-item.dsb input{
  pointer-events: none;
  opacity: 0.6;
  background: #dddddd;
}
.input-item.estate input {
  padding: 12px;
}
.input-item.none input {
  display: none;
}
.input-item.estate.dsb input {
  pointer-events: none;
    opacity: 0.6;
    background: #dddddd;
}
.input-item.mand label {
  font-weight: 600;
}

.input-item.estate:first-child {
  margin: 32px 0 0 0;
}
.input-item.estate.dt {
  margin: 0;
}
.input-item.estate.dt:first-child {
 margin: 0;
}
.input-item input[type="password"] {
   
    border: solid #e0e0e0 1px;
    border-radius: 12px;
    padding: 20px;
    font-size: 16px;
    width: 100%;
    background-color: var(--white);
}
.input-item label{
    font-size: 14px;
    color: var(--darkBlue);
    font-weight: 500;
    display: block;
    text-align: left;
    white-space: nowrap;
    margin: 0 0 6px 0;
}
.input-item.err input {
    border: solid #c11111 1px;
}
.input-item.err input[type="password"] {
    border: solid #c11111 1px;
}

.input-item {
    margin-top: 20px;
}
.input-item.default {
  margin-top: 0;
}
.input-item.default input {
  padding: 12px;
}
.form-cnt {
    width: 100%;
    margin-top: 36px;
    position: relative;
}
.form-cnt.auction{
  margin-top: 0;
}
.form-cnt.enter-code {
    width: 100%;
    margin-top: 36px;
}
.err-text {
    margin-top: 5px;
    font-size: 12px;
    color: #c11111;
    position: absolute;
    left: 0;
    bottom: -16px;
}
.err-text.login-err {
  bottom: -36px;
}
.err-text.verify-error {
  bottom: 126px;
}


.checkbox-item{
    margin-top: 20px;
  }
  .checkbox-item input{
    display: none;
  }
  .checkbox-item label{
    position: relative;
    cursor: pointer;
  }
  .checkbox-item label span{
    display: block;
    font-size: 14px;
    line-height: 24px;
    padding-left: 30px;
    color: #56727f;
  }
  .checkbox-item label a{
    text-decoration: underline;
    color: #56727f;
  }
  .checkbox-item label::before{
    content: "";
    position:absolute;
    width: 22px;
    height: 22px;
    outline: 1px solid #56727f;
    border-radius: 4px;
    left: 0;
    top: 0;
    background-color: white;
  }
  .checkbox-item input:checked + label::before{
    background-color: #3182ce;
    outline: 1px solid #3182ce;
    border-radius: 4px;
  }
  .checkbox-item input:checked + label::after{
    content: "";
    position: absolute;
    border-bottom: 2.5px solid white;
    border-right: 2.5px solid white;
    border-top: none;
    left: 8px;
    top: 10px;
    transform: translateY(-50%) rotate(45deg) scale(1);
    width: 5px;
    height: 10px;
    border-radius: 0;
  }
.enter-code {
  display: flex;
  gap: 10px;
}
.enter-code .input-item input {
  height: 96px;
  line-height: normal;
  padding: 16px;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
}
.file-input{
  flex: 1 1;
}


.adver-blocks {
  display: flex;
  gap: 20px;
}

.adver-information , .adver-photo,.adver-file {
  background: var(--white);
  border-radius: 20px;
}

.adver-information {
  width: 100%;
  padding: 32px;
}
.adver-files {
  width: 100%;
  max-width: 447px;
}

.adver-information h3 {
  padding: 0 0  32px 0;
  border-bottom: 1px solid #EFF1F6;
  color: #7E8EA2;
  font-size: 18px;
  font-weight: 700;
}

.continue-btn-blck {
  display: flex;
  margin: 24px 0 0 0;
  justify-content: end;
}

.estate-features-item {
  background: var(--white);
  border-radius: 20px ;
  padding: 24px;
  margin-top: 32px;
}

.estate-featues-container {
  margin: 24px 0 0 0;
}
.estate-features-title {
  color: #7E8EA2;
  font-size: 18px;
  font-weight: 700;
  padding: 0 0 24px 0;
  border-bottom: 1px solid #EFF1F6;
}

.thanks-page {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.thanks-page h1 {
  font-size: 34px;
  font-weight: 700;
  color: #7E8EA2;
}

.thanks-page p {
  font-size: 26px;
  color: #7E8EA2;
  font-weight: 500;
  text-align: center;
}

.pages-detail-form {
  border-radius: 20px;
  padding: 32px;
  background: var(--white);
  margin: 24px 0 0 0;
}
.pages-detail-title {
  padding: 0 0 32px 0;
  border-bottom: 1px solid #EFF1F6;
  max-width: 602px;
}

.pages-detail-form-block {
  margin: 12px 0 0 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.pages-detail-form-left,.pages-detail-form-right {
  width: 50%;
}
.pages-detail-form-right {
  margin-top: 24px;
}
.pages-detail-form-btn-blck {
  display: flex;
  justify-content: end;
  width: 100%;
}
.pages-detail-form-btn-blck svg {
  margin-right: 6px;
}

.members-form-container {
  padding: 32px;
  background: var(--white);
  border-radius: 20px;
  margin: 20px 0 0 0;
}
.members-form-container h2 {
  padding-bottom: 32px;
  border-bottom: 1px solid #EFF1F6;
}
.members-head {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 32px 0 0 0;

}
.members-head span {
  color: #7E8EA2;
  font-size: 14px;
  font-weight: 700;
}
.login {
  display: flex;
  width: 100%;
  height: 100vh;
}
.login__cnt {
  background: var(--bgGrey);
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login__block {
  max-width: 480px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.login__block img {
  width: 324px;
}
.login__cnt h1 {
  font-size: 34px;
  font-weight: 600;
  margin: 10vh 0 0;
}
.login__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  margin-top: 34px;
}
.login__info {
  color: #7e8ea2;
  text-align: center;
  align-items: end;
  margin-top: 10vh;
}

.property-block {
    width: 100%;
    margin:32px 0 30px 0;
}

.progres-steps-container {
    overflow-x: auto;
    overflow-y: hidden; 
    width: 100%;
    scrollbar-width: thin;
    scrollbar-color: #c0c0c0 transparent;
    padding-bottom: 10px;
}
.progres-steps-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 24px 0 0 0;
    gap: 48px;
}

.circle-tick{
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-tick.active {
    background: #53B567;
}
.circle-block {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 117px;
}
.progress-steps-item:last-child{
    width: fit-content;
}
.progress-steps-item {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    gap: 64px;
    min-width: 200px;
}
.border {
    width: 100%;
    border:1px solid #7E8EA257
}

.circle-block-text {
    color: #7E8EA2;
    font-size: 12px;
    font-weight: 700;
}
.circle-block-text.textB {
    color: #292929;

}
.border.act {
    border: 1px solid #53B567;
}
@media (max-width: 1400px) {
    .progres-steps-block {
        gap: 32px;
    }
    .progress-steps-item {
        gap: 32px;
    }
 }
@media (max-width: 1268px) {
    .progres-steps-block {
        gap: 16px;
    }
    .progress-steps-item {
        gap: 16px;
    }
 }
