#notification {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}
#notification .outer {
	overflow: hidden;
}

.log_under {
	transition:transform .2s linear; 
	font-size: 14px;
	padding: 10px;
	line-height: 1em;
	box-sizing: border-box;
	background-color: #333;
	opacity: 0.8;
	position: fixed;
	bottom: 0;
	width: 100%;
	color: #fff;
}
.log_under.hide {
	display: none;
}
.log_under.show {
	transform: translate3d(0px,0px,0px);
}
.log_under.move {
	transform: translate3d(0px,35px,0px);
}

.notification.blog {
	top: 0;
	background-color: rgba(0, 0, 0, 0.8);
	width: 100%;
	display: block;
	text-decoration: none;
	transition: transform .2s linear;
}
.notification.blog .inner {
	padding: 10px;
}
.notification.blog h2 {
	color: #fff;
	margin: 10px 0 0px 0;
	font-size: 14px;
	line-height: 1em;
}
.notification.blog img {
	width: 50px;
	float: left;
	margin: 0 10px 0 0;
}
.notification.blog p {
	font-size: 12px;
	line-height: 1em;
	margin: 6px 0 0 60px;
	color: #f60;
}
.notification.blog hr {
	height: 3px;
    background: linear-gradient(-135deg, #E4A972, #9941D8);
    display: block;
    transform: translate3d(0%,0px,0px);
	transition: transform 5s linear;
	border: none;
}
.notification.blog.hide {
	display: none;
}
.notification.blog.show {
	transform: translate3d(0%,0px,0px);
}
.notification.blog.move {
	transform: translate3d(0%,-100px,0px);
}
.notification.blog.show hr {
	transform: translate3d(100%,0px,0px);
}


.notification.response {
	top: 0;
	background-color: rgba(0, 128, 255, 0.8);
	width: 100%;
	display: block;
	text-decoration: none;
	transition: transform .2s linear;
	position: relative;
}
.notification.response p {
	color: #fff;
	font-size: 14px;
	line-height: 1em;
}
.notification.response button {
	color: #fff;
	font-size: 14px;
	line-height: 1em;
	margin: 0;
	padding: 10px;
	border: none;
	background: none;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
}
.notification.response .inner {
	padding: 10px;
}
.notification.response.hide {
	display: none;
}
.notification.response.show {
	transform: translate3d(0%,0px,0px);
}
.notification.response.move {
	transform: translate3d(0%,-100px,0px);
}

#sub_window {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
}

#sub_window.close {
	display: none;
}

#sub_window image {
    width: 100%;
    height: 100%;
    border: none;
}
#sub_window img {
	margin: 25% auto;
	max-width: 100%;
}
#sub_window a.close {
    position: fixed;
    right: 10px;
    top: 10px;
    color: #fff;
    display: block;
    width: 44px;
    text-align: center;
}
#sub_window a.close:before {
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f00d";
    font-size: 44px;
    line-height: 1em;
}
