
.social-icons {
    display: flex;
    margin-top: 10px;   
    margin-bottom: 15px;
}

.social-icons a {
    margin-right:6px;
    text-align: center;
}

.social-icons span {
    background-color: white;
    padding: 0;
}

.fa, .fa-brands {
    color: black;
    margin-right: 5px;
    font-size:18px;
}


.social-icon {
    margin-left: auto;
    margin-right: auto;
}

.website-icon,
.facebook-icon,
.instagram-icon,
.maps-icon,
.mail-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    background-color: white;
}

.website-icon:hover .website-tooltip,
.instagram-icon:hover .instagram-tooltip {
    opacity: 1;
}
.facebook-icon:hover .facebook-tooltip {
    opacity: 1;
}
.maps-icon:hover .maps-tooltip {
    opacity: 1;
}
.mail-icon:hover .mail-tooltip {
    opacity: 1;
}

.website-tooltip,
.facebook-tooltip,
.instagram-tooltip,
.maps-tooltip,
.mail-tooltip {
    background-color: gray;
    color: white;
    font-size: 12px;
    padding: 2px 4px;
    border-radius: 3px;
    position: absolute;
    bottom: -26px;
    opacity: 0;
    transition: opacity 0.15s;
    pointer-events: none;
    white-space: nowrap;
}

h4 a {
    font-size: 22px;
}

.header-section {
    background-color: black;
}

.blog-box {
    box-shadow: 4px 4px 8px rgba(0,0,0,0.1);
}

.form-inline .search-country {
    flex-direction:  column;
}

.input-form {
	display: flex;	
	width: 300px;
	height: auto;
	flex-direction: column;
	border: 1px solid #eb9cc8;
}

.input-item {
	display: flex;
	height: 30px;
}

.country-form {
    background: #fff none repeat scroll 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.3px;
    padding-bottom: 1.4rem;
    min-height: 50px;
    text-transform: none; 
	//border-bottom: 1px solid lightgrey;
}

.mainText {
    margin-bottom: 5px;
    text-align: justify;
}

.broken-link {
    width: 25px;
    position: absolute;
    top: 10px;
    right: 20px;
}

.sponsor-sticker {
    position: absolute;
    bottom: 0px;
    right: 0px;    
    width: 150px;
}

#map {
	height: 400px; /* The height is 400 pixels */
	width: 100%; /* The width is the width of the web page */
	margin-top: 10px;
	margin-bottom: 10px;
} 

.map {
	display: none;
}

.loadeffect {
	animation: load-effect 400ms ease-out;
}

@keyframes load-effect {
	0% {
		transform: translateX(100%);
		opacity: 0;
	}
	
	50% {
		opacity: 0.2;
	}
	
	100% {
		transform: translateX(0);	
		opacity: 1;
	}
}

.reveal {
	position: relative;
	transform: translatey(150px);
	opacity: 0;
	transition: All 1s ease;
	scale: 0.75;
	rotate: -5deg;
	animation-fill-mode: forwards;
}

.reveal.active {
	transform: translatey(0px);
	opacity: 1;
	scale: 1;
	rotate: 0deg;
}

.blog {
	font-size: 1.4em;
}

.cityName {
	margin: 0;
	margin-right: 10px;
}

.weatherLogo img {
	width: 40px;
}

.cityAndWeather {
	margin-top: 25px;
	margin-bottom: 15px;
	display: flex;
	gap: 5px;
	align-items: flex-end;
}

/*BANNERS*/

   /* Container met vaste verhouding */
    .sponsor-slider {
      width: 100%;
      max-width: 800px;
      aspect-ratio: 6 / 1;
      margin: 0px auto;
      position: relative;
      overflow: hidden;
      background: #000;
    }
    
    .your-banner {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        margin-top: 5px;
        align-items: center;
    }
    
    .your-banner a {
        text-decoration: none;
    }
    
    .your-banner a:hover {
        color: #124578;
    }
    
    .banner-link p {
        font-weight: 600;
        padding: 5px 10px;
        border: solid black 1px;
        border-radius: 5px;
        margin-bottom: 0px;
        color: black;
        background-color: #eeeeee;
    }

    .banner-link:hover p {
        color: #f26a92;       /* kleur bij hover */
        background-color: #ffffff;
    }

    
    /* Slides liggen boven elkaar */
   .sponsor-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 0; /* standaard onderaan */
    }

    /* Actieve slide bovenaan */
    .sponsor-slide.active {
      opacity: 1;
      z-index: 1;
    }
    
    /* Afbeeldingen netjes binnen kader */
    .sponsor-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #000; /* voorkomt flikkering */
    }





