*, :after, :before
{
	box-sizing: border-box;
}
body
{
	width: 100vw;
	max-width:100%;
	height: 100vh;
	font-family: 'Catamaran', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color:#2e4f6e;
	background-size: cover;
	background-position: top left;
	background-repeat: no-repeat;
	margin:0;
}

h1
{
	font-size: 45px;
	font-weight: 400;
	line-height: 1;
	color:#FFFFFF;
	text-align: center;
	text-shadow: 1px 4px 15px rgb(33, 55, 76);
	padding: 0;
	margin: 0;
}
h3
{
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	margin:0;
}
h4
{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	margin:0;
}

p
{
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	margin:0;
}

img
{
	max-width: 100%;
	height: auto;
}

p.open
{
	color:green;
	font-weight: 700;
}
p.closed
{
	color:#2e4f6e;
}

.mvtv-header
{
	height: 25vh;
	max-height: 25vh;
}
.mvtv-header-top
{
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
}
.mvtv-header-top > *
{
	display: grid;
	align-items: center;
	justify-content: center;
}
.mvtv-header-logo
{
	justify-content: start;
	padding-left: 30px;
}
.mvtv-header-logo > img
{
	width: 250px;
	max-width: 100%;
}
.mvtv-header-qr
{
	justify-content: end;
	align-items: start;
}

main
{
	height: 75vh;
	max-height: 75vh;
	overflow: hidden;
	position: relative;
}

.fader-item
{
	width: 100% !important;
	display: flex !important;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding:18px 30px;
	position: absolute !important;
}
.panel
{
	width: 100% !important;
	max-height: 100%;
	display: flex !important;
	flex-direction: row;
	justify-content: space-between;
	flex:0 0 calc((100% - 54px) / 3);
	background: #FFFFFF;
	border-radius: 9px;
	box-shadow: 0 10px 19px -10px rgb(33, 55, 76);
	overflow: hidden;
	margin:9px;
}
.panel-body
{
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	flex:1 0 65%;
	padding:24px 24px;
}
.panel-footer
{
	flex:1 0 35%;
}
.panel-footer-image
{
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}