﻿.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›"; /* separator */
    padding: 0 0.5rem;
    color: #6c757d; /* medium grey separator */
}

.breadcrumb a {
    text-decoration: none;
    color: #495057; /* dark grey links */
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: #343a40; /* darker grey on hover */
}

.breadcrumb-item.active {
    color: #6c757d; /* active item color */
    font-weight: 600;
}




/* ===============================
   LIST WITH CHECK ICONS (NO FA)
================================ */

.list-with-icons {
    list-style: none;   /* remove default bullets */
    padding-left: 0;
    margin-left: 0;
}

.list-with-icons li {
    position: relative;
    padding-left: 2rem; /* space reserved for the icon */
    margin-bottom: 0.4rem;
}

/* CSS-generated checkmark icon */
.list-with-icons li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.15em;

    width: 1.5rem;
    text-align: center;

    color: #2e7d32;     /* green */
    font-weight: 700;
    font-size: 1rem;
}








#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    color: white;
    background-color: #0d6efd;
    cursor: pointer;

    display: flex;            /* center icon */
    align-items: center;      /* vertical centering */
    justify-content: center;  /* horizontal centering */

    opacity: 0;               /* hidden by default */
    pointer-events: none;     /* disable interaction when hidden */
    will-change: transform, opacity; /* GPU optimization */
    
    /* Minimal shadow for mobile performance */
    box-shadow: 0 2px 5px rgba(0,0,0,0.25);
    transition: opacity 0.2s ease, background 0.3s ease;
}

#scrollTopBtn.visible {
    opacity: 1;
    pointer-events: auto;
}

#scrollTopBtn:hover {
    background-color: #0056b3;
}



@media (hover: none) {
    #scrollTopBtn:hover {
        transform: none;
        background-color: #0d6efd;
    }
}



#main_nav_desktop,#main_nav_mobile{
    background-repeat: repeat-x;
	border-radius: 4px;
	background-image: linear-gradient(to bottom,#fff 0,#f8f8f8 100%);
}





/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;

  background: #222;
  color: #fff;
  padding: 15px 20px;

  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.cookie-banner.show {
  display: flex;
}

.cookie-text {
  max-width: 900px;
}

.cookie-link {
  color: #4fc3f7;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.cookie-accept {
  background: #4fc3f7;
  color: #000;
}

.cookie-reject {
  background: #555;
  color: #fff;
}

.cookie-btn:hover {
  opacity: 0.9;
}
