/* диалоговые окна */
.dialog-mask {       
        background: #e9ecf2;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0.1;
        z-index: 9999;
        display: none;
}

/* главное модульное окно */
.dialog-mod-main {
        position:absolute;
        left:200px;
        top:300px;
        width: 500px;
        min-height: 250px;
        height: auto;
		color: #ffffff;
/* 

       font-size: 17px; 

*/
        background-color: #7688a1;
        border: 2px solid #a3afc0;
        -moz-border-top-right-radius:6px;
        -webkit-border-top-right-radius:6px;
        -moz-border-bottom-right-radius:6px;
        -webkit-border-bottom-right-radius:6px;
        -moz-border-top-left-radius:6px;
        -webkit-border-top-left-radius:6px;
        -moz-border-bottom-left-radius:6px;
        -webkit-border-bottom-left-radius:6px;
        -webkit-box-shadow: 7px 7px 5px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow:    7px 7px 5px 0px rgba(0, 0, 0, 0.3);
        box-shadow:         7px 7px 5px 0px rgba(0, 0, 0, 0.3);
        z-index: 19999;
        overflow: hidden;        
        display:none; 
        padding: 30px;
}


.dialog-mod-main .close {
        position:absolute;
        width: 30px;
        line-height: 30px;
        cursor: pointer;
        font-size: 30px;
        height: 30px;
        left: 100%;
        margin-left: -50px;
        top: 20px;
		padding: 0;
        -moz-opacity: 0.5;
        -khtml-opacity: 0.5;
        opacity: 0.5;
		color: #666666;
        }

.dialog-mod-main .close:hover {
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        }

.dialog-mod-main .ttl {
        width: 100%;
        display: block;
        line-height: 51px;
        font-weight: bold;
        padding-left: 10px;
        height: 50px;
		margin-bottom: 30px;

        font-weight: 500;
        font-style: normal;
        font-family: 'Roboto';
        color: #ffffff;
        font-size: 37px;
        }

.dialog-mod-main .info {
        display: block;
        padding-left: 10px;
        padding-right: 10px;
		font-size: 25px;
        width: 100%;
        }
        
.dialog-mod-main .info input[type="text"], .dialog-mod-main .info textarea {
        width: calc(100% - 40px);
/*
        background: transparent;
*/
		color: #ffffff;
		font-size: 30px;
        MARGIN-BOTTOM: 15px;		
		border: 2px solid #cbe1ff;
		background: #96acca;
		-moz-border-radius: 4px;
		-webkit-border-radius: 4px;
		margin-right: 40px;
		margin-top: 10px;
		margin-bottom: 40px;
		padding-left: 10px;
		padding-right: 10px;

        border: 2px solid #cbe1ff;
		height: 90px;
		
        }

.dialog-mod-main .info textarea {
        height: 100px;;
}


.dialog-mod-main .info input[type="text"]::placeholder, .dialog-mod-main .info textarea::placeholder {
		color: #ffffff;
		font-size: 30px;
        }


.dialog-mod-main .info input[type=submit]{
        background-color: #a3afc0;
        border: 1px solid #cbe1ff;
/*
        width: 300px;
        height: 50px;
*/
    font-weight: 300;
    font-style: normal;
    font-family: 'Roboto';
    color: #ffffff;
    line-height: 60px;
    font-size: 30px;
	margin-top: 0px;
	padding-left: 20px;
	padding-right: 20px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	cursor: pointer;
}

.dialog-mod-main .info input[type="submit"]:disabled {
    color: #dcdbdb;
    border: 2px solid grey;
}


.dialog-mod-main .load-mob{
    background: url('/img/ajax-loader.gif')  no-repeat left 3px, #a3afc0;
	background-size: 10%;
	background-position: 10px center;
	background-repeat: no-repeat;
	padding-right: 20px;
	padding-left: 170px;
    width: 370px;
}


