/* Theme Name: Settlements Theme	
   Author: RENDART
   Version: 2.1.8
*/

.phone-link {
  cursor: pointer;
  text-decoration: none;
}

.phone-link .show-number-text {
  text-decoration: underline;
	  cursor: pointer;
}

.phone-link:hover .show-number-text {
  text-decoration: none;
}

/* Overlay */
#cookie-notice {
  position: fixed !important;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); 
  z-index: 999999;
  display: flex !important;
  align-items: center;
  justify-content: center;
	
}

#cookie-notice.cookie-notice-visible.cookie-revoke-hidden {
background-color:  rgba(0, 0, 0, 0.55) !important;	
}

/* White modal box */
#cookie-notice .cookie-notice-container {
  max-width: 900px;
  width: calc(100% - 32px);
  padding: 48px;
  background: #ffffff;
  color: #000;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  position: relative;
}

/* Text */
#cn-notice-text {
  font-size: 22px;
  line-height: 1.7;
  margin-bottom: 40px;
  display: block;
}

/* Buttons */
#cn-notice-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

#cn-notice-buttons .cn-button {
  font-size: 18px;
  padding: 18px 36px;
  border-radius: 8px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  text-decoration: none;
  transition: all 0.2s ease;
}

#cn-accept-cookie {
  background: #000 !important;
  color: #fff !important;
}

#cn-accept-cookie:hover {
  opacity: 0.85;
}

#cn-more-info:hover {
  background: #f2f2f2;
}

#cn-close-notice {
  display: block;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

#cn-close-notice::before,
#cn-close-notice::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: #000;
}

#cn-close-notice::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#cn-close-notice::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#cn-close-notice:hover {
  opacity: 0.6;
}

/* Hidden state */
#cookie-notice.cookie-notice-hidden {
  display: none !important;
}