
@font-face {
  font-family: 'Roboto';
  src: url('./Roboto-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html,
body {
  margin: 0px;
  min-height: 100%;
  height: 100%;
  font-family: Roboto,Helvetica,Arial,sans-serif;
  color: black;
  font-weight: 400;
  font-size: 13px;
}

#root {
  height: 100%;
}

* {
  box-sizing: border-box;
}

.dx-scrollable-content{
	min-height: 100%;
	display: flex;
	flex-direction: column;	
}

.single-card {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

.login-card {
	max-width: 900px;
	background: #b7cae7;

	margin: auto 20%;
    
    padding:0px;
  
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.24);
	border-radius: 14px;
	display: flex;	 
	min-height: 500px;
}

.logo-left{
  background: url("/scanner/svg/appicon/2-big.svg") no-repeat;  
  background-size: 230%;
  background-position: left center;
  min-width: 220px;
  opacity: 0.15;
}
@media screen and (max-width: 900px) {
  .logo-left{
    display:none;
  }
}

.content_center{
  padding: 20px;
  display: block; 
  width:100%;
  /*
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  */
}


@media screen and (max-width: 700px) {
	.login-card {
	  margin: auto;
	  margin-left:10px;
	  margin-right:10px;
	}
}

@media screen and (max-height: 600px) {
	.login-card {
	  margin: auto;
	}
}


.app {
	background: none !important;
	display: flex;
	height: 100%;
	width: 100%;
}

.app::after {
	content: "";
	background: url("/scanner/svg/appicon/3-big.svg") no-repeat;
	background-color: #fef8f3;
	opacity: 0.28;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	z-index: -1;
	background-attachment: fixed;
	background-position: 200% -30%;
	background-size: 80%;
}

.section{ 
  border-bottom: 1px solid #0D62B2;
  padding: 10px;
  /*flex: 1;
  min-width:100%;*/
}
.section-no-border{ 
  padding: 10px;
  
}

.section_title{
  	margin-top: 10px;
	font-size: 16pt;
	color:rgb(13, 98, 178);
}
.section_content{
  padding-top: 10px;
}
h1{
  font-weight: normal;
  height:28px;
  font-size: 14pt;
}

a.xso-button:link, a.xso-button:visited {
  padding: 6px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  
  border-radius: 14px;
  background-color: #3d81b2;
  color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.24);
  box-shadow: 0 1px 3px rgba(0,0,0,.24);
  margin-left:6px;
}

a.xso-button:hover, a.xso-button:active {
  background-color: #326a92;
}

