#modal-callback, .blocker {
    z-index: 15;
}

.callback {
    background-color: white;
    padding-bottom: 30px;
}

.callback > form {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7em;
}

.callback > form > input {
    height: 35px;
    width: 200px;
    border-radius: 3px;
    border: solid 1px rgba(94, 94, 94, 0.81);
    margin-right: 20px;
    padding-left: 10px;
}

.callback > form > button {
    height: 35px;
    border-radius: 3px;
    padding-right: 8px;
    padding-left: 8px;
    border: solid 1px #ffffff;
    background-image: linear-gradient(to top, #ee5643, #fa9168);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s all;
    cursor: pointer;
}

.callback > form > button:hover {
    background: #de4f4f;
}

.callback > form > button > span {
    color: white;
    font-weight: bold;
    text-transform: none;
    font-size: 0.8em;
    text-decoration: none;
    transition: .5s all;
}

#modal-callback > .callback > form {
    flex-wrap: wrap;
}

#modal-callback > .callback > form > button {
    width: 70%;
}

#modal-callback > .callback > form > input {
    width: 80%;
    margin-bottom: 15px;
}

@media(max-width: 600px) {
    .callback > form {
        flex-wrap: wrap;
    }

    .callback > form > input {
        margin-bottom: 10px;
        width: 90%;
        margin-right: 5%;
        margin-left: 5%;
        text-align: center;
    }

    .callback > form > button {
        width: 50%;
    }

    .callback > form > button > span {
        font-size: 1em;
    }
}