/* Kleuren */
:root 
{
    --voorgrondkleurdonker: #333;
	--voorgrondkleurmiddel: #595959;
	--voorgrondkleurlicht: #AAA;
	
    --achtergrondkleurdonker: #666;
	--achtergrondkleurmiddel: #CCC;
	--achtergrondkleurlicht: #FFF;
}

/* Body */
HTML
{
	font-size: 16px;
}

@media only screen   
and (min-width: 1030px)   
and (max-width: 1450px)  
{
	HTML
	{
		font-size: 14px;
	}
} 

@media only screen   
and (min-width: 0px)   
and (max-width: 1030px)  
{
	HTML
	{
		font-size: 12px;
	}
} 

body
{
    background-color: var(--achtergrondkleurdonker);
	color: var(--voorgrondkleurdonker);
	font-family: Calibri, Arial, sans-serif;
}

/* Bootstrap en HTML overwrites */
img 
{
	aspect-ratio: attr(width) / attr(height);
}

.text-secondary, .text-muted, button, select, option
{
	font-size: 0.95rem !important;
}

h4
{
	font-size: 1.75rem;
}

h5
{
	font-size: 1.5rem;
}

sup 
{
    font-size: 0.8rem;
}

.text-secondary, .text-muted 
{
    color: var(--voorgrondkleurdonker) !important;
}

.card-footer
{
	font-size: 0.8rem !important;
}

.btn-group-xs > .btn, .btn-xs 
{
	padding: .25rem .4rem;
	font-size: .875rem;
	line-height: .75;
	border-radius: .2rem;
}

@media (pointer: coarse) 
{
  .btn {
    padding: .8em;
  }
}
/* Afbeelding in uitleg */
.uitleg-afbeelding
{
	width: 1.25vw;
	height: auto;
	border: 0.1vmin solid var(--bordkleurdonker);	
}

.uitleg-afbeelding-geen-rand
{
	width: 1.25vw;
	height: auto;
}

.uitleg-afbeelding-geen-rand-groot
{
	width: 5vw;
	height: auto;
}

/* Logo */
.logo
{
	width: 5vw;
	height: auto;
    margin-bottom: 10px;
    margin-left: 10px;
}

.paarseananaslogo
{
	width: 100%;
	height: auto;
	display: block;
}

/* Advertentie */
.doekoe-tabel
{
	width: 75%;
	margin-left: auto;
	margin-right: auto;
}

.doekoe
{
	width: 100%;
	height: auto;
	filter: grayscale(100%);
	transition: 0.5s;
}

.doekoe:hover
{
	filter: grayscale(10%);
	transition: 0.5s;
}

/* Links */
a
{
	font-size: inherit;
}

.link
{
	color: var(--voorgrondkleurmiddel);
	text-decoration: underline;
}

.link:hover
{
	color: var(--voorgrondkleurdonker);
	text-decoration: none;
}

.paarseananaslink
{
	color: var(--voorgrondkleurmiddel);
	text-decoration: underline;
}

.paarseananaslink:hover
{
	color: #C000C0 !important;
	text-decoration: none !important;
}

.paarseananaslinkhover
{
	color: #C000C0 !important;
	text-decoration: none !important;
}

/* Dropdowns */
select
{
	cursor: pointer;
}

option
{
	cursor: pointer;
}

/* Custom controls */
.custom-control-input:checked ~ .custom-control-label::before 
{
	color: #fff;
	border-color: #7B1FA2;
	background-color: #7B1FA2;
}

/* Switch */
.switch 
{
	position: relative;
	display: inline-block;
	width: 5vh;
	height: 2vh;
	vertical-align: -.2em;
	margin-bottom: .2rem !important;	
}

.switch input 
{ 
	opacity: 0;
	width: 0;
	height: 0;
}

.slider 
{
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--achtergrondkleurmiddel);
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before 
{
	position: absolute;
	content: "";
	height: 1vh;
	width: 1vh;
	left: 0.5vh;
	bottom: 0.5vh;
	background-color: var(--achtergrondkleurlicht);
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider 
{
	background-color: var(--achtergrondkleurdonker);
}

input:focus + .slider 
{
	box-shadow: 0 0 0px var(--achtergrondkleurdonker);
}

input:checked + .slider:before 
{
	-webkit-transform: translateX(3vh);
	-ms-transform: translateX(3vh);
	transform: translateX(3vh);
}

.slider.round 
{
	border-radius: 2vh;
}

.slider.round:before 
{
	border-radius: 50%;
}

/* Spinner */
.spinner-div
{
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.5);
	z-index: 10;
	transition: opacity .15s linear;
}

.spinner-div-hidden
{
    opacity: 0;
	height: 0;
}

.spinner-div-visible
{
	opacity: 1;
	height: 100%;
}

.spinner
{
	position: fixed;
	z-index: 1031;
	top: 50%;
	left: 54.16%;
	transform: translate(-50%, -50%);
	font-size: 5rem; 
	color: var(--bordkleurmiddellicht);
}



