.box-modal {
	position: relative;
	width: 455px;
    box-sizing: border-box;
	padding: 16px;
	background: #fff;
    color: #4a4a4a;
	border: 4px solid #e76600;
	/*border-radius: 6px;*/
    text-align: center;
    font-family:  "Open Sans", sans-serif;
}
.box-modal .title{
    margin-top: 35px;
    font-size: 26px;
    font-weight: 700;
}
.box-modal.result .title{
    margin-top: 20px;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
}
.box-modal .smile{
    width: 56px;
    height: 56px;
    margin: 15px auto 0;
    background: url("../../images/sprites/icons-sprite.png") -542px 0;
    background-size: 650px auto;
}
.box-modal .body{
    width: 300px;
    margin: auto;
}
.box-modal .body input:first-child{
    margin-top: 25px;
}
.box-modal .body p{
    margin-top: 40px;
    font-weight: 600;
    font-size: 15px;
}
.box-modal.result .body p {
    margin-top: 30px;
}

.box-modal .body input,
.box-modal .body textarea{
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc9d1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-family:  "Open Sans", sans-serif;
    font-size: 14px;
}
.box-modal .body input{
    height: 40px;
}
.box-modal .body textarea{
    height: 180px;
    resize: none;
}
.box-modal .body input+input,
.box-modal .body input+textarea{
    margin-top: 10px;
}
.box-modal .body button{
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
}
.box-modal_close {
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 28px;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    line-height: 15px;
    color: #c8c8c8;
    cursor: pointer;
}
.box-modal_close:before{
    display: block;
    content: '×';
}

.box-modal_close:hover { color: #666; }