

#mx_active_popup {
  background-color: rgba(0,0,0, 0.7);
  width: 100%;
  height: 100% !important;
  position:fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display:none;
}

#mx_active_popup[data-background="true"] {
display:block;
}

#mx_active_popup[data-delay="true"] {
    -webkit-animation-name: fadeIn ;
	-webkit-animation-delay:4s;
	-webkit-animation-duration: 2s;
	-webkit-animation-fill-mode: forwards;
	opacity: 0;
}

@-webkit-keyframes fadeIn {
0%  { opacity: 0; }
     100% { opacity: 1; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
      100% { opacity: 1; }
}

#mx_active_popup[data-background-color="white"] {
background-color: rgba(255,255,255, 0.7);
}

.mx_alert_show_wrap {
    position: fixed;
    top: 0px;
    width: auto;
    display: flex;
    height: auto;
    justify-content: end;
    align-items: flex-start;
	z-index:999999;
    /*background: #ffffffb8;*/
	display:none;
}

.mx_alert_content {
   height: auto;
   display: block;
   max-width: 400px;
   padding: 35px 25px 20px 25px;
   position: relative;
   background: #FFFFFF;
	    font-size: 18px;
	 z-index: 9;
}
.mx_alert_content img {width:100%;height:auto;}
.mx_alert_content h2 {
	font-size: 24px;
line-height: 38px;
}

.mx_alert_show_wrap[data-shadow="true"] .mx_alert_content{
-webkit-box-shadow: 0 1px 455px rgba(0,0,0,.95);
-moz-box-shadow: 0 1px 455px rgba(0,0,0,.95);
box-shadow: 0 1px 455px rgba(0,0,0,.95);
}

.mx_alert_content .mx_close_alert {
    position: absolute;
    width: 40px;
    top: 0;
    right: 0;
    color: #000;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 999;
	font-family:Arial, Helvetica, sans-serif;
	font-size:24px;
}

/* position alignment Left */
.mx_alert_show_wrap[data-position="left-top"] {
    top: 0;
}

.mx_alert_show_wrap[data-position="left-center"] {
	top: 50%;
   transform: translateY(-50%);
}


.mx_alert_show_wrap[data-position="left-bottom"] {
    top: auto;
    bottom: 0px;
}


/* position alignment right */
.mx_alert_show_wrap[data-position="right-top"] {
    right: 0px;
    left: auto;
    top: 0px;
}


.mx_alert_show_wrap[data-position="right-center"] {
	top: 50%;
    right: 0px;
    left: auto;
   transform: translateY(-50%);
}

.mx_alert_show_wrap[data-position="right-bottom"] {
    top: auto;
    bottom: 0px;
    right: 0px;
    left: auto;
}


/* position alignment Left */
.mx_alert_show_wrap[data-position="center-top"] {
    top: 0;
    left: 0;
    right: 0;
}

.mx_alert_show_wrap[data-position="center-top"] .mx_alert_content {
    transform: translateY(0);
    margin: 0px auto;
}

.mx_alert_show_wrap[data-position="center-center"] {
    top: 50%;
    left: 0;
    right: 0;
   transform: translateY(-50%);
	
}

.mx_alert_show_wrap[data-position="center-center"] .mx_alert_content {
    transform: translateY(0px);
    margin: 0px auto;
	border: solid 4px #ccc;
}

.mx_alert_show_wrap[data-position="center-bottom"] {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0px;
}

.mx_alert_show_wrap[data-position="center-bottom"] .mx_alert_content {
    transform: translateY(0);
    margin: 0px auto;
}

.mx_alert_show_wrap[data-slide="bottom"] .mx_alert_content {
	-webkit-animation: auto_delay_bottom 5s ease-in-out;
   -moz-animation: auto_delay_bottom 5s ease-in-out; 
}

.mx_alert_show_wrap[data-slide="top"] .mx_alert_content {
	-webkit-animation: auto_delay_top 5s ease-in-out;
   -moz-animation: auto_delay_top 5s ease-in-out; 
}

.mx_alert_show_wrap[data-slide="left"] .mx_alert_content {
	-webkit-animation: auto_delay_left 5s ease-in-out;
   -moz-animation: auto_delay_left 5s ease-in-out; 
}

.mx_alert_show_wrap[data-slide="right"] .mx_alert_content {
	-webkit-animation: auto_delay_right 5s ease-in-out;
   -moz-animation: auto_delay_right 5s ease-in-out; 
}


@-webkit-keyframes auto_delay_left {
  0% {
    transform: translateX(-20em);
    opacity: 0;
  }

  50% {
    transform: translateX(-60em);
    opacity: 0;
  }

}

@-webkit-keyframes auto_delay_top {
  0% {
    transform: translateY(-20em);
    opacity: 0;
  }

  50% {
    transform: translateY(-60em);
    opacity: 0;
  }

}

@-webkit-keyframes auto_delay_bottom {
  0% {
    transform: translateY(20em);
    opacity: 0;
  }

  50% {
    transform: translateY(60em);
    opacity: 0;
  }

}

@-webkit-keyframes auto_delay_right {
  0% {
    transform: translateX(20em);
    opacity: 0;
  }

  50% {
    transform: translateX(60em);
    opacity: 0;
  }

}