/*!
 * jQuery Notifi Plugin v1.0
 * https://github.com/scullytr/notifi
 *
 * Copyright (c) 2019 Tim Scully;
 * Released under the MIT License (MIT)
 */
.ntf-notice{
	background-color: #1598d5;
	box-shadow: 0 0 5px #949394;
	-webkit-box-shadow: 0 0 5px #949394;
    -moz-box-shadow: 0 0 5px #949394;
	color: #ffffff;
	display: none;
	/*margin: 0 20px;*/
	padding: 10px;
	position: relative;
	font-size: 16px;
	padding-right: 35px;
	max-height: 250px;
	overflow: auto;
}

.ntf-notice .slider_container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 150px;
    /*padding-top: 10px;*/
    margin: 0 auto;
}

.ntf-notice:not(:first-child){
	border-top: 1px dashed #000;
}
.ntf-notice:last-child{
	border-radius: 0 0 5px 5px;
}
	.ntf-notice a, .ntf-notice a:visited{
		color: #ffffff;
	}
	.ntf-notice-close{
		bottom: 0px;
		cursor: pointer;
		display: inline;
		font-size: 15px;
		font-weight: bold;
		padding: 10px 20px;
		position: absolute;
		right: 0px;
		top: 0px;
	}
.ntf-warning{
	background-color: #d6874a;
	color: #fff;
}
	.ntf-warning a{
		color: #fff;
	}
#ntf-notifications{
	background:transparent;
	position:fixed;
	text-align:justify;
	z-index:1100;
}
/* TMP [move to SCSS] */
.btn-group.doc-panel {
    display: inline-flex;
	flex-direction: row;
}
li.avoid:hover a {
	cursor: default;
	background: #fff;
	color: black;
}
.ntf-notice p {
	margin: 0;
}
.ntf-notice p:not(.avoid) {
	text-align: justify;
	text-indent: 30px;
}
.ntf-notice p.avoid {
	text-align: center;
}
.ntf-notice a {
	cursor: pointer;
}