select#city {
	border: 0px;
	outline: 0px;
	font-size: 12px;
	cursor: pointer;
}
select#city option {
	font-size: 14px;
	padding: 10px 15px;
	color: #424242;
}
select#city option:checked, select#city option:hover {
    color: #FFA000;
	background: none;
}
.uc-newsBlock .t404__col{
  border: 1px solid #4f95a6;
  border-radius: 25px;
  padding: 10px
}
.uc-newsBlock .t-col_4 {
    max-width: 337px;
}
.card-info .value {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
}
.uc-form img{
        border-radius: 20px;
}
  .city-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .city-popup {
          font-family: 'Manrope', Arial, sans-serif;
    background: #fff;
    border-radius: 10px;
    padding: 30px 40px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
  }

  .city-popup h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
  }

  .city-group {
    margin-bottom: 30px;
  }
    div.city-item{
        cursor: default;
    }
    div.city-item:hover {
    background: #f5f5f5;
    color: unset;
}
  .city-group-title {
    font-weight: 600;
    font-size: 18px;
    margin: 10px 0;
    color: #444;
    text-align: left;
  }

  .city-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
  }

  .city-item {
    background: #f5f5f5;
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: center;
  }

  .city-item:hover {
    background: #ffa30c;
    color: #fff;
  }

  .city-item.active {
    background: #ffa30c;
    color: #fff;
    font-weight: bold;
  }

  .city-close {
    display: block;
    margin: 20px auto 0;
    background: none;
    border: none;
    color: #ffa30c;
    cursor: pointer;
    font-size: 16px;
  }

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

  .city-open-btn {
    cursor: pointer;
    border: none;
    background: #6da8b6;
    color: #fff;
    /*padding: 8px 16px;*/
    border-radius: 6px;
  }
    .city-item.hide{
        display: none !important;
    }
  .city-open-btn:hover {
    background: #ffa30c;
  }
  #allrecords a.city-item {
    color: #222;
  }