html {
	transition: all 0.3s ease-in;
}

html.sdnb-opened {

}

html.sdnb-closed {
	margin-top: 0;
}

.sdnb-notification {
	width: 100%;
	line-height: 40px;
	text-align: center;
	color: #fff;
	font-size: 0.8rem;
	z-index: 999999;
	position: fixed;
	min-height:40px;
	transition: all 0.3s ease-in;
	top:0;

	-moz-box-shadow: rgba(0,0,0,0.2);
    -webkit-box-shadow: rgba(0,0,0,0.2);
    box-shadow: rgba(0,0,0,0.2);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cc0000', endColorstr='#990000',GradientType=0);
    background: #990000;
    background: -moz-linear-gradient(top, #cc0000 0%, #990000 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cc0000), color-stop(100%, #990000));
    background: -o-linear-gradient(top, #cc0000 0%, #990000 100%);
    background: -ms-linear-gradient(top, #cc0000 0%, #990000 100%);
    background: linear-gradient(to bottom, #cc0000 0%, #990000 100%);
    background: -webkit-linear-gradient(top, #cc0000 0%, #990000 100%);
}


.sdnb-wrapper {
	position: relative;
	height: 100%;
}

.sdnb-wrapper .sdnb-close-btn {
	position: absolute;
	top:0;
	right: 20px;
	opacity:1;
	transition: all 0.1s ease-in;
}

.sdnb-wrapper .sdnb-close-btn:hover {
	opacity:0.8;
}

.sdnb-wrapper .sdnb-close-btn i {
	color: #fff;
	font-size: 20px;
	
}

.sdnb-text, .sdnb-btn {
	display: inline-block;
	vertical-align: middle;
}

.sdnb-text {
	padding: 0 25px;
	line-height: 17px;
}

.sdnb-btn a {
	padding: 5px 10px;
	background-color: #fff;
	line-height:30px;
	text-transform: uppercase;
	color: #cc0000;
	border: 1px solid #cc0000;
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
}

.sdnb-btn a:hover {
	border: 1px solid #f03a1e;
	background-color:#cc0000;
	color: #fff;
}


@media screen and (max-width: 600px) {
	.sdnb-notification {
		line-height: 20px;
		font-size: 0.6rem;
	}
	.sdnb-text {
		padding: 0 22px;
	}

	.sdnb-wrapper {
		padding: 5px 0 10px 0;
	}
	.sdnb-wrapper .sdnb-close-btn {
		right: 5px;
		top:5px;
	}

	.sdnb-btn a {
	font-size: 11px;
	}
}