/* Modal window */

.callback-modal {
    background: #fff;
    max-width: 485px;
    margin: auto;
    margin-right: 960px;
    position: relative;
    padding: 20px 15px;
    border-radius: 10px;
}

.callback-modal__headline {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.callback-modal__sendline {
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 25px;
}

.callback-modal .wrapInput {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.callback-modal input,
.callback-modal textarea {
    border-radius: 5px;
    border: 1px solid #ebebeb;
    background: #f4f4f4;
    margin-bottom: 10px;
    width: 100%;
    line-height: 55px;
    padding: 0 10px;
    font-size: 20px;
    font-weight: 400;
    color: #818181;
    outline: none;
}

.callback-modal input::placeholder,
.callback-modal textarea::placeholder {
    opacity: 1;
}

.callback-modal .callback-modal__name {
    padding-left: 40px;
    background: url(../images/nameI.png) no-repeat center left 10px, #f4f4f4;
}

.callback-modal .callback-modal__mail {
    padding-left: 40px;
    background: url(/images/mail.png) no-repeat center left 8px, #f4f4f4;
}

.callback-modal textarea {
    max-width: 100%;
    min-width: 100%;
    min-height: 120px;
    max-height: 120px;
}

.botLineMF {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.callback-modal .wrapLabel {
    margin-right: 10px;
}

.callback-modal .wrapLabel span {
    font-size: 11px;
    font-weight: 400;
    color: #4e4e4e;
    padding-left: 20px;
}

.callback-modal .wrapLabel span a {
    text-decoration: underline;
    color: var(--colorHead);
}

.callback-modal .wrapLabel span::before {
    width: 12px;
    height: 12px;
    top: 0;
    left: 0;
    border-radius: 2px;
    border: 1px solid var(--colorHead);
}

.callback-modal .wrapLabel span::after {
    width: 6px;
    height: 6px;
    top: 3px;
    left: 3px;
    border-radius: 2px;
    background: var(--colorHead);
}

.callback-modal .btnStyle {
    margin-bottom: 2px;
}

.callback-modal .btnStyle:hover {
    margin-bottom: 0;
}


/* 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;
}