.viewer, .viewer *
{
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.viewer
{
	position:fixed;
	top:0;
	left:0;
	bottom:0;
	right:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.8);
	z-index:99999;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.viewer .background
{
	width:80%;
	display: block;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.viewer .background .txt
{
	display: block;
	text-align: center;
	width:100%;
	height:10%;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	background-color:rgba(0,0,0,0.6);
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.viewer .background .txt #imgTxt::first-letter
{
	text-transform: uppercase;
}

.viewer .background .txt #imgTxt
{
	font-size:18px;
	font-weight: bold;
}

.viewer .background .info
{
	display: block;
	text-align: center;
	width:100%;
	height:10%;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 2;
	background-color:rgba(0,0,0,0.6);
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.viewer .background .info #imgDesc::first-letter
{
	text-transform: uppercase;
}

@media only screen and (min-width: 0px)  and (max-width: 199px) 
{
	.viewer
	{
		display: none;
	}
}

@media only screen and (min-width: 200px)  and (max-width: 399px) 
{
	.viewer .background
	{
		width:90%;
	}
}

@media only screen and (min-width: 400px)  and (max-width: 599px) 
{
	.viewer .background
	{
		width:90%;
	}
}

@media only screen and (min-width: 600px)  and (max-width: 799px) 
{
	.viewer .background
	{
		width:90%;
	}
}

@media only screen and (min-width: 800px)  and (max-width: 999px) 
{
	.viewer .background
	{
		width:90%;
	}
}