.wrap-callback {
    width: 90%;
    max-width: 500px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: #fff;
    color: #111;
    padding: 20px;
    box-sizing: border-box;
}
.popup-calback {
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -200;
    left: 0;
    top: 0;
}
.popup-calback .close{
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #111;
}
.popup-calback .close:hover {
    background: #fff;
    color: #111;
}
#myModalLabel {
    margin: 0;
    font-weight: 40;
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
}
body.popup-open:before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.459);
    z-index: 200;
}
.popup-calback.show {
    z-index: 9999;
    
    opacity: 1;
}
.modal-header .close {
    margin-top: -15px;
    background: #111111;
    color: #fff;
    opacity: 1;
    height: 30px;
    line-height: 30px;
    width: 30px;
}
.fa-times::before {
    content: "\f00d";
}
.modal-header .fa  {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
        font-size: 14px;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.modal-header .close {
    display: block;
    position: absolute;
    top: 14px;
    right: 16px;
    padding: 0;
}
.mf-name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 20px;
    align-items: center;
}
.mf-name input{
    border: 2px solid #ccc;
    height: 40px;
    padding: 0 15px;
    width: 250px;
    box-sizing: border-box;
    cursor: pointer;
}
.wrap-callback input[type="submit"] {
    border: none;
    padding: 0 30px;
    height: 40px;
    background: #750404;
    color: #fff;
    cursor: pointer;
}
.wrap-callback input[type="submit"]:hover {
    background: #a41313;
}
.mf-captcha {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 20px;
    align-items: center;
}
.mf-captcha input {
    border: 2px solid #ccc;
    height: 40px;
    padding: 0 15px;
    width: 250px;
    box-sizing: border-box;
    margin-left: 10px;
}
@media all and (max-width: 575px) {
    .mf-name, .mf-captcha {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .mf-captcha input {
        margin-left: 0;
    }
}