@charset "utf-8";

#cookie-consent {
  position: fixed; /* Zorg ervoor dat de cookiemelding altijd boven de pagina zweeft */
  bottom: 0; /* Plaats het vast aan de onderkant van het scherm */
  left: 0;
  right: 0;
  background-color: #000;
  color: #fff;
  padding: 10px;
  text-align: center;
  display: none; /* Zorg ervoor dat het verborgen is totdat de gebruiker een keuze maakt */
  z-index: 9999; /* Dit zorgt ervoor dat de cookiemelding altijd boven andere elementen komt */
}


/* Scroll-container and other styling */
.container-fluid {
    background-color: #FFFFFF;
}

body {
    background-color: #EEFDFF;
}

.container {
    background-color: #FFF;
}

.tip-box {
    background-color: #f9f9f9;
    border-left: 5px solid #f68e1f;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    white-space: nowrap;
    gap: 10px;
    padding: 10px;
    width: 80%;
    scrollbar-width: none;
    position: relative;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-container img {
    flex: 0 0 auto;
    width: 250px;
    height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    scroll-snap-align: start;
    cursor: grab;
}

.item {
    flex: 0 0 auto;
    min-width: 250px;
    height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    scroll-snap-align: start;
}

.item-name {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px 15px;
    border-radius: 5px;
    width: 80%;
}

/* Move the sidebar toggle button outside of the navbar */
.menu-toggle {
    position: fixed;   /* Position it fixed on the left side */
    top: 50%;   /* Adjust the top position to your liking */
    left: 20px;        /* Keep it on the left side of the screen */
    font-size: 30px;   /* Adjust the icon size */
    z-index: 1000;     /* Ensure it stays on top */
    cursor: pointer;
}

/* Optionally, make sure the navbar doesn't interfere with the menu toggle */
.navbar {
    z-index: 999; /* Make sure the navbar is under the menu toggle */
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 10;
}

.scroll-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.left {
    left: 10px;
}

.right {
    right: 10px;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    width: 300px; /* Pas de grootte aan naar wens */
    display: block;
}

   .custom-image-container {
            position: relative;
            display: inline-block;
        }

        .custom-image-container img {
            width: 100%; /* Zorgt ervoor dat de afbeelding responsief blijft */
            display: block;
            border-radius: 5px;
        }

        .hover-text {
            display: none;
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            white-space: nowrap;
        }
.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    width: 300px; /* Pas de grootte aan naar wens */
    display: block;
}

.image-container .hover-text {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
}

.image-container:hover .hover-text {
    display: block;
}

.china-checklist {
    list-style: none; /* Verwijdert standaard bolletjes */
    padding: 0;
}

.china-checklist li {
    position: relative;
    padding-left: 25px; /* Ruimte voor het vinkje */
    font-size: 18px; 
}

.china-checklist li::before {
    content: "✓"; /* Rood China-stijl vinkje */
    color: #FFD700; 
    font-weight: bold;
    position: absolute;
    left: 0;
}

ul.contact-list
			{
				list-style: none;
			}

ul.contact-list li {
					  margin-bottom: 10px; /* Ruimte tussen de items */
  font-size: 16px; /* Optioneel, stel de lettergrootte in */
}

ul.contact-list li i {
  margin-right: 10px; /* Ruimte tussen het icoon en de tekst */
  color: #f39c12; /* Kies een kleur voor de iconen, bijvoorbeeld goudkleurig */
}

/*Formulier stijling*/
/* Algemeen formulier styling */
form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #f39c12;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #e67e22;
}

textarea {
  resize: vertical;
}

@media (max-width: 768px) {
    .sidebar-icon {
        top: 10px; /* Pas de positie aan voor mobiele schermen */
        left: 50%;  /* Plaats het icoon in het midden */
        transform: translateX(-50%); /* Center het icoon exact */
    }
}