body {
	font-family: calibri, arial;
}
.outer-scontainer {
	background: #F0F0F0;
	border: #e0dfdf 1px solid;
	padding: 20px;
	border-radius: 2px;
}

.input-row {
	margin-top: 0px;
	margin-bottom: 20px;
}

.btn-submit {
	background: #555;
	border: #1d1d1d 1px solid;
	color: #f0f0f0;
	font-size: 0.9em;
	width: 100px;
	border-radius: 2px;
	cursor: pointer;
}

.outer-scontainer table {
	border-collapse: collapse;
	width: 100%;
	border: none;
}

.outer-scontainer td {
	border: 1px solid #dddddd;
	padding: 5px;
	text-align: left;
}

#response {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 2px;
    display:none;
}

.success {
    background: #c7efd9;
    border: #bbe2cd 1px solid;
}

.error {
    background: #fbcfcf;
    border: #f3c6c7 1px solid;
}

div#response.display-block {
    display: block;
}

.centro {
	text-align: center !important;
}
.zs1 {

	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	min-height: 100%;
	width: 100%;
	z-index: 100;
	background-color: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
}
.zs2 {
	width: 520px;
	background-image: linear-gradient(135deg, #ddf, #ddd);
	border-radius: 5px;
	align-items: center;
	padding-bottom: 20px;
	animation: zz 1s;
	padding-left: 20px;
	padding-right: 20px;
}
@keyframes zz{
	0%{transform: scale(0); opacity: 0}
	100%{transform: scale(1); opacity: 1}

}
.info{
	display: grid;
	grid-template-columns: auto minmax(0px, 0px);
	align-items: center;
}
.info p {
	text-align: center;
	font-size: 1.5em;
	margin: 20px 10px 10px 10px;
}
.info button {
    display:flex;
	height: 2em;
	width: 2em;
	border-radius: 50%;
	border: none;
	text-align: center;
	padding: 0px;
	margin: 0px;
	background-color: transparent;
}
.info button:hover{
	cursor: pointer;
}
.info button:active{
	position: relative;
	top: 1px;
}

.zs3 {
	width: 100%;
}
.zin {
	display: flex;
	background-color: rgba(0, 0, 0, 0.1);
	padding: 10px;
	margin-top: 8px;
	border-radius: 8px;
	align-items: center;
}
.zin input{
	width: 100%;
	background-color: transparent;
	border: none;
	border-left: 1px solid green;
	margin-left: 5px;
	line-height: 1.5em;
	font-size: 1.5em;
	padding-left: 8px;
	color: #0489B1;
}
.zin button{
	width: 100%;
	border: none;
	font-size: 18px;
	padding: 10px;
	border-radius: 8px;
	background-color: #0489FF;
	color: white;
}
.zin button:hover{
	cursor: pointer;
}
.zin button:active{
	position: relative;
	top: 1px;
}

.info button.bp-icon.bp-icon-close {
	position:relative;
	top: -15px;
	right: 10px;
	outline: none;
}
/*****************************************************************/

.modalDialog {
  z-index: 99999;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.modalDialog:target {
  visibility: visible;
  opacity: 1;
}

.modalDialog > div {
  margin: 10% auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  position: relative;
  transition: all 5s ease-in-out;
}
th, td {vertical-align: middle}
/*
.modalDialog {
		position: fixed;
		font-family: Arial, Helvetica, sans-serif;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(0,0,0,0.8);
		z-index: 99999;
		opacity:0;
		-webkit-transition: opacity 400ms ease-in;
		-moz-transition: opacity 400ms ease-in;
		transition: opacity 400ms ease-in;
		display: none;
		pointer-events: none;
	}

	.modalDialog:target {
		opacity:1;
		pointer-events: auto;
		display: block;
	}

	.modalDialog > div {
		position: relative;
		margin: 10% auto;
		padding: 5px 20px 13px 20px;
		border-radius: 10px;
		background: #fff;
		background: -moz-linear-gradient(#fff, #999);
		background: -webkit-linear-gradient(#fff, #999);
		background: -o-linear-gradient(#fff, #999);
	}

	.close {
		background: #606061;
		color: #FFFFFF;
		line-height: 25px;
		position: absolute;
		right: -12px;
		text-align: center;
		top: -10px;
		width: 24px;
		text-decoration: none;
		font-weight: bold;
		-webkit-border-radius: 12px;
		-moz-border-radius: 12px;
		border-radius: 12px;
		-moz-box-shadow: 1px 1px 3px #000;
		-webkit-box-shadow: 1px 1px 3px #000;
		box-shadow: 1px 1px 3px #000;
	}

	.close:hover { background: #00d9ff; }
*/
        