* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

  .popup-word {
   position: absolute;
   cursor: pointer; 
  }
    
   .popup {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: left;
    padding: 4px;
    border-radius: .5em;
    position: absolute;
    top: -1500%;
    left: 100%;
    /*transform: translate(-50%);*/
    z-index: 1000;
	transition: opacity 3s ease;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	opacity: 0.98;
	   width: 350px;
  }

.popup img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 8px;
}

.popup-word:hover .popup,
.hover-trigger:focus + .popup {
  opacity: 1;
  visibility: visible;
  aria-hidden: false;
}
/* start video player popup style*/

.hover-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* end video player popup style*/

/* start cookies popup style*/

   #cookieConsent {
  position: fixed;
  bottom: 0;
  left: 26.79%;
  width: 46.4%;
  background: #333;
  color: #fff;
  padding: 16px;
  text-align: center;
  z-index: 1000;
  border-radius: .5em;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  opacity: 0.8;
  transition: opacity 3s ease;
}

#cookieConsent a {
  color: #4fc3f7;
  text-decoration: underline;
}

#acceptCookies {
  margin-left: 10px;
  padding: 8px 16px;
  background: #4fc3f7;
  border: none;
  color: #fff;
  cursor: pointer;
}

#rejectCookies {
  margin-left: 10px;
  padding: 8px 16px;
  background: #ddbd07;
  border: none;
  color: #fff;
  cursor: pointer;
}