.ino-alert{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);	
	z-index: 99999;
	text-align: center;
}
.ino-alert-content{
	width: 300px;
	max-height: 300px;
	position: fixed;
	left: calc(50% - 150px);
	top: calc(50% - 150px);
	background-color: #FFF;
	overflow-x: hidden;
	overflow-y: auto;
	border-radius: 10px;
}
.ino-alert-content i.icon{
	font-size: 100px;
	width: 100%;
	margin-top: 20px;
	padding: 10px 0px;
}
.ino-alert-content p{
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	width: calc(100% - 20px);
	margin: 20px 10px;
	word-wrap: break-word;
}
.ino-alert-content img{
	width: 100%;
	height: auto;
	float: left;
}
.ino-alert-content input{
	text-align: center !important;
	border-radius: 0px;
}
.ino-alert-content input:focus{
	border-color: #CCC !important;
	border-left-color: #FFF !important;
	border-right-color: #FFF !important;
}
.ino-alert-button{
	width: 100%;
	float: left;
}
.ino-alert-button i{
	padding: 10px 0px;
	font-weight: bold;
	font-style: normal;
	background-color: #EEE;
	cursor: pointer;
	font-size: 12px;
	margin: 0px;
}
.ino-alert-button a{
	text-decoration: none;
	color: #2f3a4c;
}
.ino-alert-button i:hover{
	background-color: #DDD;
}

.ino-detail{
	bottom: 0px !important;
	border-top: 2px solid #CCC;
	height: 100%;
	width: 400px;
	max-width: 100%;
	overflow: hidden;
	background-color: #FFF;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
	animation: inoDetail 1s;
}
.ino-detail.fullSize{
	width: 100% !important;
}
.ino-detail, .ino-detail-panel{
	position: fixed;
	top: 0px;
	right: 0px;
	z-index: 9999;
}

.ino-detail-panel .i-panel-content i.fa{
	margin:  0px;
	font-family: mainFont;
	font-size: 14px;
	font-weight: bold;
	float: left;
	width: 150px;
	padding: 5px 10px;
	padding-left: 40px !important;
	cursor: pointer;
	margin-left: 0px;
	background-color: #FFF;
	color: #2f3a4c;
	text-align: left;
	position: relative !important;
	line-height: 15px;
}
.ino-detail-panel .i-panel-content i.fa:before{
	font-family: fontawesome !important;
	position: absolute;
	left: 15px;
}
.ino-detail-panel .i-panel-content i.fa:hover{
	background-color: tomato;
	color: #FFF;
}

.ino-detail .title{
	padding: 3px 0px 5px 0px;
	height: 40px;
	float: left;
	width: 100%;
	font-size: 22px;
	color: #FFF;
}
.ino-detail .title .marquee{
	line-height: 40px !important;
	height: 40px !important;
}
.ino-detail .ino-detail-content{
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 100%;
	height: calc(100% - 48px);
	overflow: hidden;
	overflow-y: auto;
}
.ino-detail iframe{
	width: 100%;
	height: 300px;
	float: left;
}
.ino-detail-panel i{
	float: left;
	padding: 5px;
	line-height: 15px;
	width: 15px;
	text-align: center;
	font-size: 12px;
	background-color: rgba(0, 0, 0, 0.2);
	position: relative;
	color: #FFF;
}
.ino-detail-panel i:hover{
	background-color: rgba(0, 0, 0, 0.8);
	color: #FFF;
}


#ino-progress, #progress_ {
  position: fixed;
  z-index: 99999999;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 20px;
  margin-top: -20px;
  margin-left: -100px;
  background-color: #fff;
  border-radius: 5px;
  padding: 2px;
}

#ino-progress-bar, #progress-bar {
  width: 0;
  height: 100%;
  background-color: tomato;
  border-radius: 5px;
}
#ino-progress:before{
	position: absolute;
	width: 100%;
  height: 20px;
  line-height: 20px;
  font-weight: bold;
  text-align: center;
	content: attr(rs-width);
	font-size: 12px;
}

@keyframes inoDetail {
  0% {
  	width: 0px;
  }
  100% {
  	width: 400px;
  }
}
@media(max-width: 400px){
	.ino-detail > .title{
		padding-left: 50px;
		width: calc(100% - 50px);
	}
	.ino-detail-panel{
		height: 50px;
	}
	.ino-detail-panel > .fa-times{
		background-color: transparent;
		line-height: 48px;
		width: 48px;
		padding: 0px;
		text-align: center;
		font-size: 18px;
		position: fixed;
		left: 0px;
		top: 2px;
	}
	.ino-detail-panel > .fa-times:before{
		content: '\f060';
	}
}
.mobile > .ino-detail > .title{
	padding-left: 50px;
	width: calc(100% - 50px);
}
.mobile > .ino-detail-panel{
	height: 50px;
}
.mobile .ino-detail-panel > .fa-times{
	background-color: transparent;
	line-height: 48px;
	width: 48px;
	padding: 0px;
	text-align: center;
	font-size: 18px;
	position: fixed;
	right: 350px;
	top: 2px;
}