/*------------------------------------*\
    ALERT
\*------------------------------------*/
.popupAlert {
  width:100%;
  max-width:780px;
  position:relative;
}
.popupAlert:before {
	content: '';
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: top;
    background: #00223b;
	opacity:0.05;
    -webkit-mask-image: url(../images/flur.svg);
    mask-image: url(../images/flur.svg);
    pointer-events: none;
	left: 0%;
    transform: translateX(-50%);
	z-index:5;
	pointer-events:none;
}
.noticeBody {
  width:100%;
  max-width:620px;
  margin:0 auto;
  padding:0rem 1rem;
}
.popupAlert .popupImg {
    padding: 0 5px 20px 5px;
    text-align: center;
}
.popupAlert .popupImg img {
    max-width: 100%;
    width: 400px;
}
.popupAlert .noticeText a {
    text-decoration: underline;
    outline: none!important;
}
.popupAlert .noticeText *{
  max-width:100%;
}
.popupAlert .noticeText .popTitle{
    margin: 0px 0 20px;
}
.popupAlert.fancybox__content>.f-button.is-close-btn {
	top:10px;
	right:10px;
	--fancybox-color:#465f71;
	background:transparent;
}
.is-compact .popupAlert.fancybox__content>.f-button.is-close-btn {
	color:#465f71;
	background:transparent;
}
