.theme-picker {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 12px;

  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.text-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;      /* număr de rânduri */
  -webkit-box-orient: vertical;
  overflow: hidden;
   text-overflow: ellipsis;
}

.text-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* număr de rânduri */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;      /* număr de rânduri */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.theme-chip {
  display: flex;
  align-items: center;
  gap: 10px;

  cursor: pointer;
  border: none;
  background: none;
  padding: 6px 8px;
  border-radius: 10px;

  transition: background 0.2s;
}

.theme-chip:hover {
  background: transparent;
}

.theme-chip.is-active {
  background: transparent;
}

.theme-chip:hover .theme-swatch {
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.theme-chip.is-active .theme-swatch {
  box-shadow: 0 0 0 3px rgba(0,0,0,0.14);
}


.theme-swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
    overflow: hidden;
  background-clip: padding-box;
}

.theme-label {
  font-size: 13px;
  text-transform: capitalize;
  color: #222;
}

.google-map {
  width: 100%;
  height: 450px;
  border-radius: 16px;
}

#top-menu-new{
	margin-top: 20px;
}
#top-menu-appointment{
	margin-top: -10px;
	color: #fff;
}
	
@media (max-width: 991px) {
	#top-menu-new{
		margin-top: 0px!important;
	}
	#top-menu-appointment{
		margin-top: 0px!important;
	}
}
