/* Modal window */
.callback-modal {
    background-color: #181818;
    background-repeat: no-repeat;
    background-position: right bottom;
    max-width: 1300px;
    margin: auto;
    position: relative;
}
.modalForm.callback-modal{
    border-radius: 30px;
    padding:80px 88px;
    background-image: url(../images/decModalForm.png);
}
.modalForm .formBlockModal{
    width: 100%;
    max-width: 840px;
}
.callback-modal .name{
    color: #FFF;
    font-family: Lighthaus;
    font-size: 40px;
    font-weight: 400;
}
.callback-modal .txt{
    font-size: 17px;
    margin-top: 10px;
}
.modalForm form{
    margin-top: 60px;
}
.modalForm .logoDec{
    margin-top: 60px;
}
.fileInputWrap{
    position: relative;
    margin-bottom: 0;
}
.fileInputWrap input{
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.fileInputWrap span{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d38d31;
    border-radius: 7px;
    color: #fff;
    font-weight: 800;
    line-height: 40px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

/* Message */
.callback-modal-message {
    max-width: 350px;
    margin: auto;
    background: #fff;
    padding: 20px;
    position: relative;
    border-radius: 10px;
}
.callback-modal-message__process {
    background: url('../images/loading.gif') no-repeat center 15px;
    background-size: 50px;
    padding-top: 80px;
    display: block;
    text-align: center;
}
.callback-modal-message__success {
    background: url('../images/success.png') no-repeat center 15px;
    background-size: 50px;
    padding-top: 80px;
    display: block;
    text-align: center;
}
.callback-modal-message__error {
    background: url('../images/error.png') no-repeat center 15px;
    background-size: 50px;
    padding-top: 80px;
    display: block;
    text-align: center;
}

@media screen and (max-width:1199px) {
    .modalForm.callback-modal{
        border-radius: 20px;
        padding:30px 40px;
        background-image: none;
    }
    .modalForm form {
      margin-top: 30px;
  }
}

@media screen and (max-width:767px) {
    .modalForm.callback-modal{
        border-radius: 10px;
        padding:15px;
    }
    .callback-modal .name{
        font-size: 30px;
    }
    .modalForm .logoDec{
        display: none;
    }
    .modalForm form {
      margin-top: 20px;
  }
}