.alert_container{    
    background-color: black;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    z-index: 10000;
    margin: auto;
}
.alert_container.open{
	display:flex;	
}
.alert_popup{
	margin:auto;
	display: none;
    position: relative;
    flex-direction: column;
    justify-content: center;
    width: 32em;
    max-width: 100%;
    padding: 1.25em;
    border-radius: 0.3125em;
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
} 
.alert_popup.show{
	display:flex;
	/*-webkit-transform: scale(0.7);
	transform: scale(0.7);*/
	animation: alert-popup-show 0.3s;
}
.alert_popup.hide{
	display:flex;
	/*-webkit-transform: scale(0.7);
	transform: scale(0.7);*/
	animation: alert-popup-hide 0.3s;
}
.alert_header{    
	display: flex;
    flex-direction: column;
    align-items: center;
}
.alert_header .alert_title{
	display:flex;
	position: relative;
    max-width: 100%;
    margin: 0 0 0.4em;
    padding: 0;
    color: #595959;
    font-size: 1.875em;
    font-weight: 600;
    text-align: center;
    text-transform: none;
    word-wrap: break-word;
}

.alert_content{
	justify-content: center;
	flex-direction:column;
    margin: 0;
    padding: 0;
    color: #545454;
    font-size: 1.125em;
    font-weight: 300;
    line-height: normal;
    z-index: 1;
    word-wrap: break-word;
}
.alert_content input{
	height:30px;
	padding:5px 10px 5px 10px;
	margin:5px 0px 5px 0px;
}
.alert_content_text{
	text-align:center;
	flex-direction: column;
}

.alert_actions{ 
	flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 1.25em auto 0;
    z-index: 1;
}
   
.alert_actions button{
	background-color: #3085d6;
    color: #fff;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 1.125em;
    font-weight: 500;
    border-radius: .1875em;
    padding: .9em 2.1875em;
    cursor: pointer;
    white-space: nowrap;
    margin: .3125em;
    padding: .625em 2em;
    font-weight: 500;
    box-shadow: none;
}

.alert_actions button.alert_button_yes{
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color:#f8be22;
    color: #fff;
    font-size: 1.0625em;
}
.alert_actions button.alert_button_cancel{
	border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #aaa;
    color: #fff;
    font-size: 1.0625em;
}

/*ANIMATED ACTIONS*/
@-webkit-keyframes alert-popup-show {
  0% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7); }
  45% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }
  80% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } 
}

@keyframes alert-popup-show {
  0% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7); }
  45% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }
  80% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } 
}

@-webkit-keyframes alert-popup-hide {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } 
}

@keyframes alert-popup-hide {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } 
}
