/* Common, default styles for the notification box */

.ns-box {
	position: fixed;
	background: rgba(42,45,50,0.85);
	padding: 22px;
	line-height: 1.4;
	z-index: 1000;
	pointer-events: none;
	color: rgba(250,251,255,0.95);
	font-size: 90%;
	font-family: 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;
}

.ns-box.ns-show {
	pointer-events: auto;
}

.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;
	text-indent: 100%;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.ns-close:hover, 
.ns-close:focus {
	outline: none;
}

.ns-close::before,
.ns-close::after {
	content: '';
	position: absolute;
	width: 3px;
	height: 60%;
	top: 50%;
	left: 50%;
	background: #6e6e6e;
}

.ns-close:hover::before,
.ns-close:hover::after {
	background: #fff;
}

.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);
}

.info, .success, .warning, .error, .validation {
        border: 1px solid;
        margin: 10px 0px;
        padding: 15px 10px 15px 50px;
        background-repeat: no-repeat;
        background-position: 10px center;
}
.info {
        color: #00529B;
        background-color: #BDE5F8;
        background-image: url('https://i.imgur.com/ilgqWuX.png');
}
.success {
        color: #4F8A10;
        background-color: #DFF2BF;
        background-image: url('https://i.imgur.com/Q9BGTuy.png');
}
.warning {
        color: #9F6000;
        background-color: #FEEFB3;
        background-image: url('https://i.imgur.com/Z8q7ww7.png');
}
.error{
        color: #D8000C;
        background-color: #FFBABA;
        background-image: url('https://i.imgur.com/GnyDvKN.png');
}
.validation{
        color: #D63301;
        background-color: #FFCCBA;
        background-image: url('https://i.imgur.com/GnyDvKN.png');
}
#hsg_email_form label{
    width:80px;
    display: inline-block;
}
#hsg_email_form input[type=text],
#hsg_email_form input[type=email]{
    display: inline-block;
    width: 250px;
    box-sizing: border-box;
    height: 28px;
    border: 1px solid rgba(0,0,0,0.2);
}
#hsg_email_form input[type=number] {
    box-sizing: border-box;
    height: 28px;
    border: 1px solid rgba(0,0,0,0.2);
}
#hsg_email_form fieldset div {
    height: 30px;
    padding: 5px 0;
}
label.long_label {
    width: auto !important;
    max-width: 90%;
    vertical-align: top;
    line-height: 14px;
}
#hsg_email_form input[type=submit] {
    height: 30px; 
    width: 80px; 
    border: 1px solid rgba(0,0,0,0.1);
    margin-left: 80px;
}