.mtr_noti {
	position: fixed;
	bottom: -1000px;
	left: 0;
	width: 100%;
	padding: .75em 3em .6em 1.5em;
	font-size: 14px;
	line-height: 1.3em;
	z-index: 999999;
	vertical-align: top;

	background-color: rgba(12, 21, 38, 0.95);
	color: #fff;

	transition: bottom .5s ease;
}

.mtr_noti.mtr-noti-display {
	bottom: 0 !important;
}

.mtr_noti .mtr_noti_close {
	position: absolute;
	top: .75em;
	right: 1.5em;
	cursor: pointer;
}

.mtr_noti.mtr_noti_success {
	background-color: rgba(30, 126, 52, 0.95);
}

.mtr_noti.mtr_noti_success .mtr_noti_icon_error {
	color: rgba(30, 126, 52, 1);
}

.mtr_noti.mtr_noti_error {
	background-color: rgba(189, 33, 48, 0.95);
}

.mtr_noti.mtr_noti_error .mtr_noti_icon_error {
	color: rgba(189, 33, 48, 1);
}

.mtr_noti.mtr_noti_info {
	background-color: rgba(17, 122, 139, 0.95);
}

.mtr_noti.mtr_noti_info .mtr_noti_icon_error {
	color: rgba(17, 122, 139, 1);
}

.mtr_noti.mtr_noti_warning {
	background-color: rgba(171, 131, 10, 0.95);
}

.mtr_noti.mtr_noti_warning .mtr_noti_icon_error {
	color: rgba(171, 131, 10, 1);
}

.mtr_noti_content {
	display: inline-block;
}

.mtr_noti_copy {
	display: inline-block;
}

.mtr_noti_copy a {
	color: #fff;
	border-bottom: 1px solid #fff;
	text-decoration: none;
	display: inline-block;
}

.mtr_noti_input_copy {
	position: fixed;
	top: -9999px;
	left: -9999px;
}

.mtr_noti_icon {
	display: inline-block;
	margin-right: .25em;
	position: relative;
}

.mtr_noti .mtr_noti_footer {
	display: inline-block;
	opacity: .75;
	margin-right: .5em;
}

.mtr_noti .mtr_noti_footer:after {
	content: "·";
	margin-left: .5em;
}

.mtr_noti .mtr_noti_footer_wrapper {
	display: block;
	margin-top: .25em;
	font-size: .8em;
	line-height: 1.35em;
}

/* Check icon */

.mtr_noti_icon_check {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transform: scale(var(--ggs,1));
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-radius: 100px
}

.mtr_noti_icon_check::after {
    content: "";
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: -2.5px;
    width: 6px;
    height: 10px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    transform-origin: bottom left;
    transform: rotate(45deg)
}

.mtr_noti_icon_error {
	display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    border-radius: 14px;
}