/* general */

* {
	box-sizing: border-box;
	font-family: verdana;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
}

div.bubble {
    background-color: #fff;
    border: 4px solid #333;
    border-radius: 21px;
    font-family: sans-serif;
    line-height: 1em;
    margin: 28px 2.1rem;
    padding: 14px;
    position: relative;
    text-align: center;
    width: 210px;
}

div.tekstballon img {
    height: 7rem;
}

div.speech:before {
    left: 34px;
    bottom: -40px;
    border: 20px solid;
    border-color: #333 transparent transparent #333;
}
div.bubble:before, div.bubble:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
}
div.speech:after {
    left: 38px;
    bottom: -30px;
    border: 15px solid;
    border-color: #fff transparent transparent #fff;
}
div.bubble:before, div.bubble:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
}

/* copyright */

div.copyright {
    background: white;
	border: 1px solid black;
	bottom: 0;
	cursor: pointer;
	display: inline-block;
	margin: 0 0.5rem 0.5rem 0;
    opacity: 0.80;
	padding: 0.5rem;
	position: fixed;
	right: 0;
	vertical-align: top;
	z-index: 1024;
}

div.copyright img {
	max-height: 150px;
	max-width: 150px;
}

sup {
	vertical-align: top;
	font-size: 0.6em;
}


/* overlay */

#overlay {
    animation-fill-mode: forwards;
    background-color: rgba(0,0,0,0.6);
    bottom: 0;
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1;
}

.overlayout {
    animation-name: overlayoutannimation;
    animation-duration: 1s;
}

@keyframes overlayoutannimation {
    0%   { opacity: 1; z-index: 2; }
    99%  { opacity: 0; z-index: 2; }
    100% { opacity: 0; z-index: -2; }
}

#text{
    background: white;
    border: 25px solid gray;
    border-radius: 25px;
    padding: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    color: darkblue;
    transform: translate(-50%,-50%);
}

.titel {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.alinea {
    margin-top: 1rem;
}

/* voor de URL kopieer afbeelding */
img#KopieerURLAfbeelding {
	content:url('/art/copytoclipboard.png');
	cursor: pointer;
}

img#HelpAfbeelding {
	content:url('/art/help.png');
	cursor: pointer;
}

div.HelpDiafragmaBladDiv {
	background-color: #000000;
	opacity: 0.7;
	position: fixed;
	transition: height 1s, width 1s;
	transition-timing-function: cubic-bezier(.13,.56,0,.99);
	z-index: 10;
}

div.HelpTekstDiv {
	background-color: #ffffff;
	border: 1px solid black;
	border-radius: 1rem;
	left: 50%;
	opacity: 0;
	padding: 1rem;
	position: fixed;
	transform: translate(-50%, -50%);
	transition: top 1s, left 1s, height 1s, width 1s, opacity 3s;
	transition-timing-function: cubic-bezier(.2,.52,.25,.92);
	width: 25%;
	z-index: 101;
}

/* alles voor de tooltips */
.tooltip {
	position: relative;
	display: inline-block;
	font-weight: normal;
}

.tooltip .tooltiptext,
.tooltipsign .tooltiptext {
	visibility: hidden;
	width: 15rem;
	background-color: #666666;
	color: white;
	text-align: justify;
	border-radius: 6px;
	padding: 15px;
	font-style: normal;
	font-size: 9pt;


	/* Position the tooltip */
	position: absolute;
	z-index: 1;
	top: 100%;
	left: 50%;
	margin-left: -7.5rem;
}

.tooltip .tooltiptextgroot {
	width: 19rem;
}

.tooltiptextgroot li {
	margin-left: -1.6rem;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
	transition-delay:0.5s;
}

/* einde tooltips */

.clickable {
	cursor: pointer;
}