/* Style for tags */

body
{
	background: #DCD2CC;
	color: #383838;
}

a
{
	color: #125442;
}

/* Style for class */

:root 
{
  --max-column-breakpoint: 250px;
}

.head
{
	display: flex;
	flex-flow: row nowrap;
}

.container
{
	padding: 0 5% 1% 5%;
	height: auto;
	width: 100%;
	position: relative;
	text-align: center;
	justify-content: center;
}

.containerColumns
{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin-bottom: 2%;
}

.buttonTopLeft
{
	margin-left: 35px;
	margin-top: 35px;
}

.slideshowContainer
{
    width: 758px;
	height: 100%;
    position: relative;
    margin: 0 3%;
	flex: 0 0;
}

.hoverBox
{
	width: 26%;
	min-height: 400px;
    position: relative;
	margin: 3%;
	padding: 2%;
	text-align: center;
	color: white;
	background-color: rgba(0,0,0,0.8);
	word-break: break-all;
	white-space: normal;
	flex: 1 0 min(26%, var(--max-column-breakpoint));
}

.mapSlides
{
	display: none;
}

.prev, .next 
{
  cursor: pointer;
  position: absolute;
  top: 45%;
  width: auto;
  padding: 16px;
  color: white;
  background-color: rgba(0,0,0,0.8);
  font-weight: bold;
  font-size: 25px;
  user-select: none;
}

.prev 
{
  left: 0;
  border-radius: 0 3px 3px 0;
}

.next 
{
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover 
{
  background-color: black;
}

.text
{ 
  color: #f2f2f2;
  background-color: rgba(0,0,0,0.8);
  font-size: 20px;
  padding: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  text-align: center;
}

/* Tooltip container */
.tooltip 
{
  position: absolute;
  display: inline-block;
  width: 100%;
}

/* Tooltip text */
.tooltip .tooltiptext 
{
  visibility: hidden;
  color: white;
  text-align: center;
  word-break: keep-all;
  padding: 5px 0;
  opacity: 0;
  transition: opacity 1s;
     /* Position the tooltip text - see examples below! */
  position: absolute;
  left: 0;
  transform: translate(-50%, 0);
  z-index: 1; 
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext 
{
  visibility: visible;
  opacity: 1;
}

.tooltiptext
{
	padding: 5%;
	width: 90%;
}