/*
	.branding is a special class applied to the root element that is not used in any system CSS.
	Use it to reassure higher priority of the style in case of conflict.
*/

.branding .dp2-login {
	background: url('background.png');
	background-size: cover;
	background-position: center;
}

.branding .kiosk-screenshot-wrapper {
	text-align: center;
}

.branding .kiosk-screenshot-wrapper .layer-back-1 {
	background: url('kiosk.png');
	background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
	aspect-ratio: 450 / 950;
	max-height: 285px;
	width: unset;
	position: relative;
	display: inline-block;
}

.branding .kiosk-screenshot-wrapper img,
.branding .kiosk-screenshot-wrapper .layer-front-1 {
	position: absolute;
    width: 87%;
    left: 6%;
    height: 74%;
    top: 6%;
}

.branding .kiosk-screenshot-wrapper.offline .layer-front-1 {
    background: rgba(0,0,0,0.65);
}

.branding .kiosk-screenshot-wrapper .layer-front-1:after {
	position: absolute;
    color: white;
    top: 0%;
    left: 0%;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    margin-top: 10px;
}

.branding .kiosk-screenshot-wrapper.offline .layer-front-1:after {
	content: "offline";
}

.branding .kiosk-screenshot-wrapper.error .layer-front-1 {
    background: rgba(255,0,0,0.65);
}

.branding .kiosk-screenshot-wrapper.error .layer-front-1:after {
	content: "error";
}

.branding .kiosk-screenshot-wrapper.unknown .layer-front-1 {
    background: rgba(0,0,128,0.65);
}
