html {
	width: 100%;
	height: 100%;
}

body {
	width: 100%;
	height: 100%;
	color: black;	
}

.imgIcon {
	height: auto;
	width: 90%;
	max-height: 15vh;
}

.col-4 {
	padding: 0.3em;
}
.m {
	margin: 0.5em;
	border-radius: 1em;
	display: flex;
}

input {
	width: 8ch;
}

button {
	width: calc(100% - 1em);
}

.blink_me {
  animation: blinker 1s linear 3;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);	
}

.wlan {
	position: absolute;
    width: 75vw;
    height: 75vh;
    top: 50%;
    left: 50%;
    z-index: 20;
    background-color: white;
    border-radius: 2em;
    transform: translate(-50%, -50%);
	border: 1px solid black;
	display: none;
}

.wlan_close {
	position: absolute;
	top: 2vh;
	right: 2vw;
}

.wlan_text {
	position: relative;
    top: 5vh;
    left: 5vw;
    width: calc(100% - 10vw);
    height: calc(100% - 10vh);
	display: none;
}

.wrap {
	height: auto;
    background-image: url("background_h.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(255,255,255,0.6);
    background-blend-mode: lighten;
	background-attachment: fixed;
}

.col-5 {
	min-width: 150px;
}

* {
	hyphens: auto;	
}
.btn-outline-info {
	color: black;
}
