.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 99999;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 1;
}

.modal__dialog {
    left: auto;
    margin-left: auto;
    margin-right: auto;
}

.modal__content {
    position: relative;
    padding: 10px;
	padding-top: 5px;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 10px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    background-clip: padding-box;
    outline: 0;
    box-shadow: 0px 0px 39px 12px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 0px 39px 12px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 39px 12px rgba(0, 0, 0, 0.75);
}

.modal__title {
 /*   padding: 15px;
    border-bottom: 1px solid #e5e5e5;*/
    height: 16.42857143px;
}

.modal__body {
    position: relative;
    padding: 20px;
	padding-top:10px;
}

.modal__footer {
    margin-top: 15px;
    padding: 19px 20px 20px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.modal__close {
    float: right;
    font-size: 21px;
    font-weight: 700;
	width:30px;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    filter: alpha(opacity=20);
	
}

.modal__close {
    margin-top: -2px;
    padding: 0px;
}

.modal__close:hover,
.modal__close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5;
    filter: alpha(opacity=50);
}