.license-agreement{
	display: none;
	position:fixed;
	left:0;
	top:0;
	width:100vw;
	height:100vh;
	background:none;
	z-index:999999;
	pointer-events:none;
}

.license-agreement .la-bg{
	display: block;
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:#222;
	opacity:0.4;
	pointer-events:all;
}
.license-agreement .la-content{
	display: block;
	position:absolute;
	left:50%;
	top:50%;
	width:90%;
	max-width:500px;
	padding: 20px;
	transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
	background:#fff;
	border-radius:2px;
	pointer-events:all;
}
.license-agreement .la-title{
	display: block;
	position:relative;
	padding: 0 0 30px 0;
	font: normal 30px Arial,Helvetica,sans-serif;
	color: rgb(0, 0, 0);
	text-align:center;
}
.license-agreement .la-info{
	display: block;
	position:relative;
	margin: 0 0 15px 0;
}
.license-agreement .la-info .textarea{
	padding: 5px 10px;
	width: 100%;
	height: 230px;
	border: 1px solid rgb(153, 153, 153);
	background: rgb(255, 255, 255);
	outline: 0;
	overflow: auto;
	-moz-appearance: none;
	box-sizing: border-box;
}
.license-agreement .la-buttons{
	display: block;
	position:relative;
	text-align:center;
}
.license-agreement .la-buttons button{
	position: relative;
    display: inline-block;
    padding: 12px 18px;
    line-height: 27px;
    border: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background: transparent;
    font: bold 12px "OpenSans",Helvetica,Arial,sans-serif;
    vertical-align: middle;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: none;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    outline: 0;
    cursor: pointer;
    opacity: 0.9;
	color: rgb(255, 255, 255);
	
}
.license-agreement button.la-btn-success{
    background: rgb(0, 102, 166);
}
.license-agreement button.la-btn-cancel{
	background: rgb(186, 186, 186);
}

.la-check + label{
	display:inline;
}