/*------------------------------------*\
    ALERT
\*------------------------------------*/
.popupAlert {
  width:100%;
  max-width:600px;
  border-radius: 20px;
}

.noticeBody {
  width:100%;
  padding:0 2.5%;
}
.popupAlert .popupImg {
  padding:10px 5px;
  margin-left:auto;
  margin-right:auto;
}
.popupAlert .popupImg img {
    width: 100%;
    height: 250px;
    object-fit: cover;    
}
.popupAlert .noticeText {
  padding:10px 5px;  
  width:100%;
  float:none;
}
.popupAlert .noticeText h2 {
  font-size: 4rem;
}  
.popupAlert .noticeText *{
  max-width:100%;
}
.popupAlert .noticeText .popTitle{
    margin: 0px 0 20px;
    font-size: 3rem;
	text-align: center;
}

@media (max-width:767px){
.popupAlert {
    padding: 30px 10px 20px;
}
.popupAlert .noticeText {
    margin: auto;
}
}