.modal-window{
    width: 600px;
    height: 600px;
    background: white;
    position: fixed;
    z-index: 99;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 4px;
    display: none;
}

.modal-window .head-container .close-btn{
	background-image: url('../../admin/css/image/close.svg');
	width: 20px;
    height: 20px;
    display: inline-block;
    background-size: 13px;
    background-repeat: no-repeat;
    float: right;
    margin: 20px;
    background-position: center;
}
.modal-window .head-container .caption{
	margin: 20px;
    color: #3c3a3a;
    font-size: 20px;
    border-bottom: 1px solid #efecec;
    padding-bottom: 5px;
}
.modal-window .action-container{
	position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.modal-window .action-container .btn{
	background: #00873d;
    margin: 0 auto;
    display: inline-block;
    width: 90%;
    margin: 0 10px;
    box-sizing: border-box;
    height: 50px;
    line-height: 40px;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer !important;
}

@media (min-width: 768px) and (max-width: 991px) {
	.modal-window{
		width:95%;
	}
}

@media (max-width: 767px) {
    .modal-window{
		width:95%;
    }
    .modal-window .head-container .caption{
        width: 150px;
    }
}