/*
 Уведомления
 * */

#alert__msg{
	padding: 30px 40px 30px 40px;
	background: #D9D3B2;
	color: #324554;
	border: 1px solid #1b1c1a;
    font-family: inherit;
    font-size: 18px;
    	
    position: fixed;
    z-index: 999999;
    top: 120px;
    width: 450px;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
    display: none;
}

.alert__title{
	font-weight: bold;
	text-align: center;
}

.alert_message{
	line-height: 1.2;
	padding-top: 10px;
	font-size: 16px;
}

.alert__ok{
	width: 120px;
    text-transform: uppercase;
    font-weight: 700;    
    background: silver;
    border: 0;
    border-radius: 3px;
    text-align: center;    
    padding: 3px 0px 3px 0px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;    

    background-color: #830A03;
    border-radius: 15px;
    color: #D9D3B2;
    font-family: BAGregular, sans-serif;
}

#confirm_overlay{
	position:fixed;
	height:100%;
	width:100%;
	background:rgba(0,0,0, 0.8);
	z-index: 998;
}
#confirm_msg{
	padding: 30px 40px 30px 40px;
	background: #D9D3B2;
	color: #324554;
	border: 1px solid #1b1c1a;
    font-family: inherit;
    font-size: 18px;
    position: fixed;
    z-index: 999;
    top: 120px;
    width: 450px;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
    display: none;
}

.confirm_title{
	font-weight: bold;
	text-align: center;
}

.confirm_message{
	line-height: 1.2;
	padding-top: 10px;
	font-size: 16px;
}
.confirm_buttons_wrapper{
	float:right;
	margin-top: 20px;
}
.confirm_buttons_wrapper:after{
	content:' ';
	clear:both;
}
.confirm_ok{
	width: 60px;
    text-transform: uppercase;
    font-weight: 700;    
    background: silver;
    border: 0;
    text-align: center;    
    padding: 3px 0px 3px 0px;
    cursor: pointer;
    float:left;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;    
    background-color: #830A03;
    border-radius: 15px;
    color: #D9D3B2;
    font-family: BAGregular, sans-serif;
    margin-right:10px;
}
.confirm_cancel{
	width: 120px;
    text-transform: uppercase;
    font-weight: 700;    
    background: silver;
    border: 0;
    text-align: center;    
    padding: 3px 0px 3px 0px;
    cursor: pointer;
    float:right;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;    
    background-color: #830A03;
    border-radius: 15px;
    color: #D9D3B2;
    font-family: BAGregular, sans-serif;
}