/* Common, default styles for the notification box */

.ns-box {
	position: fixed;
	line-height: 1.4;
	z-index: 1000;
	pointer-events: none;
	color: #444444;
	font-size: 90%;
}

.ns-box.ns-show {
	pointer-events: auto;
}

.ns-box-icon{
	float: left;
	width: 70px;
	height: 100%;
	font-size: 30px;
	border-right: 1px solid #ddd;
	text-align: center;
	padding: 17px;
	background-color: #fafafa;
	color: #8a8a8a;
	/*display: none;*/
}

.ns-box-inner{
	box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px 0;
	z-index: 2;
	position: relative;
}

.ns-box-inner-cont{
	float: left;
	padding: 20px 40px 20px 20px;
}

.ns-box-header{
	font-size: 16px;
}

.ns-box a {
	color: inherit;
	opacity: 0.7;
	font-weight: 700;
}

.ns-box a:hover,
.ns-box a:focus {
	opacity: 1;
}

.ns-box p {
	margin: 0;
}

.ns-box.ns-show,
.ns-box.ns-visible {
	pointer-events: auto;
}

.ns-close {
	width: 20px;
	height: 20px;
	position: absolute;
	right: 4px;
	top: 4px;
	overflow: hidden;
	z-index: 4;
	text-indent: 100%;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.ns-close::before,
.ns-close::after {
	content: '';
	position: absolute;
	width: 1px;
	height: 60%;
	top: 50%;
	left: 50%;
	background: #6e6e6e;
}

.ns-close:hover::before,
.ns-close:hover::after {
	background: #6e6e6e;
}

.ns-close::before {
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
	transform: translate(-50%,-50%) rotate(45deg);
}

.ns-close::after {
	-webkit-transform: translate(-50%,-50%) rotate(-45deg);
	transform: translate(-50%,-50%) rotate(-45deg);
}

.ns-type-notice{
}

.ns-type-success{
	border-left-color: #2ECC71 !important;
	border-left-width: 3px !important;
}

.ns-type-warning{
	border-left-color: #FCBF6D !important;
	border-left-width: 3px !important;
}

.ns-type-error{
	border-left-color: #EE333A !important;
	border-left-width: 3px !important;
}
