/* UrlExtensions - Styles for demo project */

body{
    background:#F0F0F0 none;
	font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 14px;
    color: #333;
}
.outer{
	position:absolute;
	top:0;
	display:table;
	width:100%;
	height:100%;
}
.middle{
	display:table-cell;
	vertical-align:middle;
}
.inner{
    background-color:#FFF;
	max-width:670px;
	margin-right:auto;	
	margin-left:auto;	
	padding:30px;
	border-radius: 15px;
	-webkit-box-shadow: 0px 0px 15px -5px #999; 
	box-shadow: 0px 0px 15px -5px #999;
}
h1{
    font-weight: 800;
	margin-top:0;
	line-height: 1.1;
    text-align: center;
}
h2{  
    line-height: 1.1;
    font-weight: 300;
    margin: 0.625rem 0 0;
    text-align: center;
}
hr {
	box-sizing: content-box;
    height: 0;
    overflow: visible;
    max-width: 6.25rem;
    margin: 0.5rem auto;
	border: 0;
    border-top: 0.2rem solid;
    border-radius: 0.1875rem;
	font-size: 80%;
    font-weight: 400;
}
.generateBox{
	padding-top: 20px;
}
.close{
	display: none !important;
}
label, input{
	display:block;
	width:100%;
}
label{
	font-weight:700;
	text-transform:uppercase;
	margin-bottom:7px;
}
input{
	box-sizing:border-box;
	border:1px solid #ebebeb;
	padding:10px;
	border-radius: 5px;
	font-size:14px;
	line-height: 1.3rem;
}
input.error{
	border:1px solid #c70000;
}
.form-input, .form-select, .form-radio, .form-checkbox {
    margin-bottom: 23px;
}
input[type="text" i] {
    width:100%;
}
.form-row {
    margin: 0 -20px;
}
.form-row .form-group {
    display:inline-block;
    padding: 0 20px;
}
.form-checkbox-item,
.form-radio-group {
    padding-bottom: 10px;
    padding-top: 12px;
}
.form-checkbox-item,
.form-radio-item {
    position: relative;
    margin-right: 30px;
	display: inline-block;
}
input[type=checkbox]:not(old),
input[type=radio   ]:not(old){
    width: 2em;
    opacity: 0;
}
input[type=checkbox]:not(old) + label,
input[type=radio   ]:not(old) + label{
    margin-left: -2em;
    line-height: 20px;
	text-transform: none;
    font-weight: 500;
}
input[type=checkbox]:not(old) + label > span,
input[type=radio   ]:not(old) + label > span{
	display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 5px 1px 0px;
    border: 1px solid #cccc;
    border-radius: 0.25em;
    vertical-align: bottom;
}
input[type=radio   ]:not(old) + label > span{	
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
}
input[type=checkbox]:not(old):checked + label > span:before{
content: '✓';
    display: block;
    width: 16px;
    color: #46b8da;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    text-shadow: 0 0 0.0714em #269abc;
    font-weight: bold;
}
input[type=checkbox]:not(old):checked +  label > span,
input[type=radio]:not(old):checked +  label > span {
    border-color: #329e5e;
}
input[type=radio]:not(old):checked +  label > span > span{
	display: block;
    width: 8px;
    height: 8px;
    border: 0.0625em solid #269abc;
    background: #46b8da;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    margin: 3px auto;
    transition: background .25s linear;
    -webkit-transition: background .25s linear;
}
.form-checkbox input, .form-checkbox-item label,
.form-radio input, .form-radio-item label {
    width: auto;
    display: inline-block;
	
}
.form-submit{
	text-align:right;
}
.link{
	color: #5bc0de;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}
.link:hover{
	color: #269abc;
}
.btn{
	width: auto;
	display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
	text-transform:uppercase;
	text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    line-height: 1.5;
    border-radius: .35rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-primary{
	color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}
.btn-primary:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc;
}
.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-secondary:hover {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
}